diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-12-08 22:58:54 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-12-14 22:47:02 +0800 |
commit | 02e7354b5324b80f1e5a6a2968d05de44820498c (patch) | |
tree | 83dd425b01afa2eddcb36456da40ae721953020b /packages/abi-gen-templates/partials/call.mustache | |
parent | 0a0d3503c0cdf16c0630dabc9eefba6e7b0a42fe (diff) | |
download | dexon-sol-tools-02e7354b5324b80f1e5a6a2968d05de44820498c.tar dexon-sol-tools-02e7354b5324b80f1e5a6a2968d05de44820498c.tar.gz dexon-sol-tools-02e7354b5324b80f1e5a6a2968d05de44820498c.tar.bz2 dexon-sol-tools-02e7354b5324b80f1e5a6a2968d05de44820498c.tar.lz dexon-sol-tools-02e7354b5324b80f1e5a6a2968d05de44820498c.tar.xz dexon-sol-tools-02e7354b5324b80f1e5a6a2968d05de44820498c.tar.zst dexon-sol-tools-02e7354b5324b80f1e5a6a2968d05de44820498c.zip |
Move 0x.js temnplates to 0x.js instead of having them as a separate package
Diffstat (limited to 'packages/abi-gen-templates/partials/call.mustache')
-rw-r--r-- | packages/abi-gen-templates/partials/call.mustache | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/packages/abi-gen-templates/partials/call.mustache b/packages/abi-gen-templates/partials/call.mustache deleted file mode 100644 index ef4bda724..000000000 --- a/packages/abi-gen-templates/partials/call.mustache +++ /dev/null @@ -1,15 +0,0 @@ -public {{this.name}} = { - async callAsync( - {{> typed_params inputs=inputs}} - defaultBlock?: Web3.BlockParam, - ): Promise<{{> return_type outputs=outputs}}> { - const self = this as {{contractName}}Contract; - const result = await promisify<{{> return_type outputs=outputs}}>( - self.web3ContractInstance.{{this.name}}.call, - self.web3ContractInstance, - )( - {{> params inputs=inputs}} - ); - return result; - }, -}; |