-
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.
Merge pull request #1 from bcnmy/feat/paymaster-foundry-tests
Feat/paymaster foundry tests
- Loading branch information
Showing
32 changed files
with
2,386 additions
and
1,227 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,6 @@ | ||
[submodule "lib/nexus"] | ||
path = lib/nexus | ||
url = https://github.com/bcnmy/nexus | ||
[submodule "lib/forge-std"] | ||
path = lib/forge-std | ||
url = https://github.com/foundry-rs/forge-std |
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
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 |
---|---|---|
@@ -1,19 +1,17 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.24; | ||
pragma solidity ^0.8.26; | ||
|
||
interface IBiconomySponsorshipPaymaster { | ||
event PostopCostChanged(uint256 indexed _oldValue, uint256 indexed _newValue); | ||
event FixedPriceMarkupChanged(uint32 indexed _oldValue, uint32 indexed _newValue); | ||
event UnaccountedGasChanged(uint256 indexed oldValue, uint256 indexed newValue); | ||
event FixedDynamicAdjustmentChanged(uint32 indexed oldValue, uint32 indexed newValue); | ||
|
||
event VerifyingSignerChanged(address indexed _oldSigner, address indexed _newSigner, address indexed _actor); | ||
event VerifyingSignerChanged(address indexed oldSigner, address indexed newSigner, address indexed actor); | ||
|
||
event FeeCollectorChanged( | ||
address indexed _oldFeeCollector, address indexed _newFeeCollector, address indexed _actor | ||
); | ||
event GasDeposited(address indexed _paymasterId, uint256 indexed _value); | ||
event GasWithdrawn(address indexed _paymasterId, address indexed _to, uint256 indexed _value); | ||
event GasBalanceDeducted(address indexed _paymasterId, uint256 indexed _charge, bytes32 indexed userOpHash); | ||
event PremiumCollected(address indexed _paymasterId, uint256 indexed _premium); | ||
event FeeCollectorChanged(address indexed oldFeeCollector, address indexed newFeeCollector, address indexed actor); | ||
event GasDeposited(address indexed paymasterId, uint256 indexed value); | ||
event GasWithdrawn(address indexed paymasterId, address indexed to, uint256 indexed value); | ||
event GasBalanceDeducted(address indexed paymasterId, uint256 indexed charge, bytes32 indexed userOpHash); | ||
event DynamicAdjustmentCollected(address indexed paymasterId, uint256 indexed dynamicAdjustment); | ||
event Received(address indexed sender, uint256 value); | ||
event TokensWithdrawn(address indexed _token, address indexed _to, uint256 indexed _amount, address actor); | ||
} | ||
event TokensWithdrawn(address indexed token, address indexed to, uint256 indexed amount, address actor); | ||
} |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
pragma solidity ^0.8.24; | ||
pragma solidity ^0.8.26; | ||
|
||
import "@biconomy-devx/erc7579-msa/test/foundry/mocks/MockValidator.sol"; | ||
import "@biconomy-devx/erc7579-msa/test/foundry/mocks/MockValidator.sol"; |
Oops, something went wrong.