Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build/add testnet #1556

Merged
merged 6 commits into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion docs/build/getting-started/networks-endpoints.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ tags:
- mainnet
- shimmer
- public testnet
- iota 2.0
- MQTT
- REST API
- HTTP
Expand Down Expand Up @@ -63,7 +64,6 @@ This network is subject to occasional resets (no data retention) which are usual
<AddToMetaMaskButton {...Networks['iota_testnet']} />

<NetworkInfo.Evm {...Networks['iota_testnet']}/>

#### Additional Info

<NetworkInfo.EvmCustom {...Networks['iota_testnet']}/>
Expand Down Expand Up @@ -116,3 +116,14 @@ This network is subject to occasional resets (no data retention) which are usual
#### Additional Info

<NetworkInfo.EvmCustom {...Networks['shimmer_testnet']} />


## 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.
lucas-tortora marked this conversation as resolved.
Show resolved Hide resolved

:::info
This network is subject to occasional resets (no data retention) which are usually announced with a one-week grace period.
:::
Dr-Electron marked this conversation as resolved.
Show resolved Hide resolved

<NetworkInfo.L1 {...Networks['iota_2_testnet']} />
9 changes: 9 additions & 0 deletions theme/src/theme/constant.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ export const Networks = {
permaNodeApi: 'https://chronicle.stardust-mainnet.iotaledger.net',
explorer: 'https://explorer.iota.org/mainnet',
},
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/',
lucas-tortora marked this conversation as resolved.
Show resolved Hide resolved
explorer: 'https://explorer.iota.org/iota2-testnet',
faucet: 'https://faucet.nova-testnet.iotaledger.net',
},
iota_testnet: {
baseToken: 'Testnet Token (no value)',
protocol: 'Stardust',
Expand Down
Loading