Swig TS — API References
    Preparing search index...

    Type Alias SignedBatchTransactionResult

    Result of batch signing a single transaction

    type SignedBatchTransactionResult = {
        encoded?: { base58?: string; base64?: string; buffer?: Uint8Array };
        feePayer: SolPublicKey;
        instructions: SolInstruction[];
        isFullySigned: boolean;
        recentBlockhash:
            | Blockhash
            | string
            | Readonly<{ blockhash: Blockhash; lastValidBlockHeight: bigint }>;
        serialized?: Uint8Array;
    }
    Index

    Properties

    encoded?: { base58?: string; base64?: string; buffer?: Uint8Array }
    feePayer: SolPublicKey
    instructions: SolInstruction[]
    isFullySigned: boolean
    recentBlockhash:
        | Blockhash
        | string
        | Readonly<{ blockhash: Blockhash; lastValidBlockHeight: bigint }>
    serialized?: Uint8Array