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

Add PHI Network Smart Chain #444

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions packages/chains/src/phi.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import { Chain } from './types'

export const phi = {
id: 144,
name: 'PHI Network v2',
network: 'PHI',
nativeCurrency: { name: 'PHI', symbol: 'PHI', decimals: 18 },
rpcUrls: {
default: {
http: ['https://connect.phi.network'],
},
public: {
http: ['https://connect.phi.network'],
},
},
blockExplorers: {
etherscan: {
name: 'Phiscan',
url: 'https://phiscan.com',
},
default: {
name: 'Phiscan',
url: 'https://phiscan.com',
},
}
} as const satisfies Chain
Loading