Data used for creating a signature as per the SNIP-24 spec: https://github.com/SecretFoundation/SNIPs/blob/master/SNIP-24.md#permit-content---stdsigndoc This type is case sensitive!

interface SignDoc {
    account_number: string;
    chain_id: string;
    fee: IFee;
    memo: string;
    msgs: readonly Snip24.AminoMsg[];
    sequence: string;
}

Properties

account_number: string

Always 0.

chain_id: string
fee: IFee

Always 0 uscrt + 1 gas

memo: string

Always empty.

msgs: readonly Snip24.AminoMsg[]

Always 1 message of type query_permit

sequence: string

Always 0.

Generated using TypeDoc