chore: sync submodule state (parent ref update)
Made-with: Cursor
This commit is contained in:
@@ -50,6 +50,16 @@ contract InitializeRegistry is Script {
|
||||
address(0x200)
|
||||
);
|
||||
|
||||
// Register Etherlink (Tezos EVM L2)
|
||||
registry.registerDestination(
|
||||
42793,
|
||||
"Etherlink Mainnet",
|
||||
1,
|
||||
1800,
|
||||
10,
|
||||
address(0x200)
|
||||
);
|
||||
|
||||
// Register XRPL
|
||||
registry.registerDestination(
|
||||
0,
|
||||
@@ -60,13 +70,25 @@ contract InitializeRegistry is Script {
|
||||
address(0x200)
|
||||
);
|
||||
|
||||
// Register native ETH token
|
||||
uint256[] memory allDestinations = new uint256[](5);
|
||||
// Register Tezos L1 (non-EVM; chainId 1 in registry for non-EVM slot)
|
||||
registry.registerDestination(
|
||||
1,
|
||||
"Tezos-Mainnet",
|
||||
1,
|
||||
300,
|
||||
20,
|
||||
address(0x200)
|
||||
);
|
||||
|
||||
// Register native ETH token (Polygon, Optimism, Base, Arbitrum, Etherlink, XRPL, Tezos)
|
||||
uint256[] memory allDestinations = new uint256[](7);
|
||||
allDestinations[0] = 137;
|
||||
allDestinations[1] = 10;
|
||||
allDestinations[2] = 8453;
|
||||
allDestinations[3] = 42161;
|
||||
allDestinations[4] = 0;
|
||||
allDestinations[4] = 42793;
|
||||
allDestinations[5] = 0;
|
||||
allDestinations[6] = 1;
|
||||
|
||||
registry.registerToken(
|
||||
address(0), // Native ETH
|
||||
|
||||
Reference in New Issue
Block a user