-
Notifications
You must be signed in to change notification settings - Fork 12
/
hardhat.config.ts
75 lines (64 loc) · 1.86 KB
/
hardhat.config.ts
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
import "@typechain/hardhat"
import "@nomicfoundation/hardhat-chai-matchers"
import "@nomicfoundation/hardhat-ethers"
import "@openzeppelin/hardhat-upgrades";
import "solidity-coverage";
import * as dotenv from "dotenv";
import {HardhatUserConfig, task} from "hardhat/config";
dotenv.config();
const getCustomUrl = (url: string | undefined) => {
if (url) {
return url;
}
return "http://127.0.0.1:8545";
};
const getCustomPrivateKey = (privateKey: string | undefined) => {
if (privateKey) {
return [privateKey];
}
return [];
};
const config: HardhatUserConfig = {
"mocha": {
"timeout": 120000
},
"networks": {
"custom": {
"accounts": getCustomPrivateKey(process.env.PRIVATE_KEY),
"url": getCustomUrl(process.env.ENDPOINT)
},
"hardhat": {
"allowUnlimitedContractSize": true
}
},
"solidity": "0.8.20"
};
export default config;
task(
"grantAccess",
"Grant admin access to Paymaster"
).
addPositionalParam("paymasterAddress").
addPositionalParam("accountAddress").
setAction(async (taskArgs, hre) => {
const paymaster = await hre.ethers.getContractAt(
"Paymaster",
taskArgs.paymasterAddress
);
console.log(await paymaster.getAddress());
console.log(await paymaster.authority());
const accessManager = await hre.ethers.getContractAt(
"AccessManager",
await paymaster.authority()
);
const zeroDelay = 0;
await accessManager.grantRole(
// Can't rename ADMIN_ROLE because
// it's imported from openzeppelin library
// eslint-disable-next-line new-cap
await accessManager.ADMIN_ROLE(),
taskArgs.accountAddress,
zeroDelay
);
console.log("Done");
});