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

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
jxom authored and wagmi-sh committed Aug 9, 2023
1 parent 3846811 commit e1032cb
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 35 deletions.
34 changes: 17 additions & 17 deletions packages/chains/src/qMainnet.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
import { Chain } from './types'

export const qMainnet = {
id: 35441,
name: 'Q Mainnet',
network: 'q-mainnet',
nativeCurrency: {
decimals: 18,
name: 'Q',
symbol: 'Q',
},
rpcUrls: {
default: { http: ['https://rpc.q.org'] },
public: { http: ['https://rpc.q.org'] },
},
blockExplorers: {
default: {
name: 'Q Mainnet Explorer',
url: 'https://explorer.q.org',
},
id: 35441,
name: 'Q Mainnet',
network: 'q-mainnet',
nativeCurrency: {
decimals: 18,
name: 'Q',
symbol: 'Q',
},
rpcUrls: {
default: { http: ['https://rpc.q.org'] },
public: { http: ['https://rpc.q.org'] },
},
blockExplorers: {
default: {
name: 'Q Mainnet Explorer',
url: 'https://explorer.q.org',
},
},
} as const satisfies Chain
36 changes: 18 additions & 18 deletions packages/chains/src/qTestnet.ts
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
import { Chain } from './types'

export const qTestnet = {
id: 35443,
name: 'Q Testnet',
network: 'q-testnet',
nativeCurrency: {
decimals: 18,
name: 'Q',
symbol: 'Q',
id: 35443,
name: 'Q Testnet',
network: 'q-testnet',
nativeCurrency: {
decimals: 18,
name: 'Q',
symbol: 'Q',
},
rpcUrls: {
default: { http: ['https://rpc.qtestnet.org'] },
public: { http: ['https://rpc.qtestnet.org'] },
},
blockExplorers: {
default: {
name: 'Q Testnet Explorer',
url: 'https://explorer.qtestnet.org',
},
rpcUrls: {
default: { http: ['https://rpc.qtestnet.org'] },
public: { http: ['https://rpc.qtestnet.org'] },
},
blockExplorers: {
default: {
name: 'Q Testnet Explorer',
url: 'https://explorer.qtestnet.org',
},
},
testnet: true,
},
testnet: true,
} as const satisfies Chain

0 comments on commit e1032cb

Please sign in to comment.