aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/contract_templates/contract.handlebars
diff options
context:
space:
mode:
authorOlaf Tomalka <olaf@tomalka.me>2018-01-31 21:24:20 +0800
committerOlaf Tomalka <olaf@tomalka.me>2018-01-31 21:24:20 +0800
commiteaeb715e56bbb3243268ee5fd863cfd1f1211c39 (patch)
treef3a833bf8fc2cf1467bfc6c2a8bc02da87b87e2a /packages/0x.js/contract_templates/contract.handlebars
parentfa35768fc9647c475f8132c6b431102a30b4efe1 (diff)
downloaddexon-0x-contracts-eaeb715e56bbb3243268ee5fd863cfd1f1211c39.tar
dexon-0x-contracts-eaeb715e56bbb3243268ee5fd863cfd1f1211c39.tar.gz
dexon-0x-contracts-eaeb715e56bbb3243268ee5fd863cfd1f1211c39.tar.bz2
dexon-0x-contracts-eaeb715e56bbb3243268ee5fd863cfd1f1211c39.tar.lz
dexon-0x-contracts-eaeb715e56bbb3243268ee5fd863cfd1f1211c39.tar.xz
dexon-0x-contracts-eaeb715e56bbb3243268ee5fd863cfd1f1211c39.tar.zst
dexon-0x-contracts-eaeb715e56bbb3243268ee5fd863cfd1f1211c39.zip
Updated contract generation in 0x to new abi-gen CLI
Diffstat (limited to 'packages/0x.js/contract_templates/contract.handlebars')
-rw-r--r--packages/0x.js/contract_templates/contract.handlebars25
1 files changed, 25 insertions, 0 deletions
diff --git a/packages/0x.js/contract_templates/contract.handlebars b/packages/0x.js/contract_templates/contract.handlebars
new file mode 100644
index 000000000..3e501cce6
--- /dev/null
+++ b/packages/0x.js/contract_templates/contract.handlebars
@@ -0,0 +1,25 @@
+/**
+ * This file is auto-generated using abi-gen. Don't edit directly.
+ * Templates can be found at https://github.com/0xProject/0x.js/tree/development/packages/abi-gen-templates.
+ */
+// tslint:disable-next-line:no-unused-variable
+import { TxData, TxDataPayable } from '@0xproject/types';
+import { BigNumber, classUtils, promisify } from '@0xproject/utils';
+import * as Web3 from 'web3';
+
+import {BaseContract} from './base_contract';
+
+export class {{contractName}}Contract extends BaseContract {
+{{#each methods}}
+ {{#this.constant}}
+ {{> call contractName=../contractName}}
+ {{/this.constant}}
+ {{^this.constant}}
+ {{> tx contractName=../contractName}}
+ {{/this.constant}}
+{{/each}}
+ constructor(web3ContractInstance: Web3.ContractInstance, defaults: Partial<TxData>) {
+ super(web3ContractInstance, defaults);
+ classUtils.bindAll(this, ['web3ContractInstance', 'defaults']);
+ }
+} // tslint:disable:max-file-line-count