@@ -58,6 +58,18 @@ export const explorerBlock = (network: Network, chainId: ChainId, block: string)
58
58
? `https://basescan.org/block/${ block } `
59
59
: chainId === chainToChainId ( 'Sei' )
60
60
? `https://www.seiscan.app/pacific-1/blocks/${ block } `
61
+ : chainId === chainToChainId ( 'Scroll' )
62
+ ? `https://scrollscan.com/block/${ block } `
63
+ : chainId === chainToChainId ( 'Mantle' )
64
+ ? `https://explorer.mantle.xyz/block/${ block } `
65
+ : chainId === chainToChainId ( 'Blast' )
66
+ ? `https://blastscan.io/block/${ block } `
67
+ : chainId === chainToChainId ( 'Xlayer' )
68
+ ? `https://www.oklink.com/xlayer/block/${ block } `
69
+ : chainId === chainToChainId ( 'Linea' )
70
+ ? `https://lineascan.build/block/${ block } `
71
+ : chainId === chainToChainId ( 'Berachain' )
72
+ ? `https://beratrail.io/block/${ block } `
61
73
: chainId === chainToChainId ( 'Wormchain' )
62
74
? `https://bigdipper.live/wormhole/blocks/${ block } `
63
75
: ''
@@ -104,6 +116,18 @@ export const explorerBlock = (network: Network, chainId: ChainId, block: string)
104
116
? `https://goerli.basescan.org/block/${ block } `
105
117
: chainId === chainToChainId ( 'Sei' )
106
118
? `https://www.seiscan.app/atlantic-2/blocks/${ block } `
119
+ : chainId === chainToChainId ( 'Scroll' )
120
+ ? `https://sepolia.scrollscan.com/block/${ block } `
121
+ : chainId === chainToChainId ( 'Mantle' )
122
+ ? `https://explorer.sepolia.mantle.xyz/block/${ block } `
123
+ : chainId === chainToChainId ( 'Blast' )
124
+ ? `https://testnet.blastscan.io/block/${ block } `
125
+ : chainId === chainToChainId ( 'Xlayer' )
126
+ ? `https://www.oklink.com/xlayer-test/block/${ block } `
127
+ : chainId === chainToChainId ( 'Linea' )
128
+ ? `https://sepolia.lineascan.build/block/${ block } `
129
+ : chainId === chainToChainId ( 'Berachain' )
130
+ ? `https://artio.beratrail.io/block/${ block } `
107
131
: // : chainId === chainToChainId('Wormscan') <-- not supported on testnet dashboard
108
132
'' ;
109
133
@@ -157,6 +181,18 @@ export const explorerTx = (network: Network, chainId: ChainId, tx: string) =>
157
181
? `https://basescan.org/tx/${ tx } `
158
182
: chainId === chainToChainId ( 'Sei' )
159
183
? `https://www.seiscan.app/pacific-1/txs/${ tx } `
184
+ : chainId === chainToChainId ( 'Scroll' )
185
+ ? `https://scrollscan.com/tx/${ tx } `
186
+ : chainId === chainToChainId ( 'Mantle' )
187
+ ? `https://explorer.mantle.xyz/tx/${ tx } `
188
+ : chainId === chainToChainId ( 'Blast' )
189
+ ? `https://blastscan.io/tx/${ tx } `
190
+ : chainId === chainToChainId ( 'Xlayer' )
191
+ ? `https://www.oklink.com/xlayer/tx/${ tx } `
192
+ : chainId === chainToChainId ( 'Linea' )
193
+ ? `https://lineascan.build/tx/${ tx } `
194
+ : chainId === chainToChainId ( 'Berachain' )
195
+ ? `https://artio.beratrail.io/tx/${ tx } `
160
196
: chainId === chainToChainId ( 'Wormchain' )
161
197
? `https://bigdipper.live/wormhole/transactions/${ tx } `
162
198
: ''
@@ -203,6 +239,18 @@ export const explorerTx = (network: Network, chainId: ChainId, tx: string) =>
203
239
? `https://goerli.basescan.org/tx/${ tx } `
204
240
: chainId === chainToChainId ( 'Sei' )
205
241
? `https://www.seiscan.app/atlantic-2/txs/${ tx } `
242
+ : chainId === chainToChainId ( 'Scroll' )
243
+ ? `https://sepolia.scrollscan.com/tx/${ tx } `
244
+ : chainId === chainToChainId ( 'Mantle' )
245
+ ? `https://explorer.sepolia.mantle.xyz/tx/${ tx } `
246
+ : chainId === chainToChainId ( 'Blast' )
247
+ ? `https://testnet.blastscan.io/tx/${ tx } `
248
+ : chainId === chainToChainId ( 'Xlayer' )
249
+ ? `https://www.oklink.com/xlayer-test/tx/${ tx } `
250
+ : chainId === chainToChainId ( 'Linea' )
251
+ ? `https://sepolia.lineascan.build/tx/${ tx } `
252
+ : chainId === chainToChainId ( 'Berachain' )
253
+ ? `https://artio.beratrail.io/tx/${ tx } `
206
254
: // chainId === chainToChainId('Wormscan') <-- not supported on testnet dashboard
207
255
'' ;
208
256
0 commit comments