-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
custom min deposit and vanity create3 address
- Loading branch information
Filipp Makarov
authored and
Filipp Makarov
committed
Dec 11, 2024
1 parent
1b4cf38
commit 405301f
Showing
6 changed files
with
68 additions
and
27 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
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 |
---|---|---|
|
@@ -14,8 +14,6 @@ import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; | |
import { SafeTransferLib } from "solady/utils/SafeTransferLib.sol"; | ||
import { IBiconomySponsorshipPaymaster } from "../interfaces/IBiconomySponsorshipPaymaster.sol"; | ||
|
||
import {console} from "forge-std/console.sol"; | ||
|
||
/** | ||
* @title BiconomySponsorshipPaymaster | ||
* @author livingrockrises<[email protected]> | ||
|
@@ -67,19 +65,13 @@ contract BiconomySponsorshipPaymaster is | |
) | ||
BasePaymaster(owner, entryPointArg) | ||
{ | ||
console.log("0"); | ||
_checkConstructorArgs(verifyingSignerArg, feeCollectorArg, unaccountedGasArg); | ||
console.log("1"); | ||
assembly ("memory-safe") { | ||
sstore(verifyingSigner.slot, verifyingSignerArg) | ||
} | ||
console.log("2"); | ||
feeCollector = feeCollectorArg; | ||
console.log("3"); | ||
unaccountedGas = unaccountedGasArg; | ||
console.log("4"); | ||
paymasterIdWithdrawalDelay = paymasterIdWithdrawalDelayArg; | ||
console.log("5"); | ||
minDeposit = minDepositArg; | ||
} | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
scripts/bash-deploy/artifacts/BiconomySponsorshipPaymaster/BiconomySponsorshipPaymaster.json
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
scripts/bash-deploy/artifacts/BiconomySponsorshipPaymaster/verify.json
Large diffs are not rendered by default.
Oops, something went wrong.
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
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