@aptos-labs/ts-sdk - v3.1.1
    Preparing search index...

    Type Alias TransactionMultiEd25519Signature

    The structure for a multi-signature transaction using Ed25519.

    type TransactionMultiEd25519Signature = {
        bitmap: string;
        public_keys: string[];
        signatures: string[];
        threshold: number;
        type: "multi_ed25519_signature";
    }
    Index

    Properties

    bitmap: string
    public_keys: string[]

    The public keys for the Ed25519 signature

    signatures: string[]

    Signature associated with the public keys in the same order

    threshold: number

    The number of signatures required for a successful transaction

    type: "multi_ed25519_signature"