@@ -59,6 +59,14 @@ export const NETWORK_DATA: Record<Chain, Network> = {
59
59
) ,
60
60
layer : 2
61
61
} ,
62
+ 'metall2' : {
63
+ id : 1750 ,
64
+ name : 'Metal L2' ,
65
+ provider : new ethers . providers . StaticJsonRpcProvider (
66
+ 'https://rpc.metall2.com'
67
+ ) ,
68
+ layer : 2
69
+ } ,
62
70
sepolia : {
63
71
id : 11155111 ,
64
72
name : 'Sepolia' ,
@@ -101,6 +109,14 @@ export const NETWORK_DATA: Record<Chain, Network> = {
101
109
) ,
102
110
layer : 2 ,
103
111
} ,
112
+ 'metall2-sepolia' : {
113
+ id : 1740 ,
114
+ name : 'Metal L2 Sepolia' ,
115
+ provider : new ethers . providers . StaticJsonRpcProvider (
116
+ 'https://testnet.rpc.metall2.com'
117
+ ) ,
118
+ layer : 2 ,
119
+ } ,
104
120
}
105
121
106
122
interface L2BridgeInformation {
@@ -134,6 +150,9 @@ export const L2_STANDARD_BRIDGE_INFORMATION: Record<
134
150
'redstone' : {
135
151
l2StandardBridgeAddress : '0x4200000000000000000000000000000000000010'
136
152
} ,
153
+ 'metall2' : {
154
+ l2StandardBridgeAddress : '0x4200000000000000000000000000000000000010' ,
155
+ } ,
137
156
'optimism-sepolia' : {
138
157
l2StandardBridgeAddress : '0x4200000000000000000000000000000000000010' ,
139
158
} ,
@@ -146,6 +165,9 @@ export const L2_STANDARD_BRIDGE_INFORMATION: Record<
146
165
'lisk-sepolia' : {
147
166
l2StandardBridgeAddress : '0x4200000000000000000000000000000000000010' ,
148
167
} ,
168
+ 'metall2-sepolia' : {
169
+ l2StandardBridgeAddress : '0x4200000000000000000000000000000000000010' ,
170
+ } ,
149
171
}
150
172
151
173
export const L2_TO_L1_PAIR : Partial < Record < L2Chain , L1Chain > > = {
@@ -155,10 +177,12 @@ export const L2_TO_L1_PAIR: Partial<Record<L2Chain, L1Chain>> = {
155
177
mode : 'ethereum' ,
156
178
lisk : 'ethereum' ,
157
179
redstone : 'ethereum' ,
180
+ metall2 : 'ethereum' ,
158
181
'optimism-sepolia' : 'sepolia' ,
159
182
'base-sepolia' : 'sepolia' ,
160
183
'pgn-sepolia' : 'sepolia' ,
161
184
'lisk-sepolia' : 'sepolia' ,
185
+ 'metall2-sepolia' : 'ethereum' ,
162
186
}
163
187
164
188
export const L1_STANDARD_BRIDGE_INFORMATION : Record <
@@ -190,6 +214,10 @@ export const L1_STANDARD_BRIDGE_INFORMATION: Record<
190
214
l2Chain : 'redstone' ,
191
215
l1StandardBridgeAddress : '0xc473ca7E02af24c129c2eEf51F2aDf0411c1Df69' ,
192
216
} ,
217
+ {
218
+ l2Chain : 'metall2' ,
219
+ l1StandardBridgeAddress : '0xAEb9E3dD0074A8dd19065f55235591c3Ac0c413E' ,
220
+ } ,
193
221
] ,
194
222
sepolia : [
195
223
{
@@ -208,5 +236,9 @@ export const L1_STANDARD_BRIDGE_INFORMATION: Record<
208
236
l2Chain : 'lisk-sepolia' ,
209
237
l1StandardBridgeAddress : '0x1Fb30e446eA791cd1f011675E5F3f5311b70faF5' ,
210
238
} ,
239
+ {
240
+ l2Chain : 'metall2-sepolia' ,
241
+ l1StandardBridgeAddress : '0xFA0EBa40F30338B50A08613Af2216f914Ae8a7B4' ,
242
+ } ,
211
243
] ,
212
244
}
0 commit comments