Skip to content

Commit

Permalink
Update Tangle RPC endpoints (#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
devpavan04 authored Jan 11, 2024
1 parent 8aa9c78 commit 13c981e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const navigation = {
ecosystem: [
{
name: "Tangle",
href: "https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Frpc-archive.tangle.tools#/explorer",
href: "https://polkadot.js.org/apps/?rpc=wss://testnet-rpc.tangle.tools#/explorer",
},
{ name: "DKG Statistics", href: "https://stats.tangle.tools" },
{
Expand Down
6 changes: 3 additions & 3 deletions components/UseCasesTangle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const ParticipateArea = () => {
description: `Tangle Network runs independently without a relay chain.`,
name: "Tangle Network (Testnet)",
}}
href="https://polkadot.js.org/apps/?rpc=wss://rpc.tangle.tools#/explorer"
href="https://polkadot.js.org/apps/?rpc=wss://testnet-rpc.tangle.tools#/explorer"
></DetailedFeatureLink>
<DetailedFeatureLink
feature={{
Expand All @@ -72,7 +72,7 @@ export const ParticipateArea = () => {
description: `Through governance, you can create proposals for updating cross-chain applications.`,
name: "Participate in Governance ",
}}
href="https://polkadot.js.org/apps/?rpc=wss://rpc.tangle.tools#/democracy"
href="https://polkadot.js.org/apps/?rpc=wss://testnet-rpc.tangle.tools#/democracy"
></DetailedFeatureLink>
<DetailedFeatureLink
feature={{
Expand All @@ -95,7 +95,7 @@ export const TestNetworkArea = () => {
description: `Tangle Network runs independently without a relay chain.`,
name: "Tangle Network (Testnet)",
}}
href="https://polkadot.js.org/apps/?rpc=wss://rpc.tangle.tools#/explorer"
href="https://polkadot.js.org/apps/?rpc=wss://testnet-rpc.tangle.tools#/explorer"
></DetailedFeatureLink>
</div>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ Before you dive into development, it's crucial to familiarize yourself with the

Developer tools may require specific configurations for the Tangle Network. Use the following details:

| Variable | Value |
| --------------- | -------------------------- |
| Chain ID | 4006 |
| Public RPC URLs | `https://rpc.tangle.tools` |
| Public WSS URLs | `wss://rpc.tangle.tools` |
| Variable | Value |
| --------------- | ---------------------------------- |
| Chain ID | 4006 |
| Public RPC URLs | `https://testnet-rpc.tangle.tools` |
| Public WSS URLs | `wss://testnet-rpc.tangle.tools` |

## Types for Chain Integration

Expand All @@ -34,10 +34,10 @@ To find the latest types for Tangle Network, [visit the lookup.tsx file in our G

We will offer two types of block explorers to accommodate the Ethereum API and Substrate API. Transactions based on the Ethereum Virtual Machine (EVM) can be accessed through the Ethereum API. Conversely, the Substrate API is your go-to for native Substrate operations such as governance and staking. While the Substrate API does provide some details about EVM-based transactions, the information it presents is somewhat limited.

| Block Explorer | Type | URL |
| -------------- | --------- | -------------------------------------------------------------------------------- |
| BlockScout | EVM | [link](https://https://explorer.tangle.tools/) |
| PolkadotJS | Substrate | [link](https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Frpc.tangle.tools#/explorer) |
| Block Explorer | Type | URL |
| -------------- | --------- | ---------------------------------------------------------------------------------- |
| BlockScout | EVM | [link](https://https://explorer.tangle.tools/) |
| PolkadotJS | Substrate | [link](https://polkadot.js.org/apps/?rpc=wss://testnet-rpc.tangle.tools#/explorer) |

## Interfaces

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Substrate-based blockchains often have built-in on-chain governance mechanisms,
Note: This guide assumes you have already set up a Substrate-based wallet and have some tokens in your account.

1. **Access the Polkadot/Substrate User Interface (UI):**
Visit the [Substrate UI](https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Frpc.tangle.tools#/explorer). This web interface is used to interact with the Tangle network and other Substrate chains, during our testnet phase you can use [Webb's alpha interface](https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Frpc.tangle.tools#/explorer)
Visit the [Substrate UI](https://polkadot.js.org/apps/?rpc=wss://testnet-rpc.tangle.tools#/explorer). This web interface is used to interact with the Tangle network and other Substrate chains, during our testnet phase you can use [Webb's alpha interface](https://polkadot.js.org/apps/?rpc=wss://testnet-rpc.tangle.tools#/explorer)

2. **Connect to the correct network:**
Ensure you're connected to the Tangle Network, if not, at the top-left of the page, you will see a drop-down menu. Here you can select the Tangle network.
Expand Down

0 comments on commit 13c981e

Please sign in to comment.