aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/contract_templates/partials/tx.handlebars
blob: 69ae982d6d4557520d9411f43f834c2e4bfa0a96 (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
29
30
31
32
33
34
35
36
public {{this.name}} = {
    async sendTransactionAsync(
    {{> typed_params inputs=inputs}}
    {{#this.payable}}
        txData: TxDataPayable = {},
    {{/this.payable}}
    {{^this.payable}}
        txData: TxData = {},
    {{/this.payable}}
    ): Promise<string> {
        const self = this as {{contractName}}Contract;
        const txDataWithDefaults = await self._applyDefaultsToTxDataAsync(txData);
        const txHash = await self._web3ContractInstance.{{this.name}}(
            {{> params inputs=inputs}}
            txDataWithDefaults,
        );
        return txHash;
    },
    async callAsync(
    {{> typed_params inputs=inputs}}
    {{#this.payable}}
        txData: TxDataPayable = {},
    {{/this.payable}}
    {{^this.payable}}
        txData: TxData = {},
    {{/this.payable}}
    ): Promise<{{> return_type outputs=outputs}}> {
        const self = this as {{contractName}}Contract;
        const txDataWithDefaults = await self._applyDefaultsToTxDataAsync(txData);
        const returnValue = await self._web3ContractInstance.{{this.name}}.call(
            {{> params inputs=inputs}}
            txDataWithDefaults,
        );
        return returnValue;
    },
};