Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"@cosmjs/proto-signing": "0.30.1",
"@cosmjs/stargate": "0.30.1",
"@dotenvx/dotenvx": "^1.6.4",
"@lit-protocol/accs-schemas": "^0.0.23",
"@lit-protocol/accs-schemas": "^0.0.24",
"@lit-protocol/contracts": "^0.0.74",
"@metamask/eth-sig-util": "5.0.2",
"@mysten/sui.js": "^0.37.1",
Expand Down
121 changes: 121 additions & 0 deletions packages/constants/src/lib/constants/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -934,6 +934,127 @@ export const LIT_CHAINS: LITChain<LITEVMChain> = {
type: null,
vmType: 'EVM',
},
rootstock: {
contractAddress: null,
chainId: 30,
name: 'Rootstock',
symbol: 'RBTC',
decimals: 18,
rpcUrls: ['https://public-node.rsk.co'],
blockExplorerUrls: ['https://rootstock-testnet.blockscout.com/'],
type: null,
vmType: 'EVM',
},
rootstockTestnet: {
contractAddress: null,
chainId: 31,
name: 'Rootstock Testnet',
symbol: 'tRBTC',
decimals: 18,
rpcUrls: ['https://public-node.testnet.rsk.co'],
blockExplorerUrls: ['https://explorer.testnet.rootstock.io'],
type: null,
vmType: 'EVM',
},
merlin: {
contractAddress: null,
chainId: 4200,
name: 'Merlin',
symbol: 'BTC',
decimals: 18,
rpcUrls: ['https://endpoints.omniatech.io/v1/merlin/mainnet/public'],
blockExplorerUrls: ['https://scan.merlinchain.io/'],
type: null,
vmType: 'EVM',
},
merlinTestnet: {
contractAddress: null,
chainId: 686868,
name: 'Merlin Testnet',
symbol: 'BTC',
decimals: 18,
rpcUrls: ['https://testnet-rpc.merlinchain.io/'],
blockExplorerUrls: ['https://testnet-scan.merlinchain.io'],
type: null,
vmType: 'EVM',
},
bsquared: {
contractAddress: null,
chainId: 223,
name: 'BSquared',
symbol: 'BTC',
decimals: 18,
rpcUrls: ['https://rpc.bsquared.network'],
blockExplorerUrls: ['https://explorer.bsquared.network'],
type: null,
vmType: 'EVM',
},
bsquaredTestnet: {
contractAddress: null,
chainId: 1123,
name: 'BSquared Testnet',
symbol: 'tBTC',
decimals: 18,
rpcUrls: ['https://testnet-rpc.bsquared.network'],
blockExplorerUrls: ['https://testnet-explorer.bsquared.network'],
type: null,
vmType: 'EVM',
},
monadTestnet: {
contractAddress: null,
chainId: 10143,
name: 'Monad Testnet',
symbol: 'MON',
decimals: 18,
rpcUrls: ['https://testnet-rpc.monad.xyz'],
blockExplorerUrls: ['https://testnet.monadexplorer.com'],
type: null,
vmType: 'EVM',
},
bitlayer: {
contractAddress: null,
chainId: 200901,
name: 'Bitlayer',
symbol: 'BTC',
decimals: 18,
rpcUrls: ['https://rpc.bitlayer.org'],
blockExplorerUrls: ['https://www.btrscan.com'],
type: null,
vmType: 'EVM',
},
bitlayerTestnet: {
contractAddress: null,
chainId: 200810,
name: 'Bitlayer Testnet',
symbol: 'BTC',
decimals: 18,
rpcUrls: ['https://testnet-rpc.bitlayer.org'],
blockExplorerUrls: ['https://testnet-scan.bitlayer.org'],
type: null,
vmType: 'EVM',
},
'5ire': {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This network name starts with a number, but used "", so it shouldn't be an issue

contractAddress: null,
chainId: 995,
name: '5irechain',
symbol: '5ire',
decimals: 18,
rpcUrls: ['https://rpc.5ire.network'],
blockExplorerUrls: ['https://5irescan.io/dashboard'],
type: null,
vmType: 'EVM',
},
bob: {
contractAddress: null,
chainId: 60808,
name: 'Bob',
symbol: 'ETH',
decimals: 18,
rpcUrls: ['https://rpc.gobob.xyzg'],
blockExplorerUrls: ['https://explorer.gobob.xyz'],
type: null,
vmType: 'EVM',
},
};

/**
Expand Down
Loading