File tree 4 files changed +2
-4
lines changed
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
12
12
RUN forge build
13
13
RUN yarn
14
14
15
- ENV PRIVATE_KEY=0xaa20aa192b89a9f6e50bafff8dc5e6399e4150f45f3f14dced24b30e5152e18e
16
15
CMD ["/app/entrypoint.sh" ]
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ contract Deploy is Script {
11
11
function setUp () public {}
12
12
13
13
function run () public {
14
- uint256 deployerPrivateKey = vm. envUint ( " PRIVATE_KEY " ) ;
14
+ uint256 deployerPrivateKey = 0xaa20aa192b89a9f6e50bafff8dc5e6399e4150f45f3f14dced24b30e5152e18e ;
15
15
address deployer = vm.createWallet (deployerPrivateKey).addr;
16
16
vm.startBroadcast (deployerPrivateKey);
17
17
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ function getProvider() {
116
116
}
117
117
118
118
function getSigner ( ) {
119
- return new ethers . Wallet ( process . env [ "PRIVATE_KEY" ] as string , getProvider ( ) ) ;
119
+ return new ethers . Wallet ( "0xaa20aa192b89a9f6e50bafff8dc5e6399e4150f45f3f14dced24b30e5152e18e" , getProvider ( ) ) ;
120
120
}
121
121
122
122
function getContract ( contract : string ) {
You can’t perform that action at this time.
0 commit comments