diff --git a/.changeset/slimy-flowers-judge.md b/.changeset/slimy-flowers-judge.md new file mode 100644 index 00000000..491c278c --- /dev/null +++ b/.changeset/slimy-flowers-judge.md @@ -0,0 +1,5 @@ +--- +"@wagmi/chains": patch +--- + +added nexilix chain diff --git a/packages/chains/src/index.ts b/packages/chains/src/index.ts index 98b192a8..1edfd93f 100644 --- a/packages/chains/src/index.ts +++ b/packages/chains/src/index.ts @@ -67,6 +67,7 @@ export { moonbeam } from './moonbeam' export { moonriver } from './moonriver' export { neonDevnet } from './neonDevnet' export { nexi } from './nexi' +export { nexilix } from './nexilix' export { oasys } from './oasys' export { okc } from './okc' export { optimism } from './optimism' diff --git a/packages/chains/src/nexilix.ts b/packages/chains/src/nexilix.ts new file mode 100644 index 00000000..5c978cff --- /dev/null +++ b/packages/chains/src/nexilix.ts @@ -0,0 +1,26 @@ +import { Chain } from './types' + +export const nexilix = { + id: 240, + name: 'Nexilix Smart Chain', + network: 'nexilix', + nativeCurrency: { + decimals: 18, + name: 'Nexilix', + symbol: 'NEXILIX', + }, + rpcUrls: { + default: { http: ['https://rpcurl.pos.nexilix.com'] }, + public: { http: ['https://rpcurl.pos.nexilix.com'] }, + }, + blockExplorers: { + etherscan: { name: 'NexilixScan', url: 'https://scan.nexilix.com' }, + default: { name: 'NexilixScan', url: 'https://scan.nexilix.com' }, + }, + contracts: { + multicall3: { + address: '0x58381c8e2BF9d0C2C4259cA14BdA9Afe02831244', + blockCreated: 74448, + }, + }, +} as const satisfies Chain