@provenanceio/wallet-utils
Version:
Typescript Utilities for Provenance Blockchain Wallet
17 lines (16 loc) • 501 B
TypeScript
import { ReadableMessageNames } from 'types';
import { MsgExecuteContract } from '../../../../proto/cosmwasm/wasm/v1/tx_pb';
/**
* Formats MsgExecuteContract messages for display
* @param message of type MsgExecuteContract
* @returns object with MsgExecuteContract fields
*/
export declare const msgExecuteContract: (message: MsgExecuteContract) => {
typeName: ReadableMessageNames;
sender: string;
msg: any;
fundsList: {
denom: string;
amount: number;
}[];
};