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