public {{this.tsName}} = { async sendTransactionAsync( {{> typed_params inputs=inputs}} {{#this.payable}} txData: Partial = {}, {{/this.payable}} {{^this.payable}} txData: Partial = {}, {{/this.payable}} ): Promise { const self = this as any as {{contractName}}Contract; const abiEncoder = self._lookupAbiEncoder('{{this.functionSignature}}'); const encodedData = abiEncoder.encode([{{> params inputs=inputs}}], {optimize: false}); const txDataWithDefaults = await BaseContract._applyDefaultsToTxDataAsync( { to: self.address, ...txData, data: encodedData, }, self._web3Wrapper.getContractDefaults(), self.{{this.tsName}}.estimateGasAsync.bind( self, {{> params inputs=inputs}} ), ); const txHash = await self._web3Wrapper.sendTransactionAsync(txDataWithDefaults); return txHash; }, async estimateGasAsync( {{> typed_params inputs=inputs}} txData: Partial = {}, ): Promise { const self = this as any as {{contractName}}Contract; const abiEncoder = self._lookupAbiEncoder('{{this.functionSignature}}'); const encodedData = abiEncoder.encode([{{> params inputs=inputs}}]); const txDataWithDefaults = await BaseContract._applyDefaultsToTxDataAsync( { to: self.address, ...txData, data: encodedData, }, self._web3Wrapper.getContractDefaults(), ); const gas = await self._web3Wrapper.estimateGasAsync(txDataWithDefaults); return gas; }, getABIEncodedTransactionData( {{> typed_params inputs=inputs}} ): string { const self = this as any as {{contractName}}Contract; const abiEncoder = self._lookupAbiEncoder('{{this.functionSignature}}'); const abiEncodedTransactionData = abiEncoder.encode([{{> params inputs=inputs}}]); return abiEncodedTransactionData; }, {{> callAsync}} };