Skip to content

Commit cec14e6

Browse files
committed
Fix format issue
1 parent 0d82607 commit cec14e6

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/core/chains.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import {
3030
zora,
3131
aurora,
3232
canto,
33-
flowMainnet
33+
flowMainnet,
3434

3535
// Testnets
3636
sepolia,
@@ -93,7 +93,7 @@ export const chainMap: Record<number, Chain> = {
9393
7777777: zora,
9494
1313161554: aurora,
9595
7700: canto,
96-
747: flowMainnet
96+
747: flowMainnet,
9797

9898
// Testnets
9999
11155111: sepolia,
@@ -117,7 +117,7 @@ export const chainMap: Record<number, Chain> = {
117117
44787: celoAlfajores,
118118
5: goerli,
119119
17000: holesky,
120-
545: flowTestnet
120+
545: flowTestnet,
121121
};
122122

123123
// Map network names to chain IDs for easier reference
@@ -164,7 +164,7 @@ export const networkNameMap: Record<string, number> = {
164164
'zora': 7777777,
165165
'aurora': 1313161554,
166166
'canto': 7700,
167-
'flow': 747
167+
'flow': 747,
168168

169169
// Testnets
170170
'sepolia': 11155111,
@@ -208,7 +208,7 @@ export const networkNameMap: Record<string, number> = {
208208
'alfajores': 44787,
209209
'goerli': 5,
210210
'holesky': 17000,
211-
'flow-testnet': 545
211+
'flow-testnet': 545,
212212
};
213213

214214
// Map chain IDs to RPC URLs
@@ -243,7 +243,7 @@ export const rpcUrlMap: Record<number, string> = {
243243
7777777: 'https://rpc.zora.energy',
244244
1313161554: 'https://mainnet.aurora.dev',
245245
7700: 'https://canto.gravitychain.io',
246-
747: 'https://mainnet.evm.nodes.onflow.org'
246+
747: 'https://mainnet.evm.nodes.onflow.org',
247247

248248
// Testnets
249249
11155111: 'https://sepolia.drpc.org',
@@ -267,7 +267,7 @@ export const rpcUrlMap: Record<number, string> = {
267267
44787: 'https://alfajores-forno.celo-testnet.org',
268268
5: 'https://rpc.ankr.com/eth_goerli',
269269
17000: 'https://ethereum-holesky.publicnode.com',
270-
545: 'https://testnet.evm.nodes.onflow.org'
270+
545: 'https://testnet.evm.nodes.onflow.org',
271271
};
272272

273273
/**

0 commit comments

Comments
 (0)