-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhardhat.config.js
108 lines (92 loc) · 2.43 KB
/
hardhat.config.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
require("@nomicfoundation/hardhat-toolbox");
const { task } = require("hardhat/config");
const web3 = require("web3");
const { getContract } = require("./submodules/zenode-contracts/helpers/web3");
const { contracts } = require("./zenode.config");
/** @type import('hardhat/config').HardhatUserConfig */
module.exports = {
solidity: {
version: "0.8.17",
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
defaultNetwork: "localhost",
networks: {
hardhat: { gas: 2000000000, blockGasLimit: 2000000000 },
localhost: { url: "http://127.0.0.1:8545", timeout: 100000000 },
genesisd: {
url: "https://rpcb.genesisL1.org",
gas: 2000000000,
chainId: 29,
accounts: [],
timeout: 100000000,
},
},
mocha: {
timeout: 100000000,
},
};
task("getMatrix")
.addParam("id")
.setAction(async (taskArgs, hre) => {
const { id } = taskArgs;
const contract = await getContract(
hre,
contracts.substitutionMatrices.name,
contracts.substitutionMatrices.address
);
const result = await contract.getMatrix(id);
console.log(result);
});
task("getMatrices").setAction(async (_, hre) => {
const contract = await getContract(
hre,
contracts.substitutionMatrices.name,
contracts.substitutionMatrices.address
);
const result = await contract.getMatrices();
console.log(result);
});
task("getAlphabet")
.addParam("id")
.setAction(async (taskArgs, hre) => {
const { id } = taskArgs;
const contract = await getContract(
hre,
contracts.substitutionMatrices.name,
contracts.substitutionMatrices.address
);
const result = await contract.getAlphabet(id);
console.log(result);
});
task("getAlphabets").setAction(async (_, hre) => {
const contract = await getContract(
hre,
contracts.substitutionMatrices.name,
contracts.substitutionMatrices.address
);
const result = await contract.getAlphabets();
console.log(result);
});
task("getScore")
.addParam("matrix")
.addParam("a")
.addParam("b")
.setAction(async (taskArgs, hre) => {
const { matrix, a, b } = taskArgs;
const contract = await getContract(
hre,
contracts.substitutionMatrices.name,
contracts.substitutionMatrices.address
);
const result = await contract.getScore(
matrix,
web3.utils.toHex(a),
web3.utils.toHex(b)
);
console.log(result);
});