cosmjs/types/types.d.ts
2020-01-22 09:55:20 +01:00

8 lines
209 B
TypeScript

import amino from "@tendermint/amino-js";
export declare type AminoTx = amino.Tx & {
readonly value: amino.StdTx;
};
export declare function isAminoStdTx(
txValue: amino.TxValue
): txValue is amino.StdTx;