From 6f5e2a774e35b05bfadf0949c6cc873a689b91cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bego=C3=B1a=20=C3=81lvarez=20de=20la=20Cruz?= Date: Tue, 17 Oct 2023 15:39:33 +0200 Subject: [PATCH] feat: add tanglebay mainnet node (#7602) --- .../lib/core/network/constants/official-node-urls.constant.ts | 2 +- packages/shared/lib/core/network/tests/network.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/shared/lib/core/network/constants/official-node-urls.constant.ts b/packages/shared/lib/core/network/constants/official-node-urls.constant.ts index bfb510b1ecf..f4674b99460 100644 --- a/packages/shared/lib/core/network/constants/official-node-urls.constant.ts +++ b/packages/shared/lib/core/network/constants/official-node-urls.constant.ts @@ -1,7 +1,7 @@ import { NetworkId } from '../enums' export const OFFICIAL_NODE_URLS: Readonly<{ [key in NetworkId]?: string[] }> = { - [NetworkId.Iota]: ['https://api.stardust-mainnet.iotaledger.net'], + [NetworkId.Iota]: ['https://api.stardust-mainnet.iotaledger.net', 'https://iota-node.tanglebay.com'], [NetworkId.IotaAlphanet]: ['https://api.iota-alphanet.iotaledger.net'], [NetworkId.Shimmer]: ['https://api.shimmer.network', 'https://shimmer-node.tanglebay.com'], [NetworkId.Testnet]: ['https://api.testnet.shimmer.network'], diff --git a/packages/shared/lib/core/network/tests/network.test.ts b/packages/shared/lib/core/network/tests/network.test.ts index 020a97575ce..920e6416a4c 100644 --- a/packages/shared/lib/core/network/tests/network.test.ts +++ b/packages/shared/lib/core/network/tests/network.test.ts @@ -21,7 +21,7 @@ describe('File: network.ts', () => { } const EXPECTED_NODE_URLS: Readonly<{ [key in NetworkId]?: string[] }> = { - [NetworkId.Iota]: ['https://api.stardust-mainnet.iotaledger.net'], + [NetworkId.Iota]: ['https://api.stardust-mainnet.iotaledger.net', 'https://iota-node.tanglebay.com'], [NetworkId.IotaAlphanet]: ['https://api.iota-alphanet.iotaledger.net'], [NetworkId.Shimmer]: ['https://api.shimmer.network', 'https://shimmer-node.tanglebay.com'], [NetworkId.Testnet]: ['https://api.testnet.shimmer.network'],