aboutsummaryrefslogblamecommitdiffstats
path: root/packages/0x.js/contract_templates/contract.handlebars
blob: 33699b8a7973c7a2a49622e508565810bab5e9c2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
   
                                                                  
                                                                                                                   
   
                                            
                                              

                                                                    

                             

                                             

















                                                    
                                                            
                 








                                                                                         
                                                                         

                                       
/**
 * 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 * 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}}

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