Skip to content

Commit

Permalink
Fix fee-currency-directory predeploy address (#285)
Browse files Browse the repository at this point in the history
This uses the default fee-currency-directory address from op-geth.
It will fix the issue that the EVM calls into the directoy will fail
when executed on the local devnet.
  • Loading branch information
ezdac authored and jcortejoso committed Jan 10, 2025
1 parent 07670b2 commit 83d2311
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion op-e2e/celo/shared.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ ACC_ADDR=$(cast wallet address $ACC_PRIVKEY)
export ACC_ADDR
export REGISTRY_ADDR=0x000000000000000000000000000000000000ce10
export TOKEN_ADDR=0x471ece3750da237f93b8e339c536989b8978a438
export FEE_CURRENCY_DIRECTORY_ADDR=0x71FFbD48E34bdD5a87c3c683E866dc63b8B2a685
export FEE_CURRENCY_DIRECTORY_ADDR=0x9212Fb72ae65367A7c887eC4Ad9bE310BAC611BF
2 changes: 1 addition & 1 deletion packages/contracts-bedrock/src/celo/CeloPredeploys.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ library CeloPredeploys {
address internal constant SORTED_ORACLES = 0xefB84935239dAcdecF7c5bA76d8dE40b077B7b33;
address internal constant ADDRESS_SORTED_LINKED_LIST_WITH_MEDIAN = 0xED477A99035d0c1e11369F1D7A4e587893cc002B;
address internal constant FEE_CURRENCY = 0x4200000000000000000000000000000000001022;
address internal constant FEE_CURRENCY_DIRECTORY = 0x4200000000000000000000000000000000001024;
address internal constant FEE_CURRENCY_DIRECTORY = 0x9212Fb72ae65367A7c887eC4Ad9bE310BAC611BF;
address internal constant cUSD = 0x765DE816845861e75A25fCA122bb6898B8B1282a;

/// @notice Returns the name of the predeploy at the given address.
Expand Down

0 comments on commit 83d2311

Please sign in to comment.