aboutsummaryrefslogtreecommitdiffstats
path: root/packages/abi-gen-templates/partials/callAsync.handlebars
blob: ddbbe750875a53593b5f521f04c3d067f3779172 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
async callAsync(
{{> typed_params inputs=inputs}}
    callData: Partial<CallData> = {},
    defaultBlock?: BlockParam,
): Promise<{{> return_type outputs=outputs}}> {
    const self = this as any as {{contractName}}Contract;
    const functionSignature = '{{this.functionSignature}}';
    const inputAbi = self._lookupAbi(functionSignature).inputs;
    [{{> params inputs=inputs}}] = BaseContract._formatABIDataItemList(inputAbi, [{{> params inputs=inputs}}], BaseContract._bigNumberToString.bind(self));
    BaseContract.strictArgumentEncodingCheck(inputAbi, [{{> params inputs=inputs}}]);
    const ethersFunction = self._lookupEthersInterface(functionSignature).functions.{{this.name}};
    const encodedData = ethersFunction.encode([{{> params inputs=inputs}}]);
    const callDataWithDefaults = await BaseContract._applyDefaultsToTxDataAsync(
        {
            to: self.address,
            ...callData,
            data: encodedData,
        },
        self._web3Wrapper.getContractDefaults(),
    );
    const rawCallResult = await self._web3Wrapper.callAsync(callDataWithDefaults, defaultBlock);
    BaseContract._throwIfRevertWithReasonCallResult(rawCallResult);
    let resultArray = ethersFunction.decode(rawCallResult);
    const outputAbi = (_.find(self.abi, {name: '{{this.name}}'}) as MethodAbi).outputs;
    resultArray = BaseContract._formatABIDataItemList(outputAbi, resultArray, BaseContract._lowercaseAddress.bind(this));
    resultArray = BaseContract._formatABIDataItemList(outputAbi, resultArray, BaseContract._bnToBigNumber.bind(this));
    return resultArray{{#singleReturnValue}}[0]{{/singleReturnValue}};
},