SignerInfo describes the public key and signing mode of a single top-level signer.

interface SignerInfoAmino {
    mode_info?: ModeInfoAmino;
    public_key?: AnyAmino;
    sequence?: string;
}

Properties

mode_info?: ModeInfoAmino

mode_info describes the signing mode of the signer and is a nested structure to support nested multisig pubkey's

public_key?: AnyAmino

public_key is the public key of the signer. It is optional for accounts that already exist in state. If unset, the verifier can use the required
signer address for this position and lookup the public key.

sequence?: string

sequence is the sequence of the account, which describes the number of committed transactions signed by a given address. It is used to prevent replay attacks.