Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
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;
}
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 = '';
}