icns-frontend/types/icns.ts

10 lines
202 B
TypeScript
Raw Permalink Normal View History

2022-12-15 06:02:50 +00:00
import { Any } from "@keplr-wallet/proto-types/google/protobuf/any";
export interface CosmwasmExecuteMessageResult {
amino: {
readonly type: string;
readonly value: any;
};
proto: Any;
}