icns-frontend/types/icns.ts
2022-12-15 15:02:50 +09:00

10 lines
202 B
TypeScript

import { Any } from "@keplr-wallet/proto-types/google/protobuf/any";
export interface CosmwasmExecuteMessageResult {
amino: {
readonly type: string;
readonly value: any;
};
proto: Any;
}