Skip to content

Commit

Permalink
Merge pull request #195 from alephium/update-public-service-urls
Browse files Browse the repository at this point in the history
Update Public Services URLs
  • Loading branch information
h0ngcha0 authored Jun 3, 2024
2 parents e44056f + b46f840 commit 1d26242
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions packages/extension/manifest/v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
"storage",
"notifications",
"http://localhost/*",
"https://wallet.testnet.alephium.org/*",
"https://node.testnet.alephium.org/*",
"https://backend.testnet.alephium.org/*",
"https://wallet.mainnet.alephium.org/*",
"https://node.mainnet.alephium.org/*",
"https://backend.mainnet.alephium.org/*"
],
"content_security_policy": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'",
Expand Down
4 changes: 2 additions & 2 deletions packages/extension/manifest/v3.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
"storage",
"notifications",
"http://localhost/*",
"https://wallet.testnet.alephium.org/*",
"https://node.testnet.alephium.org/*",
"https://backend.testnet.alephium.org/*",
"https://wallet.mainnet.alephium.org/*",
"https://node.mainnet.alephium.org/*",
"https://backend.mainnet.alephium.org/*"
],
"icons": {
Expand Down
8 changes: 4 additions & 4 deletions packages/extension/src/shared/network/defaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ export const DEVNET = {
export const defaultNetworks: Network[] = [
{
id: 'mainnet',
nodeUrl: 'https://wallet.mainnet.alephium.org',
nodeUrl: 'https://node.mainnet.alephium.org',
explorerApiUrl: 'https://backend.mainnet.alephium.org',
explorerUrl: 'https://explorer.mainnet.alephium.org',
explorerUrl: 'https://explorer.alephium.org',
name: 'Mainnet',
readonly: true
},
{
id: 'testnet',
nodeUrl: 'https://wallet.testnet.alephium.org',
nodeUrl: 'https://node.testnet.alephium.org',
explorerApiUrl: 'https://backend.testnet.alephium.org',
explorerUrl: 'https://explorer.testnet.alephium.org',
explorerUrl: 'https://testnet.alephium.org',
name: 'Testnet',
},
DEVNET
Expand Down

0 comments on commit 1d26242

Please sign in to comment.