Skip to content

Commit f3adf99

Browse files
author
ilitteri
committed
Remove pk
1 parent 699ae5f commit f3adf99

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

claim_contracts/script-config/config.example.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"deployer": "0x4e59b44847b379578588920cA78FbF26c0B4956C",
44
"foundation": "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC",
55
"claimSupplier": "0x70997970C51812dc3A010C7d01b50e0d17dc79C8",
6-
"claimSupplierPrivateKey": "0x59c6995e998f97a5a0044966f0945389dc9e86dae88c7a8412f4603b6b78690d",
76
"limitTimestampToClaim": 2733427549,
87
"claimMerkleRoot": "0x90076b5fb9a6c81d9fce83dfd51760987b8c49e7c861ea25b328e6e63d2cd3df",
98
"airdropProxy": "0x882b82f4E9014164Af87ecdAB64955cf7C252C4f",

claim_contracts/script/DeployAll.s.sol

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,7 @@ contract DeployAll is Script {
2424
address _foundation = stdJson.readAddress(config_json, ".foundation");
2525
address _safe = _foundation;
2626
address _claim = stdJson.readAddress(config_json, ".claimSupplier");
27-
uint256 _claimPrivateKey = stdJson.readUint(
28-
config_json,
29-
".claimSupplierPrivateKey"
30-
);
27+
uint256 _claimPrivateKey = vm.envUint("CLAIM_SUPPLIER_PRIVATE_KEY");
3128
uint256 _limitTimestampToClaim = stdJson.readUint(
3229
config_json,
3330
".limitTimestampToClaim"

0 commit comments

Comments
 (0)