aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/deploy/src/utils/encoder.ts
blob: 0248e9f03e92a0ce9b6de4f98df4ec88505b0492 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import * as _ from 'lodash';
import * as Web3 from 'web3';
import * as web3Abi from 'web3-eth-abi';

import {AbiType} from './types';

export const encoder = {
    encodeConstructorArgsFromAbi(args: any[], abi: Web3.ContractAbi): string {
        const constructorTypes: string[] = [];
        _.each(abi, (element: Web3.AbiDefinition) => {
            if (element.type === AbiType.Constructor) {
                _.each(element.inputs, (input: Web3.FunctionParameter) => {
                    constructorTypes.push(input.type);
                });
            }
        });
        const encodedParameters = web3Abi.encodeParameters(constructorTypes, args);
        return encodedParameters;
    },
};