interface ICreateStreamSolanaExt {
    computeLimit?: number | "autoSimulate" | ComputeLimitEstimate;
    computePrice?: number | ComputePriceEstimate;
    customInstructions?: { after?: InstructionGenerator };
    feePayer?: PublicKey;
    isNative?: boolean;
    metadataPubKeys?: PublicKey[];
    partner?: string;
    sender: Keypair | SignerWalletAdapter;
}

Hierarchy (View Summary)

Properties

computeLimit?: number | "autoSimulate" | ComputeLimitEstimate
computePrice?: number | ComputePriceEstimate
customInstructions?: { after?: InstructionGenerator }
feePayer?: PublicKey
isNative?: boolean
metadataPubKeys?: PublicKey[]
partner?: string
sender: Keypair | SignerWalletAdapter