Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Commit

Permalink
feat: add Nexilix chain (#394)
Browse files Browse the repository at this point in the history
Co-authored-by: git <[email protected]>
  • Loading branch information
plgchainteam and eae966 authored Jul 6, 2023
1 parent 4b411d2 commit a96b514
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/slimy-flowers-judge.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@wagmi/chains": patch
---

added nexilix chain
1 change: 1 addition & 0 deletions packages/chains/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
26 changes: 26 additions & 0 deletions packages/chains/src/nexilix.ts
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit a96b514

Please sign in to comment.