• Decode an SPL Token Multisig account from raw bytes.

    Layout (355 bytes):

    • [0] u8 — m (threshold)
    • [1] u8 — n (total valid signers)
    • [2] u8 — is_initialized
    • [3..355] [Pubkey;11] — signer slots (32 bytes each, only first n are valid)

    Parameters

    • data: Uint8Array<ArrayBufferLike>

      Raw account data (must be >= 355 bytes).

    Returns DecodedMultisig

    Decoded multisig account.

    If data is too short.

    1.1.0