Skip to content

Commit 36d28db

Browse files
authored
Merge branch 'release/desktop-canary-4.0.0' into feat/prepare-canary-release
2 parents 8925027 + 25800c5 commit 36d28db

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

packages/shared/lib/core/network/constants/explorer-urls.constant.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ export const EXPLORER_URLS: Readonly<{ [key in NetworkId]?: string }> = {
44
[NetworkId.Iota]: 'https://explorer.iota.org/mainnet',
55
[NetworkId.IotaAlphanet]: 'https://explorer.iota-alphanet.iotaledger.net/devnet',
66
[NetworkId.Shimmer]: 'https://explorer.shimmer.network/shimmer',
7-
[NetworkId.Testnet]: 'https://explorer.shimmer.network/testnet',
7+
[NetworkId.Testnet]: 'https://explorer.iota.works/iota2-testnet',
88
}

packages/shared/lib/core/network/constants/faucet-urls.constant.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ import { NetworkId } from '../enums'
22

33
export const FAUCET_URLS: Readonly<{ [key in NetworkId]?: string }> = {
44
[NetworkId.IotaAlphanet]: 'https://faucet.iota-alphanet.iotaledger.net/api/enqueue',
5-
[NetworkId.Testnet]: 'https://faucet.testnet.shimmer.network/api/enqueue',
5+
[NetworkId.Testnet]: 'https://faucet.nova-testnet.iotaledger.net/api/enqueue',
66
}

packages/shared/lib/core/network/constants/official-node-urls.constant.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ export const OFFICIAL_NODE_URLS: Readonly<{ [key in NetworkId]?: string[] }> = {
44
[NetworkId.Iota]: ['https://api.stardust-mainnet.iotaledger.net', 'https://iota-node.tanglebay.com'],
55
[NetworkId.IotaAlphanet]: ['https://api.iota-alphanet.iotaledger.net'],
66
[NetworkId.Shimmer]: ['https://api.shimmer.network', 'https://shimmer-node.tanglebay.com'],
7-
[NetworkId.Testnet]: ['https://api.testnet.shimmer.network'],
7+
[NetworkId.Testnet]: ['https://api.nova-testnet.iotaledger.net/'],
88
}

packages/shared/lib/core/network/tests/network.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ describe('File: network.ts', () => {
2424
[NetworkId.Iota]: ['https://api.stardust-mainnet.iotaledger.net', 'https://iota-node.tanglebay.com'],
2525
[NetworkId.IotaAlphanet]: ['https://api.iota-alphanet.iotaledger.net'],
2626
[NetworkId.Shimmer]: ['https://api.shimmer.network', 'https://shimmer-node.tanglebay.com'],
27-
[NetworkId.Testnet]: ['https://api.testnet.shimmer.network'],
27+
[NetworkId.Testnet]: ['https://api.nova-testnet.iotaledger.net/'],
2828
}
2929

3030
const EXPECTED_NODES: Readonly<{ [key in NetworkId]: (INode | undefined)[] }> = {

packages/shared/lib/core/network/utils/getNetworkIdFromNetworkName.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { NetworkId } from '../enums'
22

33
export function getNetworkIdFromNetworkName(networkName: string): NetworkId {
4-
if (networkName.startsWith('iota2-alphanet')) {
4+
if (networkName.startsWith('nova-testnet')) {
55
return NetworkId.Testnet
66
}
77
switch (networkName) {

0 commit comments

Comments
 (0)