aboutsummaryrefslogtreecommitdiffstats
path: root/packages/abi-gen-templates/partials/tx.mustache
diff options
context:
space:
mode:
Diffstat (limited to 'packages/abi-gen-templates/partials/tx.mustache')
-rw-r--r--packages/abi-gen-templates/partials/tx.mustache51
1 files changed, 0 insertions, 51 deletions
diff --git a/packages/abi-gen-templates/partials/tx.mustache b/packages/abi-gen-templates/partials/tx.mustache
deleted file mode 100644
index 8a43e5319..000000000
--- a/packages/abi-gen-templates/partials/tx.mustache
+++ /dev/null
@@ -1,51 +0,0 @@
-public {{this.name}} = {
- async sendTransactionAsync(
- {{> typed_params inputs=inputs}}
- {{#this.payable}}
- txData: TxDataPayable = {},
- {{/this.payable}}
- {{^this.payable}}
- txData: TxData = {},
- {{/this.payable}}
- ): Promise<string> {
- const self = this as {{contractName}}Contract;
- const txDataWithDefaults = await self.applyDefaultsToTxDataAsync(
- txData,
- self.{{this.name}}.estimateGasAsync.bind(
- self,
- {{> params inputs=inputs}}
- ),
- );
- const txHash = await promisify<string>(
- self.web3ContractInstance.{{this.name}}, self.web3ContractInstance,
- )(
- {{> params inputs=inputs}}
- txDataWithDefaults,
- );
- return txHash;
- },
- async estimateGasAsync(
- {{> typed_params inputs=inputs}}
- txData: TxData = {},
- ): Promise<number> {
- const self = this as {{contractName}}Contract;
- const txDataWithDefaults = await self.applyDefaultsToTxDataAsync(
- txData,
- );
- const gas = await promisify<number>(
- self.web3ContractInstance.{{this.name}}.estimateGas, self.web3ContractInstance,
- )(
- {{> params inputs=inputs}}
- txDataWithDefaults,
- );
- return gas;
- },
- getABIEncodedTransactionData(
- {{> typed_params inputs=inputs}}
- txData: TxData = {},
- ): string {
- const self = this as {{contractName}}Contract;
- const abiEncodedTransactionData = self.web3ContractInstance.{{this.name}}.getData();
- return abiEncodedTransactionData;
- },
-};