forked from axelarnetwork/axelar-gmp-sdk-solidity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
57 lines (53 loc) · 1.48 KB
/
index.js
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
'use strict';
const {
estimateGasForCreate2Deploy,
estimateGasForCreate2DeployAndInit,
create2DeployContract,
create2DeployAndInitContract,
getCreate2Address,
} = require('./scripts/create2Deployer');
const {
estimateGasForCreate3Deploy,
estimateGasForCreate3DeployAndInit,
create3DeployContract,
create3DeployAndInitContract,
getCreate3Address,
} = require('./scripts/create3Deployer');
const {
estimateGasForDeploy,
estimateGasForDeployAndInit,
deployContractConstant,
deployAndInitContractConstant,
predictContractConstant,
} = require('./scripts/constAddressDeployer');
const {
deployUpgradable,
deployCreate2InitUpgradable,
deployCreate3Upgradable,
deployCreate3InitUpgradable,
upgradeUpgradable,
} = require('./scripts/upgradable');
const { printObj } = require('./scripts/utils');
module.exports = {
estimateGasForDeploy,
estimateGasForDeployAndInit,
deployContractConstant,
deployAndInitContractConstant,
predictContractConstant,
estimateGasForCreate2Deploy,
estimateGasForCreate2DeployAndInit,
create2DeployContract,
create2DeployAndInitContract,
getCreate2Address,
estimateGasForCreate3Deploy,
estimateGasForCreate3DeployAndInit,
create3DeployContract,
create3DeployAndInitContract,
getCreate3Address,
deployUpgradable,
deployCreate2InitUpgradable,
deployCreate3Upgradable,
deployCreate3InitUpgradable,
upgradeUpgradable,
printObj,
};