You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
504 B
25 lines
504 B
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const zkFairTestnet = /*#__PURE__*/ defineChain({
|
|
id: 43851,
|
|
name: 'ZKFair Testnet',
|
|
network: 'zkfair-testnet',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'USD Coin',
|
|
symbol: 'USDC',
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://testnet-rpc.zkfair.io'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'zkFair Explorer',
|
|
url: 'https://testnet-scan.zkfair.io',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|