File tree Expand file tree Collapse file tree 4 files changed +2
-4
lines changed
Expand file tree Collapse file tree 4 files changed +2
-4
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -12,5 +12,4 @@ RUN forge update
1212RUN forge build
1313RUN yarn
1414
15- ENV PRIVATE_KEY=0xaa20aa192b89a9f6e50bafff8dc5e6399e4150f45f3f14dced24b30e5152e18e
1615CMD ["/app/entrypoint.sh" ]
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ contract Deploy is Script {
1111 function setUp () public {}
1212
1313 function run () public {
14- uint256 deployerPrivateKey = vm. envUint ( " PRIVATE_KEY " ) ;
14+ uint256 deployerPrivateKey = 0xaa20aa192b89a9f6e50bafff8dc5e6399e4150f45f3f14dced24b30e5152e18e ;
1515 address deployer = vm.createWallet (deployerPrivateKey).addr;
1616 vm.startBroadcast (deployerPrivateKey);
1717
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ function getProvider() {
116116}
117117
118118function getSigner ( ) {
119- return new ethers . Wallet ( process . env [ "PRIVATE_KEY" ] as string , getProvider ( ) ) ;
119+ return new ethers . Wallet ( "0xaa20aa192b89a9f6e50bafff8dc5e6399e4150f45f3f14dced24b30e5152e18e" , getProvider ( ) ) ;
120120}
121121
122122function getContract ( contract : string ) {
You can’t perform that action at this time.
0 commit comments