Umi — API References - v1.3.0
    Preparing search index...

    Type Alias WrappedInstruction

    A wrapped instruction is an instruction with its associated signers and the number of bytes it will create on chain.

    type WrappedInstruction = {
        bytesCreatedOnChain: number;
        instruction: Instruction;
        signers: Signer[];
    }
    Index

    Properties

    bytesCreatedOnChain: number

    The number of bytes the instruction will create on chain.

    instruction: Instruction

    The wrapped instruction.

    signers: Signer[]

    The signers required for the instruction to succeed.