File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -3,14 +3,17 @@ require("dotenv").config()
3
3
async function main ( ) {
4
4
const [ deployer ] = await ethers . getSigners ( )
5
5
6
+ const MULTISIG_ADDRESS = process . env . MULTISIG_ADDRESS
7
+ const MAX_DONATION_GRACE_PERIOD = process . env . MAX_DONATION_GRACE_PERIOD
8
+
6
9
console . log ( "Deploying contracts with the account:" , deployer . address )
7
10
console . log ( "Account balance:" , ( await deployer . getBalance ( ) ) . toString ( ) )
8
11
12
+ console . log ( "Multisig address:" , MULTISIG_ADDRESS )
13
+ console . log ( "Maximum donation grace period (in blocks):" , MAX_DONATION_GRACE_PERIOD )
14
+
9
15
const DisintermediatedGrants = await ethers . getContractFactory ( "DisintermediatedGrants" )
10
- const disintermediatedGrants = await DisintermediatedGrants . deploy (
11
- process . env . MULTISIG_ADDRESS ,
12
- process . env . MAX_DONATION_GRACE_PERIOD
13
- )
16
+ const disintermediatedGrants = await DisintermediatedGrants . deploy ( MULTISIG_ADDRESS , MAX_DONATION_GRACE_PERIOD )
14
17
15
18
console . log ( "DisintermediatedGrants address:" , disintermediatedGrants . address )
16
19
}
You can’t perform that action at this time.
0 commit comments