import { IndexedTx } from "@cosmjs/stargate"; export type Binary = string; export type Tx = IndexedTx & { timestamp?: string; }; export interface StargateMsg { stargate: { type_url: string; value: Binary; }; }