Interface iMsgExecuteContractCompat

interface iMsgExecuteContractCompat {
    contract: string;
    funds: string;
    msg: string;
    sender: string;
}

Implemented by

Properties

contract: string

The contract address to execute.

funds: string

The funds to send to the contract. Must be a valid JSON string.

msg: string

The message to pass to the contract. Must be a valid JSON string.

sender: string

The sender of the transaction.