Skip to content

Commit

Permalink
Merge pull request #483 from oasisprotocol/aefhm-patch-1
Browse files Browse the repository at this point in the history
Fix Avalanche fuji chain ID reference
  • Loading branch information
aefhm authored Jan 15, 2025
2 parents ed1e9fc + 7835909 commit cbd0166
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/contracts/opl/Endpoint.sol
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ function _chainName2ChainId(bytes32 name) pure returns (uint256) {
if (name == "sapphire-testnet") return 0x5aff;
if (name == "polygon-mumbai") return 80001;
if (name == "avalanche") return 43114;
if (name == "avalanche-fuji") return 43313;
if (name == "avalanche-fuji") return 43113;
if (name == "arbitrum-testnet") return 0x66eeb;
return 0;
}
Expand Down

0 comments on commit cbd0166

Please sign in to comment.