diff --git a/.changeset/happy-humans-melt.md b/.changeset/happy-humans-melt.md new file mode 100644 index 0000000000..c10e378e00 --- /dev/null +++ b/.changeset/happy-humans-melt.md @@ -0,0 +1,5 @@ +--- +"viem": patch +--- + +Added AIOZ Network. diff --git a/src/chains/definitions/aioz.ts b/src/chains/definitions/aioz.ts new file mode 100644 index 0000000000..ae7fbcad98 --- /dev/null +++ b/src/chains/definitions/aioz.ts @@ -0,0 +1,23 @@ +import { defineChain } from '../../utils/chain/defineChain.js' + +export const aioz = /*#__PURE__*/ defineChain({ + id: 168, + name: 'AIOZ Network', + nativeCurrency: { + decimals: 18, + name: 'AIOZ', + symbol: 'AIOZ', + }, + rpcUrls: { + default: { + http: ['https://eth-dataseed.aioz.network'], + }, + }, + blockExplorers: { + default: { + name: 'AIOZ Explorer', + url: 'https://explorer.aioz.network', + }, + }, + testnet: false, +}) diff --git a/src/chains/index.ts b/src/chains/index.ts index 7291e9e10c..ea90e578a1 100644 --- a/src/chains/index.ts +++ b/src/chains/index.ts @@ -3,6 +3,7 @@ export type { Chain } from '../types/chain.js' // biome-ignore lint/performance/noBarrelFile: entrypoint module export { abstractTestnet } from './definitions/abstractTestnet.js' export { acala } from './definitions/acala.js' +export { aioz } from './definitions/aioz.js' export { alienx } from './definitions/alienX.js' export { alienxHalTestnet } from './definitions/alienXHalTestnet.js' export { ancient8 } from './definitions/ancient8.js'