-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// SPDX-License-Identifier: APACHE-2.0 | ||
pragma solidity >=0.8.19 <0.9.0; | ||
|
||
import { Paymaster } from "src/v1/Paymaster.sol"; | ||
import { BaseScript } from "../Base.s.sol"; | ||
|
||
// 1 day -- Alchemy's recommended unstake delay | ||
uint256 constant DEFAULT_UNSTAKE_DELAY_SEC = 60 * 60 * 24; | ||
|
||
/// @title PaymasterStake | ||
/// @notice Stake some funds for the paymaster into the entrypoint | ||
contract PaymasterStake is BaseScript { | ||
function run() public payable broadcast { | ||
address paymasterAddress = vm.envAddress("PAYMASTER"); | ||
uint256 value = vm.envUint("AMOUNT"); | ||
uint32 unstakeDelaySec = uint32(vm.envOr("UNSTAKE_DELAY_SEC", DEFAULT_UNSTAKE_DELAY_SEC)); | ||
|
||
Paymaster paymaster = Paymaster(paymasterAddress); | ||
|
||
// stake some funds for the paymaster into the entrypoint | ||
paymaster.addStake{ value: value }(unstakeDelaySec); | ||
} | ||
} |