aboutsummaryrefslogtreecommitdiffstats
path: root/packages/abi-gen-templates/partials/tx.handlebars
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-11-26 21:12:13 +0800
committerGitHub <noreply@github.com>2018-11-26 21:12:13 +0800
commit7b152176948c02e7bf1c27e377530fc3c6d9245a (patch)
tree065bfc9d0b9d193f20035a1849912cc25f8cff1a /packages/abi-gen-templates/partials/tx.handlebars
parent8caded1d1d94d03aa49a2490b46eaebd8bf5ed74 (diff)
parent9ddd45e2c687280041cc0bb4cd7cb3c1a2c22767 (diff)
downloaddexon-sol-tools-7b152176948c02e7bf1c27e377530fc3c6d9245a.tar
dexon-sol-tools-7b152176948c02e7bf1c27e377530fc3c6d9245a.tar.gz
dexon-sol-tools-7b152176948c02e7bf1c27e377530fc3c6d9245a.tar.bz2
dexon-sol-tools-7b152176948c02e7bf1c27e377530fc3c6d9245a.tar.lz
dexon-sol-tools-7b152176948c02e7bf1c27e377530fc3c6d9245a.tar.xz
dexon-sol-tools-7b152176948c02e7bf1c27e377530fc3c6d9245a.tar.zst
dexon-sol-tools-7b152176948c02e7bf1c27e377530fc3c6d9245a.zip
Merge pull request #1305 from 0xProject/feature/contract-templates
[@0x/contract-templates] Make contract-templates an npm package
Diffstat (limited to 'packages/abi-gen-templates/partials/tx.handlebars')
-rw-r--r--packages/abi-gen-templates/partials/tx.handlebars60
1 files changed, 60 insertions, 0 deletions
diff --git a/packages/abi-gen-templates/partials/tx.handlebars b/packages/abi-gen-templates/partials/tx.handlebars
new file mode 100644
index 000000000..b39156583
--- /dev/null
+++ b/packages/abi-gen-templates/partials/tx.handlebars
@@ -0,0 +1,60 @@
+public {{this.tsName}} = {
+ async sendTransactionAsync(
+ {{> typed_params inputs=inputs}}
+ {{#this.payable}}
+ txData: Partial<TxDataPayable> = {},
+ {{/this.payable}}
+ {{^this.payable}}
+ txData: Partial<TxData> = {},
+ {{/this.payable}}
+ ): Promise<string> {
+ const self = this as any as {{contractName}}Contract;
+ const inputAbi = self._lookupAbi('{{this.functionSignature}}').inputs;
+ [{{> params inputs=inputs}}] = BaseContract._formatABIDataItemList(inputAbi, [{{> params inputs=inputs}}], BaseContract._bigNumberToString.bind(self));
+ BaseContract.strictArgumentEncodingCheck(inputAbi, [{{> params inputs=inputs}}]);
+ const encodedData = self._lookupEthersInterface('{{this.functionSignature}}').functions.{{this.name}}.encode([{{> params inputs=inputs}}]);
+ 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<TxData> = {},
+ ): Promise<number> {
+ const self = this as any as {{contractName}}Contract;
+ const inputAbi = self._lookupAbi('{{this.functionSignature}}').inputs;
+ [{{> params inputs=inputs}}] = BaseContract._formatABIDataItemList(inputAbi, [{{> params inputs=inputs}}], BaseContract._bigNumberToString);
+ const encodedData = self._lookupEthersInterface('{{this.functionSignature}}').functions.{{this.name}}.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 inputAbi = self._lookupAbi('{{this.functionSignature}}').inputs;
+ [{{> params inputs=inputs}}] = BaseContract._formatABIDataItemList(inputAbi, [{{> params inputs=inputs}}], BaseContract._bigNumberToString);
+ const abiEncodedTransactionData = self._lookupEthersInterface('{{this.functionSignature}}').functions.{{this.name}}.encode([{{> params inputs=inputs}}]);
+ return abiEncodedTransactionData;
+ },
+ {{> callAsync}}
+};