Interface CallArguments

interface CallArguments {
    args?: any[];
    caller: IAddress;
    chainID: IChainID;
    func: IContractFunction;
    gasLimit: IGasLimit;
    gasPrice?: IGasPrice;
    receiver?: IAddress;
    value?: ITransactionValue;
}

Properties

args?: any[]
caller: IAddress
chainID: IChainID
gasLimit: IGasLimit
gasPrice?: IGasPrice
receiver?: IAddress