Skip to content

Commit

Permalink
✨ Adds ham chain
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Garcia Sastre committed Jun 12, 2024
1 parent dd6cccc commit 713d13d
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/chains/definitions/ham.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import { defineChain } from '../../utils/chain/defineChain.js'

export const ham = /*#__PURE__*/ defineChain({
id: 5112,
name: 'Ham',
nativeCurrency: {
decimals: 18,
name: 'Ham',
symbol: 'ETH',
},
rpcUrls: {
default: {
http: ['https://rpc.ham.fun/'],
webSocket: ['wss://rpc.ham.fun/'],
},
},
blockExplorers: {
default: {
name: 'Ham Chain Explorer',
url: 'https://explorer.ham.fun',
apiUrl: 'https://explorer.ham.fun/api/v2',
},
},
})
1 change: 1 addition & 0 deletions src/chains/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ export { gobi } from './definitions/gobi.js'
export { goerli } from './definitions/goerli.js'
export { gnosis } from './definitions/gnosis.js'
export { gnosisChiado } from './definitions/gnosisChiado.js'
export { ham } from './definitions/ham.js'
export { hardhat } from './definitions/hardhat.js'
export { harmonyOne } from './definitions/harmonyOne.js'
export { haqqMainnet } from './definitions/haqqMainnet.js'
Expand Down

0 comments on commit 713d13d

Please sign in to comment.