aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/contract_templates/contract.handlebars
diff options
context:
space:
mode:
Diffstat (limited to 'packages/0x.js/contract_templates/contract.handlebars')
-rw-r--r--packages/0x.js/contract_templates/contract.handlebars48
1 files changed, 0 insertions, 48 deletions
diff --git a/packages/0x.js/contract_templates/contract.handlebars b/packages/0x.js/contract_templates/contract.handlebars
deleted file mode 100644
index 2954145a7..000000000
--- a/packages/0x.js/contract_templates/contract.handlebars
+++ /dev/null
@@ -1,48 +0,0 @@
-/**
- * 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/0x.js/contract_templates.
- */
-// tslint:disable:no-consecutive-blank-lines
-// tslint:disable-next-line:no-unused-variable
-import { TxData, TxDataPayable } from '@0xproject/types';
-import { BigNumber, classUtils, promisify } from '@0xproject/utils';
-import { Web3Wrapper } from '@0xproject/web3-wrapper';
-import * as ethersContracts from 'ethers-contracts';
-import * as _ from 'lodash';
-import * as Web3 from 'web3';
-
-import {BaseContract} from './base_contract';
-
-{{#if events}}
-export type {{contractName}}ContractEventArgs =
-{{#each events}}
- | {{name}}ContractEventArgs{{#if @last}};{{/if}}
-{{/each}}
-
-export enum {{contractName}}Events {
- {{#each events}}
- {{name}} = '{{name}}',
- {{/each}}
-}
-
-{{#each events}}
-{{> event}}
-
-{{/each}}
-{{/if}}
-
-// tslint:disable:no-parameter-reassignment
-export class {{contractName}}Contract extends BaseContract {
-{{#each methods}}
- {{#this.constant}}
- {{> call contractName=../contractName}}
- {{/this.constant}}
- {{^this.constant}}
- {{> tx contractName=../contractName}}
- {{/this.constant}}
-{{/each}}
- constructor(web3Wrapper: Web3Wrapper, abi: Web3.ContractAbi, address: string) {
- super(web3Wrapper, abi, address);
- classUtils.bindAll(this, ['_ethersInterface', '_address', '_abi', '_web3Wrapper']);
- }
-} // tslint:disable:max-file-line-count