From 523c5a65afb39ce6913fcfaa1daedad7dec67bca Mon Sep 17 00:00:00 2001 From: Lucas Tortora Date: Wed, 8 May 2024 10:11:32 -0300 Subject: [PATCH 1/6] added 2.0 testnet endpoints --- .../build/getting-started/networks-endpoints.mdx | 13 ++++++++++++- theme/src/theme/constant.tsx | 16 ++++++++++++---- 2 files changed, 24 insertions(+), 5 deletions(-) diff --git a/docs/build/getting-started/networks-endpoints.mdx b/docs/build/getting-started/networks-endpoints.mdx index 4a02b0bf5d5..48ae77fc4ac 100644 --- a/docs/build/getting-started/networks-endpoints.mdx +++ b/docs/build/getting-started/networks-endpoints.mdx @@ -4,6 +4,7 @@ tags: - mainnet - shimmer - public testnet + - iota 2.0 - MQTT - REST API - HTTP @@ -63,7 +64,6 @@ This network is subject to occasional resets (no data retention) which are usual - #### Additional Info @@ -116,3 +116,14 @@ This network is subject to occasional resets (no data retention) which are usual #### Additional Info + + +## IOTA 2.0 Testnet + +[The IOTA 2.0 Testnet](https://explorer.shimmer.network/shimmer-testnet) acts as a test bed for builders without any real world value. + +:::info +This network is subject to occasional resets (no data retention) which are usually announced with a one-week grace period. +::: + + \ No newline at end of file diff --git a/theme/src/theme/constant.tsx b/theme/src/theme/constant.tsx index 17561868ae5..ff29a2f05df 100644 --- a/theme/src/theme/constant.tsx +++ b/theme/src/theme/constant.tsx @@ -2,11 +2,19 @@ export const Networks = { iota: { baseToken: 'IOTA Token', protocol: 'Stardust', - httpRestApi: 'https://api.stardust-mainnet.iotaledger.net', - eventApi: 'wss://api.stardust-mainnet.iotaledger.net:443 (MQTT 3.1, /mqtt)', - permaNodeApi: 'https://chronicle.stardust-mainnet.iotaledger.net', - explorer: 'https://explorer.iota.org/mainnet', + httpRestApi: 'https://api.nova-testnet.iotaledger.net/', + eventApi: 'wss://api.nova-testnet.iotaledger.net:443 (MQTT 3.1, /mqtt)', + permaNodeApi: 'https://api.nova-testnet.iotaledger.net/', + explorer: 'https://explorer.iota.org/iota-testnet', }, + iota_2_testnet: { + baseToken: 'Testnet Token (no value)', + protocol: 'IOTA 2.0', + httpRestApi: 'https://api.nova-testnet.iotaledger.net/', + eventApi: 'wss://api.nova-testnet.iotaledger.net:443 (MQTT 3.1, /mqtt)', + permaNodeApi: 'https://api.nova-testnet.iotaledger.net/', + explorer: 'https://explorer.iota.org/iota-testnet', + faucet: 'https://faucet.nova-testnet.iotaledger.net',}, iota_testnet: { baseToken: 'Testnet Token (no value)', protocol: 'Stardust', From 48170b5414cc56bee0d0834d74ef265c7badb148 Mon Sep 17 00:00:00 2001 From: Lucas Tortora Date: Mon, 13 May 2024 09:17:05 -0300 Subject: [PATCH 2/6] update chronicle endpoint --- theme/src/theme/constant.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theme/src/theme/constant.tsx b/theme/src/theme/constant.tsx index ff29a2f05df..74d9f0bd3eb 100644 --- a/theme/src/theme/constant.tsx +++ b/theme/src/theme/constant.tsx @@ -13,7 +13,7 @@ export const Networks = { httpRestApi: 'https://api.nova-testnet.iotaledger.net/', eventApi: 'wss://api.nova-testnet.iotaledger.net:443 (MQTT 3.1, /mqtt)', permaNodeApi: 'https://api.nova-testnet.iotaledger.net/', - explorer: 'https://explorer.iota.org/iota-testnet', + explorer: 'https://explorer.iota.org/iota2-testnet', faucet: 'https://faucet.nova-testnet.iotaledger.net',}, iota_testnet: { baseToken: 'Testnet Token (no value)', From 68d07873795eed9560b41576656dd4c2f6e70640 Mon Sep 17 00:00:00 2001 From: Lucas Tortora Date: Mon, 13 May 2024 09:20:36 -0300 Subject: [PATCH 3/6] format and remove unwanted changes --- theme/src/theme/constant.tsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/theme/src/theme/constant.tsx b/theme/src/theme/constant.tsx index 74d9f0bd3eb..729cecd9077 100644 --- a/theme/src/theme/constant.tsx +++ b/theme/src/theme/constant.tsx @@ -2,10 +2,10 @@ export const Networks = { iota: { baseToken: 'IOTA Token', protocol: 'Stardust', - httpRestApi: 'https://api.nova-testnet.iotaledger.net/', - eventApi: 'wss://api.nova-testnet.iotaledger.net:443 (MQTT 3.1, /mqtt)', - permaNodeApi: 'https://api.nova-testnet.iotaledger.net/', - explorer: 'https://explorer.iota.org/iota-testnet', + httpRestApi: 'https://api.stardust-mainnet.iotaledger.net', + eventApi: 'wss://api.stardust-mainnet.iotaledger.net:443 (MQTT 3.1, /mqtt)', + permaNodeApi: 'https://chronicle.stardust-mainnet.iotaledger.net', + explorer: 'https://explorer.iota.org/mainnet', }, iota_2_testnet: { baseToken: 'Testnet Token (no value)', @@ -14,7 +14,8 @@ export const Networks = { eventApi: 'wss://api.nova-testnet.iotaledger.net:443 (MQTT 3.1, /mqtt)', permaNodeApi: 'https://api.nova-testnet.iotaledger.net/', explorer: 'https://explorer.iota.org/iota2-testnet', - faucet: 'https://faucet.nova-testnet.iotaledger.net',}, + faucet: 'https://faucet.nova-testnet.iotaledger.net', + }, iota_testnet: { baseToken: 'Testnet Token (no value)', protocol: 'Stardust', From 2fe008dc34ee90a6839dd5baa74db99dde52305e Mon Sep 17 00:00:00 2001 From: Lucas Tortora <85233773+lucas-tortora@users.noreply.github.com> Date: Mon, 13 May 2024 10:30:17 -0300 Subject: [PATCH 4/6] Update docs/build/getting-started/networks-endpoints.mdx Co-authored-by: Dr-Electron --- docs/build/getting-started/networks-endpoints.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build/getting-started/networks-endpoints.mdx b/docs/build/getting-started/networks-endpoints.mdx index 48ae77fc4ac..4ef98f72404 100644 --- a/docs/build/getting-started/networks-endpoints.mdx +++ b/docs/build/getting-started/networks-endpoints.mdx @@ -120,7 +120,7 @@ This network is subject to occasional resets (no data retention) which are usual ## IOTA 2.0 Testnet -[The IOTA 2.0 Testnet](https://explorer.shimmer.network/shimmer-testnet) acts as a test bed for builders without any real world value. +[The IOTA 2.0 Testnet](https://explorer.iota.org/iota2-testnet) acts as a test bed for builders without any real world value. :::info This network is subject to occasional resets (no data retention) which are usually announced with a one-week grace period. From ea7c7b9d9509ebeb62108eb12f3e32dd2926f235 Mon Sep 17 00:00:00 2001 From: Lucas Tortora <85233773+lucas-tortora@users.noreply.github.com> Date: Mon, 13 May 2024 10:37:31 -0300 Subject: [PATCH 5/6] Update theme/src/theme/constant.tsx --- theme/src/theme/constant.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theme/src/theme/constant.tsx b/theme/src/theme/constant.tsx index 729cecd9077..c38cd15b367 100644 --- a/theme/src/theme/constant.tsx +++ b/theme/src/theme/constant.tsx @@ -12,7 +12,7 @@ export const Networks = { protocol: 'IOTA 2.0', httpRestApi: 'https://api.nova-testnet.iotaledger.net/', eventApi: 'wss://api.nova-testnet.iotaledger.net:443 (MQTT 3.1, /mqtt)', - permaNodeApi: 'https://api.nova-testnet.iotaledger.net/', + permaNodeApi: 'https://chronicle.nova-testnet.iotaledger.net', explorer: 'https://explorer.iota.org/iota2-testnet', faucet: 'https://faucet.nova-testnet.iotaledger.net', }, From 897429cbdb0a25e629d1685da474a4e7da66afad Mon Sep 17 00:00:00 2001 From: Dr-Electron Date: Mon, 13 May 2024 19:49:00 +0200 Subject: [PATCH 6/6] Apply suggestions from code review --- docs/build/getting-started/networks-endpoints.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/build/getting-started/networks-endpoints.mdx b/docs/build/getting-started/networks-endpoints.mdx index 4ef98f72404..714c125449a 100644 --- a/docs/build/getting-started/networks-endpoints.mdx +++ b/docs/build/getting-started/networks-endpoints.mdx @@ -123,7 +123,9 @@ This network is subject to occasional resets (no data retention) which are usual [The IOTA 2.0 Testnet](https://explorer.iota.org/iota2-testnet) acts as a test bed for builders without any real world value. :::info + This network is subject to occasional resets (no data retention) which are usually announced with a one-week grace period. + ::: \ No newline at end of file