cosmjs/types/types.d.ts

8 lines
209 B
TypeScript
Raw Normal View History

2020-01-22 09:41:48 +01:00
import amino from "@tendermint/amino-js";
export declare type AminoTx = amino.Tx & {
readonly value: amino.StdTx;
};
2020-01-22 09:54:23 +01:00
export declare function isAminoStdTx(
txValue: amino.TxValue
): txValue is amino.StdTx;