Change private key env name

This commit is contained in:
David E. Perez Negron R. 2024-04-29 17:23:40 -06:00
parent 7df29a2461
commit a026da5e01
2 changed files with 2 additions and 2 deletions

View File

@ -2,4 +2,4 @@
. ./.env
forge script script/DCO2s.s.sol:DCO2sScript \
--fork-url $PROVIDER_URL \
--private-key $PK0 --broadcast
--private-key $PRIVATE_KEY --broadcast

View File

@ -28,7 +28,7 @@ contract DCO2sScript is Script {
// run is the entry point
function run() public {
// startBroadcast and stopBraodcast will let us execute transactions anything between them
uint256 deployerPrivateKey = vm.envUint("PK0");
uint256 deployerPrivateKey = vm.envUint("PRIVATE_KEY");
vm.startBroadcast(deployerPrivateKey);
// here we just need to deploy a new contract
dco2sc = new DCO2s(defaultAdmin, minter, baseURI, name, symbol);