Skip to content

Commit

Permalink
test: add L2 standard bridge interop unit tests (#13)
Browse files Browse the repository at this point in the history
* test: add L2 standard bridge interop unit tests

* fix: add tests natspec

* fix: unit tests fixes

* fix: super to legacy tests failing

* fix: mock and expect mint and burn
  • Loading branch information
agusduha authored Aug 8, 2024
1 parent 64dc6d4 commit de677a2
Show file tree
Hide file tree
Showing 9 changed files with 1,125 additions and 6 deletions.
2 changes: 2 additions & 0 deletions packages/contracts-bedrock/scripts/Artifacts.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ abstract contract Artifacts {
return payable(Predeploys.L2_TO_L1_MESSAGE_PASSER);
} else if (digest == keccak256(bytes("L2StandardBridge"))) {
return payable(Predeploys.L2_STANDARD_BRIDGE);
} else if (digest == keccak256(bytes("L2StandardBridgeInterop"))) {
return payable(Predeploys.L2_STANDARD_BRIDGE);
} else if (digest == keccak256(bytes("L2ERC721Bridge"))) {
return payable(Predeploys.L2_ERC721_BRIDGE);
} else if (digest == keccak256(bytes("SequencerFeeWallet"))) {
Expand Down
Loading

0 comments on commit de677a2

Please sign in to comment.