aboutsummaryrefslogtreecommitdiffstats
path: root/packages/abi-gen-templates/partials/call.mustache
diff options
context:
space:
mode:
Diffstat (limited to 'packages/abi-gen-templates/partials/call.mustache')
-rw-r--r--packages/abi-gen-templates/partials/call.mustache15
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;
- },
-};