Skip to content

Commit

Permalink
feat: add 5ireChain mainne; tweak thunder testnet (#3042)
Browse files Browse the repository at this point in the history
Signed-off-by: Ayushi5ire <[email protected]>
  • Loading branch information
Ayushi5ire authored Nov 23, 2024
1 parent dd0ae9c commit 04da4cc
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
19 changes: 19 additions & 0 deletions src/chains/definitions/5ireChain.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { defineChain } from '../../utils/chain/defineChain.js'

export const fireChain = /*#__PURE__*/ defineChain({
id: 995,
name: '5ireChain',
nativeCurrency: { name: '5ire Token', symbol: '5IRE', decimals: 18 },
rpcUrls: {
default: {
http: ['https://rpc.5ire.network'],
},
},
blockExplorers: {
default: {
name: '5ireChain Mainnet Explorer',
url: 'https://5irescan.io/',
},
},
testnet: false,
})
6 changes: 3 additions & 3 deletions src/chains/definitions/thunderTestnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ export const thunderTestnet = /*#__PURE__*/ defineChain({
nativeCurrency: { name: '5ire Token', symbol: '5IRE', decimals: 18 },
rpcUrls: {
default: {
http: ['https://rpc-testnet.5ire.network'],
http: ['https://rpc.testnet.5ire.network'],
},
},
blockExplorers: {
default: {
name: '5ireChain Explorer',
url: 'https://explorer.5ire.network',
name: '5ireChain Thunder Explorer',
url: 'https://testnet.5irescan.io/',
},
},
testnet: true,
Expand Down
1 change: 1 addition & 0 deletions src/chains/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ export { fibo } from './definitions/fibo.js'
export { filecoin } from './definitions/filecoin.js'
export { filecoinCalibration } from './definitions/filecoinCalibration.js'
export { filecoinHyperspace } from './definitions/filecoinHyperspace.js'
export { fireChain } from './definitions/5ireChain.js'
export { flare } from './definitions/flare.js'
export { flareTestnet } from './definitions/flareTestnet.js'
/** @deprecated */
Expand Down

0 comments on commit 04da4cc

Please sign in to comment.