Skip to content
Merged
Changes from all commits
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
66 changes: 66 additions & 0 deletions packages/constants/src/lib/constants/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1176,6 +1176,72 @@ export const LIT_CHAINS: LITChain<LITEVMChain> = {
type: null,
vmType: 'EVM',
},
elastosSmartChainMainnet: {
contractAddress: null,
chainId: 20,
name: 'Elastos Smart Chain Mainnet',
symbol: 'ELA',
decimals: 18,
rpcUrls: ['https://api.elastos.io/esc'],
blockExplorerUrls: ['https://esc.elastos.io'],
type: null,
vmType: 'EVM',
},
elastosSmartChainTestnet: {
contractAddress: null,
chainId: 21,
name: 'Elastos Smart Chain Testnet',
symbol: 'ELA',
decimals: 18,
rpcUrls: ['https://api-testnet.elastos.io/esc'],
blockExplorerUrls: ['https://esc-testnet.elastos.io'],
type: null,
vmType: 'EVM',
},
elastosIdentityChainMainnet: {
contractAddress: null,
chainId: 22,
name: 'Elastos Identity Chain Mainnet',
symbol: 'EID',
decimals: 18,
rpcUrls: ['https://api.elastos.io/eid'],
blockExplorerUrls: ['https://eid.elastos.io'],
type: null,
vmType: 'EVM',
},
elastosIdentityChainTestnet: {
contractAddress: null,
chainId: 23,
name: 'Elastos Identity Chain Testnet',
symbol: 'EID',
decimals: 18,
rpcUrls: ['https://api-testnet.elastos.io/eid'],
blockExplorerUrls: ['https://eid-testnet.elastos.io'],
type: null,
vmType: 'EVM',
},
taikoAlethiaMainnet: {
contractAddress: null,
chainId: 167000,
name: 'Taiko Alethia Mainnet',
symbol: 'ETH',
decimals: 18,
rpcUrls: ['https://rpc.taiko.xyz'],
blockExplorerUrls: ['https://taikoscan.io'],
type: null,
vmType: 'EVM',
},
taikoHeklaTestnet: {
contractAddress: null,
chainId: 167009,
name: 'Taiko Hekla Testnet',
symbol: 'ETH',
decimals: 18,
rpcUrls: ['https://rpc.hekla.taiko.xyz'],
blockExplorerUrls: ['https://hekla.taikoscan.io'],
type: null,
vmType: 'EVM',
},
confluxEspaceMainnet: {
contractAddress: null,
chainId: 1030,
Expand Down