How to use the web3-core-method.SendTransactionMethodModel.call function in web3-core-method

To help you get started, we’ve selected a few web3-core-method examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ethereum / web3.js / packages / web3-eth-contract / src / models / ContractSendMethodModel.js View on Github external
function ContractSendMethodModel(abiItem, utils, formatters) {
    SendTransactionMethodModel.call(this, utils, formatters);
    this.contractMethodName = '';
    this.funcName = '';
    this.signature = '';
    this.requestOptions = null;
    this.parameters = null;
    this.abiItem = abiItem;
}
github ethereum / web3.js / packages / web3-eth-contract / src / models / SendMethodModel.js View on Github external
function SendMethodModel(abiItem, utils, formatters, methodEncoder, methodResponseDecoder) {
    SendTransactionMethodModel.call(this, utils, formatters);
    this.contractMethodParameters = null;
    this.abiItem = abiItem;
    this.methodEncoder = methodEncoder;
    this.methodResponseDecoder = methodResponseDecoder;
    this.signature = '';
}