@gnolang/tm2-js-client
Version:
Tendermint2 JS / TS Client
17 lines (16 loc) • 374 B
TypeScript
/**
* The transaction payload that is signed to generate
* a valid transaction signature
*/
export interface TxSignPayload {
chain_id: string;
account_number: string;
sequence: string;
fee: {
gas_fee: string;
gas_wanted: string;
};
msgs: any[];
memo: string;
}
export declare const Secp256k1PubKeyType = "/tm.PubKeySecp256k1";