Skip to content

Commit df2ce57

Browse files
committed
feat: Add new RPCs
1 parent 2af68c2 commit df2ce57

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

packages/constants/src/lib/constants/constants.ts

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1121,6 +1121,61 @@ export const LIT_CHAINS: LITChain<LITEVMChain> = {
11211121
type: null,
11221122
vmType: 'EVM',
11231123
},
1124+
sonicMainnet: {
1125+
contractAddress: null,
1126+
chainId: 146,
1127+
name: 'Sonic Mainnet',
1128+
symbol: 'S',
1129+
decimals: 18,
1130+
rpcUrls: ['https://rpc.soniclabs.com'],
1131+
blockExplorerUrls: ['https://sonicscan.org'],
1132+
type: null,
1133+
vmType: 'EVM',
1134+
},
1135+
sonicBlazeTestnet: {
1136+
contractAddress: null,
1137+
chainId: 57054,
1138+
name: 'Sonic Blaze Testnet',
1139+
symbol: 'S',
1140+
decimals: 18,
1141+
rpcUrls: ['https://rpc.blaze.soniclabs.com'],
1142+
blockExplorerUrls: ['https://testnet.sonicscan.org/'],
1143+
type: null,
1144+
vmType: 'EVM',
1145+
},
1146+
holeskyTestnet: {
1147+
contractAddress: null,
1148+
chainId: 17000,
1149+
name: 'Holesky Testnet',
1150+
symbol: 'ETH',
1151+
decimals: 18,
1152+
rpcUrls: ['https://rpc.holesky.ethpandaops.io'],
1153+
blockExplorerUrls: ['https://holesky.etherscan.io/'],
1154+
type: null,
1155+
vmType: 'EVM',
1156+
},
1157+
flowEvmMainnet: {
1158+
contractAddress: null,
1159+
chainId: 747,
1160+
name: 'Flow EVM Mainnet',
1161+
symbol: 'FLOW',
1162+
decimals: 18,
1163+
rpcUrls: ['https://mainnet.evm.nodes.onflow.org'],
1164+
blockExplorerUrls: ['https://evm.flowscan.io/'],
1165+
type: null,
1166+
vmType: 'EVM',
1167+
},
1168+
flowEvmTestnet: {
1169+
contractAddress: null,
1170+
chainId: 545,
1171+
name: 'Flow EVM Testnet',
1172+
symbol: 'FLOW',
1173+
decimals: 18,
1174+
rpcUrls: ['https://testnet.evm.nodes.onflow.org'],
1175+
blockExplorerUrls: ['https://evm-testnet.flowscan.io'],
1176+
type: null,
1177+
vmType: 'EVM',
1178+
},
11241179
};
11251180

11261181
/**

0 commit comments

Comments
 (0)