Skip to content

Commit

Permalink
adds testnet suffix for now
Browse files Browse the repository at this point in the history
  • Loading branch information
peetzweg committed Apr 30, 2024
1 parent 31f6089 commit bc60f40
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,15 @@ export const alephzeroTestnet: SubstrateChain = {
faucetUrls: ['https://faucet.test.azero.dev'],
}

export const popNetwork: SubstrateChain = {
network: 'pop-network',
export const popNetworkTestnet: SubstrateChain = {
network: 'pop-network-testnet',
name: 'Pop Network',
ss58Prefix: 42,
rpcUrls: ['wss://rpc1.paseo.popnetwork.xyz', 'wss://rpc2.paseo.popnetwork.xyz'],
rpcUrls: [
'wss://rpc1.paseo.popnetwork.xyz',
'wss://rpc2.paseo.popnetwork.xyz',
'wss://rpc3.paseo.popnetwork.xyz',
],
explorerUrls: {
[SubstrateExplorer.PolkadotJs]: `https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Frpc1.paseo.popnetwork.xyz`,
},
Expand Down

0 comments on commit bc60f40

Please sign in to comment.