From 7913e45a447006d3951e83bffa1e41d9c8b64d27 Mon Sep 17 00:00:00 2001 From: Vivek Jain Date: Mon, 21 Oct 2024 16:22:02 +0530 Subject: [PATCH 01/27] Add network overview page --- .../getting-started/network-overview.mdx | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 docs/content/developer/getting-started/network-overview.mdx diff --git a/docs/content/developer/getting-started/network-overview.mdx b/docs/content/developer/getting-started/network-overview.mdx new file mode 100644 index 00000000000..905ada10474 --- /dev/null +++ b/docs/content/developer/getting-started/network-overview.mdx @@ -0,0 +1,38 @@ +--- +description: This pages gives an overview around the different networks available in the IOTA ecosystem. + +tags: [getting-started, devnet, testnet, mainnet] +--- + +# Network Overview + +This pages gives an overview around the different networks available in the IOTA ecosystem. + +import { L1, Evm, EvmCustom, Move } from "../../../site/src/components/NetworkInfo/index.tsx"; + +:::info +In general, all endpoints are load balanced but are also subject to rate limiting. If you are developing a production level application for IOTA, consider setting up your own infrastructure in order to have more control and to not run into any limits. +::: + +## IOTA Mainnet + + + +## IOTA Alphanet + + + From c2be3e6387e1747a04441259455bcb9a73357383 Mon Sep 17 00:00:00 2001 From: Vivek Jain Date: Mon, 21 Oct 2024 16:22:29 +0530 Subject: [PATCH 02/27] Add network table component --- .../site/src/components/NetworkInfo/index.tsx | 73 ++++++++++++++++++- 1 file changed, 71 insertions(+), 2 deletions(-) diff --git a/docs/site/src/components/NetworkInfo/index.tsx b/docs/site/src/components/NetworkInfo/index.tsx index 3cf243df9f0..d45db4d8aa5 100644 --- a/docs/site/src/components/NetworkInfo/index.tsx +++ b/docs/site/src/components/NetworkInfo/index.tsx @@ -1,9 +1,21 @@ -import React from 'react'; +import React, { useState } from 'react'; import { ChainId } from '../ChainId'; import { NetworkProps } from '../constant'; import CodeBlock from '@theme/CodeBlock'; import Admonition from '@theme/Admonition'; + +type MoveProps = { + jsonRpcUrl: string; + jsonRpcWebsocketUrl: string; + indexerRpc: string; + graphqlRpc: string; + faucetUrl: string; + explorerUrl: string; +}; + + +// L1 component function L1(props: NetworkProps) { return ( @@ -49,6 +61,7 @@ function L1(props: NetworkProps) { ); } +// EVM component function Evm(props: NetworkProps) { return (
@@ -134,6 +147,7 @@ function Evm(props: NetworkProps) { ); } +// EvmCustom component function EvmCustom(props: NetworkProps) { return (
@@ -159,8 +173,63 @@ function EvmCustom(props: NetworkProps) { ); } -export default { +// Move component +function Move(props: MoveProps) { + return ( +
+ + + + + + + + + + + + + + + + + + + + + + + + + + {props.faucet && ( + + + + + )} + +
Base Token{props.baseToken}
Explorer URL + {props.explorerUrl} +
JSON RPC URL + {props.jsonRpcUrl} +
Indexer RPC + {props.indexerRpc} +
GraphQL RPC + {props.graphqlRpc} +
RPC Websocket URL + {props.jsonRpcWebsocketUrl} +
Faucet URL + + {props.faucetUrl} + +
+ ); +} + +export { L1, Evm, EvmCustom, + Move, }; From 12700c079e6c6d78030c6b0ef098748f1a3cbe0c Mon Sep 17 00:00:00 2001 From: Vivek Jain Date: Mon, 21 Oct 2024 16:22:38 +0530 Subject: [PATCH 03/27] Add network overview page to sidebar --- docs/content/sidebars/developer.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/content/sidebars/developer.js b/docs/content/sidebars/developer.js index 15350af03f7..f5fb5a24b2c 100644 --- a/docs/content/sidebars/developer.js +++ b/docs/content/sidebars/developer.js @@ -24,8 +24,9 @@ const developer = [ 'developer/getting-started/create-a-module', 'developer/getting-started/build-test', 'developer/getting-started/publish', - 'developer/getting-started/debug', + // 'developer/getting-started/debug', 'developer/getting-started/client-tssdk', + 'developer/getting-started/network-overview', ], }, { From 38637a798a24da9e0ae67ca9f32041b2028c6971 Mon Sep 17 00:00:00 2001 From: Vivek Jain Date: Tue, 22 Oct 2024 11:41:14 +0530 Subject: [PATCH 04/27] Fix sidebar --- docs/content/sidebars/developer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/sidebars/developer.js b/docs/content/sidebars/developer.js index f5fb5a24b2c..b3f82b57eaf 100644 --- a/docs/content/sidebars/developer.js +++ b/docs/content/sidebars/developer.js @@ -24,7 +24,7 @@ const developer = [ 'developer/getting-started/create-a-module', 'developer/getting-started/build-test', 'developer/getting-started/publish', - // 'developer/getting-started/debug', + 'developer/getting-started/debug', 'developer/getting-started/client-tssdk', 'developer/getting-started/network-overview', ], From 5eceafca5e056ee43231e5d25cc5dccfadeb3e85 Mon Sep 17 00:00:00 2001 From: Vivek Jain Date: Tue, 22 Oct 2024 11:44:05 +0530 Subject: [PATCH 05/27] Fix and move interface to constants --- docs/site/src/components/NetworkInfo/index.tsx | 13 +------------ docs/site/src/components/constant.tsx | 9 +++++++++ 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/docs/site/src/components/NetworkInfo/index.tsx b/docs/site/src/components/NetworkInfo/index.tsx index d45db4d8aa5..feaea2c4c82 100644 --- a/docs/site/src/components/NetworkInfo/index.tsx +++ b/docs/site/src/components/NetworkInfo/index.tsx @@ -1,20 +1,9 @@ import React, { useState } from 'react'; import { ChainId } from '../ChainId'; -import { NetworkProps } from '../constant'; +import { NetworkProps, MoveProps } from '../constant'; import CodeBlock from '@theme/CodeBlock'; import Admonition from '@theme/Admonition'; - -type MoveProps = { - jsonRpcUrl: string; - jsonRpcWebsocketUrl: string; - indexerRpc: string; - graphqlRpc: string; - faucetUrl: string; - explorerUrl: string; -}; - - // L1 component function L1(props: NetworkProps) { return ( diff --git a/docs/site/src/components/constant.tsx b/docs/site/src/components/constant.tsx index 78099fb9e73..f71905cdd38 100644 --- a/docs/site/src/components/constant.tsx +++ b/docs/site/src/components/constant.tsx @@ -192,3 +192,12 @@ export interface NetworkProps { api?: string; }; } + +export interface MoveProps { + jsonRpcUrl: string; + jsonRpcWebsocketUrl: string; + indexerRpc: string; + graphqlRpc: string; + faucetUrl: string; + explorerUrl: string; +}; \ No newline at end of file From 3b8bae150e177ac6ee1af330c55a9f64f5b25041 Mon Sep 17 00:00:00 2001 From: Vivek Jain Date: Tue, 22 Oct 2024 11:57:22 +0530 Subject: [PATCH 06/27] Fix import path --- docs/content/developer/getting-started/network-overview.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/developer/getting-started/network-overview.mdx b/docs/content/developer/getting-started/network-overview.mdx index 905ada10474..99487955689 100644 --- a/docs/content/developer/getting-started/network-overview.mdx +++ b/docs/content/developer/getting-started/network-overview.mdx @@ -8,7 +8,7 @@ tags: [getting-started, devnet, testnet, mainnet] This pages gives an overview around the different networks available in the IOTA ecosystem. -import { L1, Evm, EvmCustom, Move } from "../../../site/src/components/NetworkInfo/index.tsx"; +import { L1, Evm, EvmCustom, Move } from "@site/src/components/NetworkInfo/index.tsx"; :::info In general, all endpoints are load balanced but are also subject to rate limiting. If you are developing a production level application for IOTA, consider setting up your own infrastructure in order to have more control and to not run into any limits. From 4c9e16d69856b53f5ab19e4b855f2b1d6bb5429a Mon Sep 17 00:00:00 2001 From: Vivek Jain Date: Tue, 22 Oct 2024 12:21:42 +0530 Subject: [PATCH 07/27] Fix Network Info component --- docs/content/developer/getting-started/network-overview.mdx | 6 +++--- docs/site/src/components/NetworkInfo/index.tsx | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/content/developer/getting-started/network-overview.mdx b/docs/content/developer/getting-started/network-overview.mdx index 99487955689..9b96f4e0f28 100644 --- a/docs/content/developer/getting-started/network-overview.mdx +++ b/docs/content/developer/getting-started/network-overview.mdx @@ -8,7 +8,7 @@ tags: [getting-started, devnet, testnet, mainnet] This pages gives an overview around the different networks available in the IOTA ecosystem. -import { L1, Evm, EvmCustom, Move } from "@site/src/components/NetworkInfo/index.tsx"; +import NetworkInfo from "@site/src/components/NetworkInfo/index.tsx"; :::info In general, all endpoints are load balanced but are also subject to rate limiting. If you are developing a production level application for IOTA, consider setting up your own infrastructure in order to have more control and to not run into any limits. @@ -16,7 +16,7 @@ In general, all endpoints are load balanced but are also subject to rate limitin ## IOTA Mainnet - Date: Mon, 28 Oct 2024 19:30:14 +0530 Subject: [PATCH 08/27] Add localnet endpoints to network overview page and fixes --- .../getting-started/network-overview.mdx | 18 ++++++++++++++++++ docs/site/src/components/NetworkInfo/index.tsx | 4 ++-- docs/site/src/components/constant.tsx | 12 ++++++------ 3 files changed, 26 insertions(+), 8 deletions(-) diff --git a/docs/content/developer/getting-started/network-overview.mdx b/docs/content/developer/getting-started/network-overview.mdx index 9b96f4e0f28..6b16ea40f68 100644 --- a/docs/content/developer/getting-started/network-overview.mdx +++ b/docs/content/developer/getting-started/network-overview.mdx @@ -16,6 +16,10 @@ In general, all endpoints are load balanced but are also subject to rate limitin ## IOTA Mainnet +:::note +The mainnet is currently unavailable and has not yet gone live. +::: + +## IOTA Localnet + +:::tip +In order to use explorer locally you could use the IOTA [Explorer](https://github.com/iotaledger/iota/blob/develop/apps/explorer/README.md) app and run it separately in Localnet. +::: + + diff --git a/docs/site/src/components/NetworkInfo/index.tsx b/docs/site/src/components/NetworkInfo/index.tsx index ebc5e3afd55..faa167254b3 100644 --- a/docs/site/src/components/NetworkInfo/index.tsx +++ b/docs/site/src/components/NetworkInfo/index.tsx @@ -171,12 +171,12 @@ function Move(props: MoveProps) { Base Token {props.baseToken} - + {props.explorerUrl && Explorer URL {props.explorerUrl} - + } JSON RPC URL diff --git a/docs/site/src/components/constant.tsx b/docs/site/src/components/constant.tsx index f71905cdd38..e1804144020 100644 --- a/docs/site/src/components/constant.tsx +++ b/docs/site/src/components/constant.tsx @@ -194,10 +194,10 @@ export interface NetworkProps { } export interface MoveProps { - jsonRpcUrl: string; - jsonRpcWebsocketUrl: string; - indexerRpc: string; - graphqlRpc: string; - faucetUrl: string; - explorerUrl: string; + jsonRpcUrl?: string; + jsonRpcWebsocketUrl?: string; + indexerRpc?: string; + graphqlRpc?: string; + faucetUrl?: string; + explorerUrl?: string; }; \ No newline at end of file From c72ee09b7619b455e278e5e5d111ce677eadab3b Mon Sep 17 00:00:00 2001 From: Vivek Jain Date: Tue, 29 Oct 2024 15:03:38 +0530 Subject: [PATCH 09/27] Update overview page and fixes --- .../developer/getting-started/network-overview.mdx | 2 +- docs/site/src/components/NetworkInfo/index.tsx | 14 ++++++++------ docs/site/src/components/constant.tsx | 10 +++++----- 3 files changed, 14 insertions(+), 12 deletions(-) diff --git a/docs/content/developer/getting-started/network-overview.mdx b/docs/content/developer/getting-started/network-overview.mdx index 6b16ea40f68..c2ba983ff49 100644 --- a/docs/content/developer/getting-started/network-overview.mdx +++ b/docs/content/developer/getting-started/network-overview.mdx @@ -43,7 +43,7 @@ The mainnet is currently unavailable and has not yet gone live. ## IOTA Localnet :::tip -In order to use explorer locally you could use the IOTA [Explorer](https://github.com/iotaledger/iota/blob/develop/apps/explorer/README.md) app and run it separately in Localnet. +In order to use the explorer locally users can use the deployed explorer and set another endpoint like this: [https://explorer.iota.cafe/?network=http%3A%2F%2F127.0.0.1%3A9000](https://explorer.iota.cafe/?network=http%3A%2F%2F127.0.0.1%3A9000) or manually provide a Custom RPC URL on the explorer page in the top right corner. ::: Base Token {props.baseToken} - {props.explorerUrl && - Explorer URL - - {props.explorerUrl} - - } + {props.explorerUrl && ( + + Explorer URL + + {props.explorerUrl} + + + )} JSON RPC URL diff --git a/docs/site/src/components/constant.tsx b/docs/site/src/components/constant.tsx index e1804144020..b7727d75652 100644 --- a/docs/site/src/components/constant.tsx +++ b/docs/site/src/components/constant.tsx @@ -194,10 +194,10 @@ export interface NetworkProps { } export interface MoveProps { - jsonRpcUrl?: string; - jsonRpcWebsocketUrl?: string; - indexerRpc?: string; - graphqlRpc?: string; - faucetUrl?: string; + jsonRpcUrl: string; + jsonRpcWebsocketUrl: string; + indexerRpc: string; + graphqlRpc: string; + faucetUrl: string; explorerUrl?: string; }; \ No newline at end of file From 576a73a12b369bc763d40d7b5b86a7014906c428 Mon Sep 17 00:00:00 2001 From: Vivek Jain Date: Tue, 29 Oct 2024 15:06:55 +0530 Subject: [PATCH 10/27] Update tooltip --- docs/content/developer/getting-started/network-overview.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/developer/getting-started/network-overview.mdx b/docs/content/developer/getting-started/network-overview.mdx index c2ba983ff49..45c27b5a545 100644 --- a/docs/content/developer/getting-started/network-overview.mdx +++ b/docs/content/developer/getting-started/network-overview.mdx @@ -43,7 +43,7 @@ The mainnet is currently unavailable and has not yet gone live. ## IOTA Localnet :::tip -In order to use the explorer locally users can use the deployed explorer and set another endpoint like this: [https://explorer.iota.cafe/?network=http%3A%2F%2F127.0.0.1%3A9000](https://explorer.iota.cafe/?network=http%3A%2F%2F127.0.0.1%3A9000) or manually provide a Custom RPC URL on the explorer page in the top right corner. +In order to use the explorer locally users can use the deployed explorer and set another endpoint like this: [https://explorer.iota.cafe/?network=http%3A%2F%2F127.0.0.1%3A9000](https://explorer.iota.cafe/?network=http%3A%2F%2F127.0.0.1%3A9000) or manually provide a Custom RPC URL on the [Explorer](https://explorer.iota.cafe/) page in the top right corner. ::: Date: Mon, 4 Nov 2024 12:43:58 +0530 Subject: [PATCH 11/27] Move network overview page --- .../developer/{getting-started => }/network-overview.mdx | 0 docs/content/sidebars/developer.js | 3 ++- 2 files changed, 2 insertions(+), 1 deletion(-) rename docs/content/developer/{getting-started => }/network-overview.mdx (100%) diff --git a/docs/content/developer/getting-started/network-overview.mdx b/docs/content/developer/network-overview.mdx similarity index 100% rename from docs/content/developer/getting-started/network-overview.mdx rename to docs/content/developer/network-overview.mdx diff --git a/docs/content/sidebars/developer.js b/docs/content/sidebars/developer.js index 2b7dbc82832..8ef45e201b0 100644 --- a/docs/content/sidebars/developer.js +++ b/docs/content/sidebars/developer.js @@ -26,10 +26,11 @@ const developer = [ 'developer/getting-started/publish', 'developer/getting-started/debug', 'developer/getting-started/client-tssdk', - 'developer/getting-started/network-overview', 'developer/getting-started/coffee-example', + // 'developer/getting-started/network-overview', ], }, + 'developer/network-overview', { type: 'category', label: 'IOTA 101', From 2972553ab7abf96a46fbed1e8a8d58b8d4f2210d Mon Sep 17 00:00:00 2001 From: Vivek Jain Date: Mon, 4 Nov 2024 13:11:00 +0530 Subject: [PATCH 12/27] Create a link to and from network overview doc --- docs/content/developer/getting-started/connect.mdx | 4 ++++ docs/content/developer/network-overview.mdx | 2 ++ 2 files changed, 6 insertions(+) diff --git a/docs/content/developer/getting-started/connect.mdx b/docs/content/developer/getting-started/connect.mdx index 708559a12e9..a6e6c512933 100644 --- a/docs/content/developer/getting-started/connect.mdx +++ b/docs/content/developer/getting-started/connect.mdx @@ -10,6 +10,10 @@ import questions from '/json/developer/getting-started/connect.json'; # Connect to an IOTA Network +:::info +You can look at the [Network Overview](/developer/network-overview) page to get an overview around the different networks available in the IOTA ecosystem +::: + ## IOTA CLI IOTA provides the [IOTA command line interface (CLI)](/references/cli/client.mdx) to interact with [IOTA networks](#iota-networks), it does the following and more: diff --git a/docs/content/developer/network-overview.mdx b/docs/content/developer/network-overview.mdx index 45c27b5a545..7cfb5ca85b8 100644 --- a/docs/content/developer/network-overview.mdx +++ b/docs/content/developer/network-overview.mdx @@ -42,6 +42,8 @@ The mainnet is currently unavailable and has not yet gone live. ## IOTA Localnet +To create a local IOTA network, you can refer to [Local Development](/developer/getting-started/local-network) page. + :::tip In order to use the explorer locally users can use the deployed explorer and set another endpoint like this: [https://explorer.iota.cafe/?network=http%3A%2F%2F127.0.0.1%3A9000](https://explorer.iota.cafe/?network=http%3A%2F%2F127.0.0.1%3A9000) or manually provide a Custom RPC URL on the [Explorer](https://explorer.iota.cafe/) page in the top right corner. ::: From 0c908a862f9cc7cc3f3f4ea797d253cec4d54dab Mon Sep 17 00:00:00 2001 From: Vivek Jain Date: Wed, 6 Nov 2024 13:45:35 +0530 Subject: [PATCH 13/27] Add description to developer --- docs/content/developer/developer.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/content/developer/developer.mdx b/docs/content/developer/developer.mdx index d83197d7413..4f157f20b3e 100644 --- a/docs/content/developer/developer.mdx +++ b/docs/content/developer/developer.mdx @@ -11,6 +11,10 @@ If you are completely new to Move, you should start with the aptly named Getting Go to [Getting Started](getting-started/getting-started.mdx). +## Network Overview + +The Network Overview page gives an overview around the different networks available in the IOTA ecosystem. + ## IOTA 101 The IOTA 101 section introduces the basics of IOTA that help you create smart contracts. These topics assume you are familiar with Move and the IOTA blockchain. From bca3c477329f4244b5167c9d305e37e321c4c3dd Mon Sep 17 00:00:00 2001 From: Vivek Jain Date: Wed, 6 Nov 2024 13:46:10 +0530 Subject: [PATCH 14/27] Add testnet and devnet table and fixes --- docs/content/developer/network-overview.mdx | 22 ++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/docs/content/developer/network-overview.mdx b/docs/content/developer/network-overview.mdx index 7cfb5ca85b8..d7777a79d9c 100644 --- a/docs/content/developer/network-overview.mdx +++ b/docs/content/developer/network-overview.mdx @@ -1,5 +1,5 @@ --- -description: This pages gives an overview around the different networks available in the IOTA ecosystem. +description: This page gives an overview around the different networks available in the IOTA ecosystem. tags: [getting-started, devnet, testnet, mainnet] --- @@ -28,6 +28,26 @@ The mainnet is currently unavailable and has not yet gone live. permaNodeApi="permaNodeApi placeholder" /> +## IOTA Testnet + + + +## IOTA Devnet + + + ## IOTA Alphanet Date: Wed, 6 Nov 2024 13:49:35 +0530 Subject: [PATCH 15/27] Update tooltip --- docs/content/developer/network-overview.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/developer/network-overview.mdx b/docs/content/developer/network-overview.mdx index d7777a79d9c..6094bfe7f68 100644 --- a/docs/content/developer/network-overview.mdx +++ b/docs/content/developer/network-overview.mdx @@ -17,7 +17,7 @@ In general, all endpoints are load balanced but are also subject to rate limitin ## IOTA Mainnet :::note -The mainnet is currently unavailable and has not yet gone live. +The Mainnet, Testnet, and Devnet are currently unavailable and have not yet gone live. ::: Date: Wed, 6 Nov 2024 13:54:16 +0530 Subject: [PATCH 16/27] Fix network table component and update doc --- docs/content/developer/network-overview.mdx | 4 +- .../site/src/components/NetworkInfo/index.tsx | 93 +++++++++++++++++++ 2 files changed, 95 insertions(+), 2 deletions(-) diff --git a/docs/content/developer/network-overview.mdx b/docs/content/developer/network-overview.mdx index 6094bfe7f68..4041877b377 100644 --- a/docs/content/developer/network-overview.mdx +++ b/docs/content/developer/network-overview.mdx @@ -30,7 +30,7 @@ The Mainnet, Testnet, and Devnet are currently unavailable and have not yet gone ## IOTA Testnet - + + + Base Token + {props.baseToken} + + + Protocol + {props.protocol} + + + HTTP REST API + + {props.httpRestApi} + + + + Event API + + {props.eventApi} + + + + Permanode API + + {props.permaNodeApi} + + + {props.faucet && ( + + Faucet + + + {props.faucet} + + + + )} + + + ); +} + +// Devtnet Component +function Devtnet(props: NetworkProps) { + return ( + + + + + + + + + + + + + + + + + + + + + + + {props.faucet && ( + + + + + )} + +
Base Token{props.baseToken}
Protocol{props.protocol}
HTTP REST API + {props.httpRestApi} +
Event API + {props.eventApi} +
Permanode API + {props.permaNodeApi} +
Faucet + + {props.faucet} + +
+ ); +} // EVM component function Evm(props: NetworkProps) { return ( @@ -223,4 +314,6 @@ export default { Evm, EvmCustom, Move, + Testnet, + Devnet }; From 7c76c9fa69b917cfd7fd5ee56e89fa3aae53d039 Mon Sep 17 00:00:00 2001 From: Vivek Jain Date: Wed, 6 Nov 2024 13:55:14 +0530 Subject: [PATCH 17/27] Fix typo --- docs/site/src/components/NetworkInfo/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/site/src/components/NetworkInfo/index.tsx b/docs/site/src/components/NetworkInfo/index.tsx index 7fcd842f3bd..e16b943a7d1 100644 --- a/docs/site/src/components/NetworkInfo/index.tsx +++ b/docs/site/src/components/NetworkInfo/index.tsx @@ -97,7 +97,7 @@ function Testnet(props: NetworkProps) { } // Devtnet Component -function Devtnet(props: NetworkProps) { +function Devnet(props: NetworkProps) { return ( From 377d3af8508a59798b90497cbb9338903391bbd4 Mon Sep 17 00:00:00 2001 From: vivekjain23 <165671934+vivekjain23@users.noreply.github.com> Date: Wed, 6 Nov 2024 15:03:18 +0530 Subject: [PATCH 18/27] Fix faucet URL Co-authored-by: Thoralf-M <46689931+Thoralf-M@users.noreply.github.com> --- docs/content/developer/network-overview.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/developer/network-overview.mdx b/docs/content/developer/network-overview.mdx index 4041877b377..d29bc7954ba 100644 --- a/docs/content/developer/network-overview.mdx +++ b/docs/content/developer/network-overview.mdx @@ -56,7 +56,7 @@ The Mainnet, Testnet, and Devnet are currently unavailable and have not yet gone jsonRpcWebsocketUrl='wss://api.iota-rebased-alphanet.iota.cafe' indexerRpc= 'https://indexer.iota-rebased-alphanet.iota.cafe' graphqlRpc= 'https://graphql.iota-rebased-alphanet.iota.cafe' - faucetUrl= 'https://faucet.iota-rebased-alphanet.iota.cafe/gas' + faucetUrl= 'https://api.iota-rebased-alphanet.iota.cafe/gas' explorerUrl= 'https://explorer.iota.cafe/?network=alphanet' /> From 1319ec71f75ec1ac32db85bad6429a895473b08e Mon Sep 17 00:00:00 2001 From: Vivek Jain Date: Thu, 7 Nov 2024 12:32:17 +0530 Subject: [PATCH 19/27] Fix document layout --- docs/content/developer/developer.mdx | 2 +- docs/content/developer/getting-started/connect.mdx | 2 +- docs/content/developer/getting-started/local-network.mdx | 4 ++++ docs/content/developer/network-overview.mdx | 7 ++----- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/content/developer/developer.mdx b/docs/content/developer/developer.mdx index 4f157f20b3e..49e45c25e13 100644 --- a/docs/content/developer/developer.mdx +++ b/docs/content/developer/developer.mdx @@ -13,7 +13,7 @@ Go to [Getting Started](getting-started/getting-started.mdx). ## Network Overview -The Network Overview page gives an overview around the different networks available in the IOTA ecosystem. +The [Network Overview](network-overview.mdx) page gives an overview of the different networks available in the IOTA ecosystem. ## IOTA 101 diff --git a/docs/content/developer/getting-started/connect.mdx b/docs/content/developer/getting-started/connect.mdx index a6e6c512933..28c2f10c238 100644 --- a/docs/content/developer/getting-started/connect.mdx +++ b/docs/content/developer/getting-started/connect.mdx @@ -11,7 +11,7 @@ import questions from '/json/developer/getting-started/connect.json'; # Connect to an IOTA Network :::info -You can look at the [Network Overview](/developer/network-overview) page to get an overview around the different networks available in the IOTA ecosystem +The [Network Overview](/developer/network-overview) section lists all the networks available in the IOTA ecosystem. ::: ## IOTA CLI diff --git a/docs/content/developer/getting-started/local-network.mdx b/docs/content/developer/getting-started/local-network.mdx index 95c9bb1fd84..05383670af8 100644 --- a/docs/content/developer/getting-started/local-network.mdx +++ b/docs/content/developer/getting-started/local-network.mdx @@ -166,6 +166,10 @@ The response resembles the following, but with different IDs: ╰────────────────────────────────────────────────────────────────────┴────────────╯ ``` +:::tip explorer +In order to use the explorer locally users can use the deployed explorer and set another endpoint like this: [https://explorer.iota.cafe/?network=http%3A%2F%2F127.0.0.1%3A9000](https://explorer.iota.cafe/?network=http%3A%2F%2F127.0.0.1%3A9000) or manually provide a Custom RPC URL on the [Explorer](https://explorer.iota.cafe/) page in the top right corner. +::: + ## Install IOTA Wallet Locally ### Prerequisites diff --git a/docs/content/developer/network-overview.mdx b/docs/content/developer/network-overview.mdx index d29bc7954ba..5075adea126 100644 --- a/docs/content/developer/network-overview.mdx +++ b/docs/content/developer/network-overview.mdx @@ -11,13 +11,13 @@ This pages gives an overview around the different networks available in the IOTA import NetworkInfo from "@site/src/components/NetworkInfo/index.tsx"; :::info -In general, all endpoints are load balanced but are also subject to rate limiting. If you are developing a production level application for IOTA, consider setting up your own infrastructure in order to have more control and to not run into any limits. +In general, all endpoints are load-balanced but also subject to rate limiting. If you are developing a production-level application for IOTA, consider [setting up your own infrastructure](/developer/getting-started/local-network) to have more control and avoid any limits. ::: ## IOTA Mainnet :::note -The Mainnet, Testnet, and Devnet are currently unavailable and have not yet gone live. +The Mainnet, Testnet, and Devnet have not yet gone live. ::: Date: Thu, 7 Nov 2024 12:36:22 +0530 Subject: [PATCH 20/27] Add testnet and devnet constants --- docs/site/src/components/constant.tsx | 62 +++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/docs/site/src/components/constant.tsx b/docs/site/src/components/constant.tsx index b7727d75652..a8381c67ae6 100644 --- a/docs/site/src/components/constant.tsx +++ b/docs/site/src/components/constant.tsx @@ -155,6 +155,68 @@ export const Networks = { api: 'https://api.evm.testnet.shimmer.network', }, }, + move_testnet: { + baseToken: 'Testnet Token (no value)', + protocol: 'Stardust', + httpRestApi: 'https://api.testnet.shimmer.network', + eventApi: 'wss://api.testnet.shimmer.network:443/api/mqtt/v1 (MQTT 3.1)', + permaNodeApi: 'https://chronicle.testnet.shimmer.network', + faucet: 'https://faucet.testnet.shimmer.network', + explorer: 'https://explorer.shimmer.network/shimmer-testnet', + evm: { + chainId: '0x431', + chainName: 'ShimmerEVM Testnet', + nativeCurrency: { + name: 'Shimmer', + symbol: 'SMR', + decimals: 18, + }, + rpcUrls: ['https://json-rpc.evm.testnet.shimmer.network'], + blockExplorerUrls: ['https://explorer.evm.testnet.shimmer.network/'], + }, + evmCustom: { + chainAddress: + 'rms1ppp00k5mmd2m8my8ukkp58nd3rskw6rx8l09aj35984k74uuc5u2cywn3ex', + aliasId: + '0x42f7da9bdb55b3ec87e5ac1a1e6d88e16768663fde5eca3429eb6f579cc538ac', + toolkit: { + url: 'https://evm-toolkit.evm.testnet.shimmer.network', + hasFaucet: true, + }, + api: 'https://api.evm.testnet.shimmer.network', + }, + }, + move_devnet: { + baseToken: 'Testnet Token (no value)', + protocol: 'Stardust', + httpRestApi: 'https://api.testnet.shimmer.network', + eventApi: 'wss://api.testnet.shimmer.network:443/api/mqtt/v1 (MQTT 3.1)', + permaNodeApi: 'https://chronicle.testnet.shimmer.network', + faucet: 'https://faucet.testnet.shimmer.network', + explorer: 'https://explorer.shimmer.network/shimmer-testnet', + evm: { + chainId: '0x431', + chainName: 'ShimmerEVM Testnet', + nativeCurrency: { + name: 'Shimmer', + symbol: 'SMR', + decimals: 18, + }, + rpcUrls: ['https://json-rpc.evm.testnet.shimmer.network'], + blockExplorerUrls: ['https://explorer.evm.testnet.shimmer.network/'], + }, + evmCustom: { + chainAddress: + 'rms1ppp00k5mmd2m8my8ukkp58nd3rskw6rx8l09aj35984k74uuc5u2cywn3ex', + aliasId: + '0x42f7da9bdb55b3ec87e5ac1a1e6d88e16768663fde5eca3429eb6f579cc538ac', + toolkit: { + url: 'https://evm-toolkit.evm.testnet.shimmer.network', + hasFaucet: true, + }, + api: 'https://api.evm.testnet.shimmer.network', + }, + }, }; export interface Toolkit { From 64ce81844a097e0dbaf87869c412b961322314f7 Mon Sep 17 00:00:00 2001 From: Vivek Jain Date: Fri, 8 Nov 2024 14:31:51 +0530 Subject: [PATCH 21/27] Fix constants --- docs/site/src/components/constant.tsx | 126 +++++--------------------- 1 file changed, 24 insertions(+), 102 deletions(-) diff --git a/docs/site/src/components/constant.tsx b/docs/site/src/components/constant.tsx index a8381c67ae6..7ef12f43d26 100644 --- a/docs/site/src/components/constant.tsx +++ b/docs/site/src/components/constant.tsx @@ -49,48 +49,6 @@ export const Networks = { explorer: 'https://explorer.iota.org/iota2-testnet', faucet: 'https://faucet.nova-testnet.iotaledger.net', }, - iota_testnet: { - baseToken: 'Testnet Token (no value)', - protocol: 'Stardust', - httpRestApi: 'https://api.testnet.iotaledger.net', - eventApi: 'wss://api.testnet.iotaledger.net:443 (MQTT 3.1, /mqtt)', - permaNodeApi: 'https://chronicle.testnet.iotaledger.net', - faucet: 'https://faucet.testnet.iotaledger.net', - explorer: 'https://explorer.iota.org/iota-testnet', - evm: { - chainId: '0x433', - chainName: 'IOTA EVM Testnet', - nativeCurrency: { - name: 'IOTA', - symbol: 'IOTA', - decimals: 18, - }, - rpcUrls: [ - 'https://json-rpc.evm.testnet.iotaledger.net', - 'wss://ws.json-rpc.evm.testnet.iotaledger.net', - ], - blockExplorerUrls: ['https://explorer.evm.testnet.iotaledger.net'], - }, - evmCustom: { - chainAddress: - 'tst1pzxsrr7apqkdzz633dyntmvxwtyvk029p39te5j0m33q6946h7akzv663zu', - aliasId: - '0x8d018fdd082cd10b518b4935ed8672c8cb3d450c4abcd24fdc620d16babfbb61', - blastApiUrls: [ - 'https://iota-testnet-evm.public.blastapi.io', - 'wss://iota-testnet-evm.public.blastapi.io', - { - 'Archive RPC': - 'https://iota-testnet-evm.blastapi.io/e7596858-fc63-4a54-8727-b885a2af4ec8', - }, - ], - toolkit: { - url: 'https://evm-toolkit.evm.testnet.iotaledger.net', - hasFaucet: false, - }, - api: 'https://api.evm.testnet.iotaledger.net', - }, - }, shimmer: { baseToken: 'Shimmer Token', protocol: 'Stardust', @@ -155,67 +113,31 @@ export const Networks = { api: 'https://api.evm.testnet.shimmer.network', }, }, - move_testnet: { - baseToken: 'Testnet Token (no value)', - protocol: 'Stardust', - httpRestApi: 'https://api.testnet.shimmer.network', - eventApi: 'wss://api.testnet.shimmer.network:443/api/mqtt/v1 (MQTT 3.1)', - permaNodeApi: 'https://chronicle.testnet.shimmer.network', - faucet: 'https://faucet.testnet.shimmer.network', - explorer: 'https://explorer.shimmer.network/shimmer-testnet', - evm: { - chainId: '0x431', - chainName: 'ShimmerEVM Testnet', - nativeCurrency: { - name: 'Shimmer', - symbol: 'SMR', - decimals: 18, - }, - rpcUrls: ['https://json-rpc.evm.testnet.shimmer.network'], - blockExplorerUrls: ['https://explorer.evm.testnet.shimmer.network/'], - }, - evmCustom: { - chainAddress: - 'rms1ppp00k5mmd2m8my8ukkp58nd3rskw6rx8l09aj35984k74uuc5u2cywn3ex', - aliasId: - '0x42f7da9bdb55b3ec87e5ac1a1e6d88e16768663fde5eca3429eb6f579cc538ac', - toolkit: { - url: 'https://evm-toolkit.evm.testnet.shimmer.network', - hasFaucet: true, - }, - api: 'https://api.evm.testnet.shimmer.network', - }, + iota_testnet: { + baseToken: 'IOTA Token (no value)', + jsonRpcUrl: 'https://api.iota-rebased-alphanet.iota.cafe', + jsonRpcWebsocketUrl:'wss://api.iota-rebased-alphanet.iota.cafe', + indexerRpc: 'https://indexer.iota-rebased-alphanet.iota.cafe', + graphqlRpc: 'https://graphql.iota-rebased-alphanet.iota.cafe', + faucetUrl: 'https://api.iota-rebased-alphanet.iota.cafe/gas', + explorerUrl: 'https://explorer.iota.cafe/?network=alphanet' }, - move_devnet: { - baseToken: 'Testnet Token (no value)', - protocol: 'Stardust', - httpRestApi: 'https://api.testnet.shimmer.network', - eventApi: 'wss://api.testnet.shimmer.network:443/api/mqtt/v1 (MQTT 3.1)', - permaNodeApi: 'https://chronicle.testnet.shimmer.network', - faucet: 'https://faucet.testnet.shimmer.network', - explorer: 'https://explorer.shimmer.network/shimmer-testnet', - evm: { - chainId: '0x431', - chainName: 'ShimmerEVM Testnet', - nativeCurrency: { - name: 'Shimmer', - symbol: 'SMR', - decimals: 18, - }, - rpcUrls: ['https://json-rpc.evm.testnet.shimmer.network'], - blockExplorerUrls: ['https://explorer.evm.testnet.shimmer.network/'], - }, - evmCustom: { - chainAddress: - 'rms1ppp00k5mmd2m8my8ukkp58nd3rskw6rx8l09aj35984k74uuc5u2cywn3ex', - aliasId: - '0x42f7da9bdb55b3ec87e5ac1a1e6d88e16768663fde5eca3429eb6f579cc538ac', - toolkit: { - url: 'https://evm-toolkit.evm.testnet.shimmer.network', - hasFaucet: true, - }, - api: 'https://api.evm.testnet.shimmer.network', - }, + iota_devnet: { + baseToken: 'IOTA Token (no value)', + jsonRpcUrl: 'jsonRpcUrl placeholder', + jsonRpcWebsocketUrl:'jsonRpcWebsocketUrl placeholder', + indexerRpc: 'indexerRpc placeholder', + graphqlRpc: 'graphqlRpc placeholder', + faucetUrl: 'faucetUrl placeholder', + explorerUrl: 'explorerUrl placeholder' + }, + iota_localnet: { + baseToken:"IOTA Token", + jsonRpcUrl: 'http://127.0.0.1:9000', + jsonRpcWebsocketUrl:'ws://127.0.0.1:9000', + indexerRpc: 'http://127.0.0.1:9124', + graphqlRpc: 'http://127.0.0.1:8000', + faucetUrl: 'http://127.0.0.1:9123/gas' }, }; From 166d8be82fbd8ec79933dd52f7278c54c2c71a53 Mon Sep 17 00:00:00 2001 From: Vivek Jain Date: Fri, 8 Nov 2024 14:32:24 +0530 Subject: [PATCH 22/27] Use constants in network overview page --- docs/content/developer/network-overview.mdx | 41 +++------------------ 1 file changed, 5 insertions(+), 36 deletions(-) diff --git a/docs/content/developer/network-overview.mdx b/docs/content/developer/network-overview.mdx index 5075adea126..ff4133f3b05 100644 --- a/docs/content/developer/network-overview.mdx +++ b/docs/content/developer/network-overview.mdx @@ -9,6 +9,7 @@ tags: [getting-started, devnet, testnet, mainnet] This pages gives an overview around the different networks available in the IOTA ecosystem. import NetworkInfo from "@site/src/components/NetworkInfo/index.tsx"; +import { Networks } from '@site/src/components/constant.tsx'; :::info In general, all endpoints are load-balanced but also subject to rate limiting. If you are developing a production-level application for IOTA, consider [setting up your own infrastructure](/developer/getting-started/local-network) to have more control and avoid any limits. @@ -17,7 +18,7 @@ In general, all endpoints are load-balanced but also subject to rate limiting. I ## IOTA Mainnet :::note -The Mainnet, Testnet, and Devnet have not yet gone live. +The Mainnet and Devnet have not yet gone live. ::: + ## IOTA Devnet - - -## IOTA Alphanet - - + ## IOTA Localnet To create a local IOTA network, you can refer to [Local Development](/developer/getting-started/local-network) page. - - + From 208baec73ea2dc7c1b39264c1616d7a88698233a Mon Sep 17 00:00:00 2001 From: Vivek Jain Date: Fri, 8 Nov 2024 14:32:54 +0530 Subject: [PATCH 23/27] Cleanup network info component --- docs/site/src/components/NetworkInfo/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/site/src/components/NetworkInfo/index.tsx b/docs/site/src/components/NetworkInfo/index.tsx index e16b943a7d1..748d8638105 100644 --- a/docs/site/src/components/NetworkInfo/index.tsx +++ b/docs/site/src/components/NetworkInfo/index.tsx @@ -59,10 +59,10 @@ function Testnet(props: NetworkProps) { - + {props.protocol && - + }
Base Token {props.baseToken}
Protocol {props.protocol}
HTTP REST API From 836faf30fd72d969726522bb59b4b219ecd11ba6 Mon Sep 17 00:00:00 2001 From: Vivek Jain Date: Fri, 8 Nov 2024 14:34:37 +0530 Subject: [PATCH 24/27] Fix mainnet info --- docs/content/developer/network-overview.mdx | 8 +------- docs/site/src/components/constant.tsx | 9 +++++++++ 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/docs/content/developer/network-overview.mdx b/docs/content/developer/network-overview.mdx index ff4133f3b05..05d22a4ea27 100644 --- a/docs/content/developer/network-overview.mdx +++ b/docs/content/developer/network-overview.mdx @@ -21,13 +21,7 @@ In general, all endpoints are load-balanced but also subject to rate limiting. I The Mainnet and Devnet have not yet gone live. ::: - + ## IOTA Testnet diff --git a/docs/site/src/components/constant.tsx b/docs/site/src/components/constant.tsx index 7ef12f43d26..e98772b8bd6 100644 --- a/docs/site/src/components/constant.tsx +++ b/docs/site/src/components/constant.tsx @@ -113,6 +113,15 @@ export const Networks = { api: 'https://api.evm.testnet.shimmer.network', }, }, + iota_move: { + baseToken: 'IOTA Token (no value)', + jsonRpcUrl: 'jsonRpcUrl placeholder', + jsonRpcWebsocketUrl:'jsonRpcWebsocketUrl placeholder', + indexerRpc: 'indexerRpc placeholder', + graphqlRpc: 'graphqlRpc placeholder', + faucetUrl: 'faucetUrl placeholder', + explorerUrl: 'explorerUrl placeholder' + }, iota_testnet: { baseToken: 'IOTA Token (no value)', jsonRpcUrl: 'https://api.iota-rebased-alphanet.iota.cafe', From 82de3d0d6ea55d4bcc68f7a8a4a4143a1bc317f6 Mon Sep 17 00:00:00 2001 From: Vivek Jain Date: Fri, 8 Nov 2024 14:38:40 +0530 Subject: [PATCH 25/27] Fix mainnet constant value --- docs/site/src/components/constant.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/site/src/components/constant.tsx b/docs/site/src/components/constant.tsx index e98772b8bd6..5f8444c5b03 100644 --- a/docs/site/src/components/constant.tsx +++ b/docs/site/src/components/constant.tsx @@ -114,7 +114,7 @@ export const Networks = { }, }, iota_move: { - baseToken: 'IOTA Token (no value)', + baseToken: 'IOTA Token', jsonRpcUrl: 'jsonRpcUrl placeholder', jsonRpcWebsocketUrl:'jsonRpcWebsocketUrl placeholder', indexerRpc: 'indexerRpc placeholder', From 54a16d0d4f485582d429f123d30882f010360d50 Mon Sep 17 00:00:00 2001 From: Vivek Jain Date: Fri, 8 Nov 2024 16:52:51 +0530 Subject: [PATCH 26/27] Update constants name --- docs/content/developer/network-overview.mdx | 4 +- docs/site/src/components/constant.tsx | 46 ++++++++++++++++++++- 2 files changed, 46 insertions(+), 4 deletions(-) diff --git a/docs/content/developer/network-overview.mdx b/docs/content/developer/network-overview.mdx index 05d22a4ea27..8dfb43e3403 100644 --- a/docs/content/developer/network-overview.mdx +++ b/docs/content/developer/network-overview.mdx @@ -25,11 +25,11 @@ The Mainnet and Devnet have not yet gone live. ## IOTA Testnet - + ## IOTA Devnet - + ## IOTA Localnet diff --git a/docs/site/src/components/constant.tsx b/docs/site/src/components/constant.tsx index 5f8444c5b03..4c5a3e40d49 100644 --- a/docs/site/src/components/constant.tsx +++ b/docs/site/src/components/constant.tsx @@ -40,6 +40,48 @@ export const Networks = { api: 'https://api.evm.iotaledger.net', }, }, + iota_testnet: { + baseToken: 'Testnet Token (no value)', + protocol: 'Stardust', + httpRestApi: 'https://api.testnet.iotaledger.net', + eventApi: 'wss://api.testnet.iotaledger.net:443 (MQTT 3.1, /mqtt)', + permaNodeApi: 'https://chronicle.testnet.iotaledger.net', + faucet: 'https://faucet.testnet.iotaledger.net', + explorer: 'https://explorer.iota.org/iota-testnet', + evm: { + chainId: '0x433', + chainName: 'IOTA EVM Testnet', + nativeCurrency: { + name: 'IOTA', + symbol: 'IOTA', + decimals: 18, + }, + rpcUrls: [ + 'https://json-rpc.evm.testnet.iotaledger.net', + 'wss://ws.json-rpc.evm.testnet.iotaledger.net', + ], + blockExplorerUrls: ['https://explorer.evm.testnet.iotaledger.net'], + }, + evmCustom: { + chainAddress: + 'tst1pzxsrr7apqkdzz633dyntmvxwtyvk029p39te5j0m33q6946h7akzv663zu', + aliasId: + '0x8d018fdd082cd10b518b4935ed8672c8cb3d450c4abcd24fdc620d16babfbb61', + blastApiUrls: [ + 'https://iota-testnet-evm.public.blastapi.io', + 'wss://iota-testnet-evm.public.blastapi.io', + { + 'Archive RPC': + 'https://iota-testnet-evm.blastapi.io/e7596858-fc63-4a54-8727-b885a2af4ec8', + }, + ], + toolkit: { + url: 'https://evm-toolkit.evm.testnet.iotaledger.net', + hasFaucet: false, + }, + api: 'https://api.evm.testnet.iotaledger.net', + }, + }, iota_2_testnet: { baseToken: 'Testnet Token (no value)', protocol: 'IOTA 2.0', @@ -122,7 +164,7 @@ export const Networks = { faucetUrl: 'faucetUrl placeholder', explorerUrl: 'explorerUrl placeholder' }, - iota_testnet: { + iota_move_testnet: { baseToken: 'IOTA Token (no value)', jsonRpcUrl: 'https://api.iota-rebased-alphanet.iota.cafe', jsonRpcWebsocketUrl:'wss://api.iota-rebased-alphanet.iota.cafe', @@ -131,7 +173,7 @@ export const Networks = { faucetUrl: 'https://api.iota-rebased-alphanet.iota.cafe/gas', explorerUrl: 'https://explorer.iota.cafe/?network=alphanet' }, - iota_devnet: { + iota_move_devnet: { baseToken: 'IOTA Token (no value)', jsonRpcUrl: 'jsonRpcUrl placeholder', jsonRpcWebsocketUrl:'jsonRpcWebsocketUrl placeholder', From d5d7578dca894cce4f17724848701c8627fa54da Mon Sep 17 00:00:00 2001 From: vivekjain23 <165671934+vivekjain23@users.noreply.github.com> Date: Fri, 8 Nov 2024 17:26:41 +0530 Subject: [PATCH 27/27] Update docs/content/sidebars/developer.js Co-authored-by: Lucas Tortora <85233773+lucas-tortora@users.noreply.github.com> --- docs/content/sidebars/developer.js | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/content/sidebars/developer.js b/docs/content/sidebars/developer.js index 8ef45e201b0..9057eabce7c 100644 --- a/docs/content/sidebars/developer.js +++ b/docs/content/sidebars/developer.js @@ -27,7 +27,6 @@ const developer = [ 'developer/getting-started/debug', 'developer/getting-started/client-tssdk', 'developer/getting-started/coffee-example', - // 'developer/getting-started/network-overview', ], }, 'developer/network-overview',