Skip to content

Commit e8035c1

Browse files
committed
Add RPCs
1 parent 8a96620 commit e8035c1

File tree

2 files changed

+122
-1
lines changed

2 files changed

+122
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"@cosmjs/proto-signing": "0.30.1",
4141
"@cosmjs/stargate": "0.30.1",
4242
"@dotenvx/dotenvx": "^1.6.4",
43-
"@lit-protocol/accs-schemas": "^0.0.23",
43+
"@lit-protocol/accs-schemas": "^0.0.24",
4444
"@lit-protocol/contracts": "^0.0.74",
4545
"@metamask/eth-sig-util": "5.0.2",
4646
"@mysten/sui.js": "^0.37.1",

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

Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -934,6 +934,127 @@ export const LIT_CHAINS: LITChain<LITEVMChain> = {
934934
type: null,
935935
vmType: 'EVM',
936936
},
937+
rootstock: {
938+
contractAddress: null,
939+
chainId: 30,
940+
name: 'Rootstock',
941+
symbol: 'RBTC',
942+
decimals: 18,
943+
rpcUrls: ['https://public-node.rsk.co'],
944+
blockExplorerUrls: ['https://rootstock-testnet.blockscout.com/'],
945+
type: null,
946+
vmType: 'EVM',
947+
},
948+
rootstockTestnet: {
949+
contractAddress: null,
950+
chainId: 31,
951+
name: 'Rootstock Testnet',
952+
symbol: 'tRBTC',
953+
decimals: 18,
954+
rpcUrls: ['https://public-node.testnet.rsk.co'],
955+
blockExplorerUrls: ['https://explorer.testnet.rootstock.io'],
956+
type: null,
957+
vmType: 'EVM',
958+
},
959+
merlin: {
960+
contractAddress: null,
961+
chainId: 4200,
962+
name: 'Merlin',
963+
symbol: 'BTC',
964+
decimals: 18,
965+
rpcUrls: ['https://endpoints.omniatech.io/v1/merlin/mainnet/public'],
966+
blockExplorerUrls: ['https://scan.merlinchain.io/'],
967+
type: null,
968+
vmType: 'EVM',
969+
},
970+
merlinTestnet: {
971+
contractAddress: null,
972+
chainId: 686868,
973+
name: 'Merlin Testnet',
974+
symbol: 'BTC',
975+
decimals: 18,
976+
rpcUrls: ['https://testnet-rpc.merlinchain.io/'],
977+
blockExplorerUrls: ['https://testnet-scan.merlinchain.io'],
978+
type: null,
979+
vmType: 'EVM',
980+
},
981+
bsquared: {
982+
contractAddress: null,
983+
chainId: 223,
984+
name: 'BSquared',
985+
symbol: 'BTC',
986+
decimals: 18,
987+
rpcUrls: ['https://rpc.bsquared.network'],
988+
blockExplorerUrls: ['https://explorer.bsquared.network'],
989+
type: null,
990+
vmType: 'EVM',
991+
},
992+
bsquaredTestnet: {
993+
contractAddress: null,
994+
chainId: 1123,
995+
name: 'BSquared Testnet',
996+
symbol: 'tBTC',
997+
decimals: 18,
998+
rpcUrls: ['https://testnet-rpc.bsquared.network'],
999+
blockExplorerUrls: ['https://testnet-explorer.bsquared.network'],
1000+
type: null,
1001+
vmType: 'EVM',
1002+
},
1003+
monadTestnet: {
1004+
contractAddress: null,
1005+
chainId: 10143,
1006+
name: 'Monad Testnet',
1007+
symbol: 'MON',
1008+
decimals: 18,
1009+
rpcUrls: ['https://testnet-rpc.monad.xyz'],
1010+
blockExplorerUrls: ['https://testnet.monadexplorer.com'],
1011+
type: null,
1012+
vmType: 'EVM',
1013+
},
1014+
bitlayer: {
1015+
contractAddress: null,
1016+
chainId: 200901,
1017+
name: 'Bitlayer',
1018+
symbol: 'BTC',
1019+
decimals: 18,
1020+
rpcUrls: ['https://rpc.bitlayer.org'],
1021+
blockExplorerUrls: ['https://www.btrscan.com'],
1022+
type: null,
1023+
vmType: 'EVM',
1024+
},
1025+
bitlayerTestnet: {
1026+
contractAddress: null,
1027+
chainId: 200810,
1028+
name: 'Bitlayer Testnet',
1029+
symbol: 'BTC',
1030+
decimals: 18,
1031+
rpcUrls: ['https://testnet-rpc.bitlayer.org'],
1032+
blockExplorerUrls: ['https://testnet-scan.bitlayer.org'],
1033+
type: null,
1034+
vmType: 'EVM',
1035+
},
1036+
'5ire': {
1037+
contractAddress: null,
1038+
chainId: 995,
1039+
name: '5irechain',
1040+
symbol: '5ire',
1041+
decimals: 18,
1042+
rpcUrls: ['https://rpc.5ire.network'],
1043+
blockExplorerUrls: ['https://5irescan.io/dashboard'],
1044+
type: null,
1045+
vmType: 'EVM',
1046+
},
1047+
bob: {
1048+
contractAddress: null,
1049+
chainId: 60808,
1050+
name: 'Bob',
1051+
symbol: 'ETH',
1052+
decimals: 18,
1053+
rpcUrls: ['https://rpc.gobob.xyzg'],
1054+
blockExplorerUrls: ['https://explorer.gobob.xyz'],
1055+
type: null,
1056+
vmType: 'EVM',
1057+
},
9371058
};
9381059

9391060
/**

0 commit comments

Comments
 (0)