You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lead: "A blockchain explorer is a web-based tool that functions like a search engine specifically designed for blockchain data. This page explains how to connect to one for Entropy."
3
+
lead: "A blockchain explorer is a web-based tool that functions like a search engine specifically designed for blockchain data. The act as an interface, allowing users to quickly search, retrieve, and analyze information on the blockchain. This page explains how to view information about the Entropy network through an explorer."
4
4
---
5
5
6
-
Blockchains, like Entropy, store information in public databases called ledgers. These ledgers are transparent, meaning anyone can view them. However, the data can be complex and challenging to understand without assistance. Blockchain explorers act as an interface, allowing users to quickly search, retrieve, and analyze information on the blockchain.
6
+
The [Polkadot\{.js\} Apps](https://polkadot.js.org/apps) is a popular user interface for interacting with Substrate blockchains. Since Entropy is built using Substrate, we can use this explorer to searchand view chain data on the Entropy network.
7
7
8
-
The [Polkadot\{.js\} Apps](https://polkadot.js.org/apps) is a user interface for interacting with Substrate blockchains. Since Entropy is built using Substrate, we can use this explorer to search and view chain data on the Entropy network.
9
-
10
-
## Prerequisites
11
-
12
-
-[Docker](https://docker.com)
8
+
## Public interface
13
9
14
10
{{< callout type="info" >}}
15
-
**Why Docker?** The Entropy networks use regular WebSockets `ws://...`, rather than Secure WebSockets `wss://...`. Due to this limitation, you must run the block explorer _locally_. The easiest way to do this is to use Docker.
11
+
**Quick hint**: You can jump straight to the explorer with this link: [polkadot.js.org/apps/?rpc=wss%3A%2F%2Ftestnet.entropy.xyz](https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Ftestnet.entropy.xyz)
16
12
{{< /callout >}}
17
13
18
-
## Run the explorer
14
+
The fastest way to view information about the Entropy blockchain is to visit the public Polkadot\{.js\} interface.
15
+
16
+
1. Go to [polkadot.js.org/apps](https://polkadot.js.org/apps/#/explorer)
17
+
1. Click the network dropdown at the top left of the screen.
1. In the sidebar, select the **Development** dropdown.
22
+
1. Within the **custom endpoint** field, enter the address for the network you want to connect to:
23
+
24
+
```plaintext
25
+
wss://testnet.entropy.xyz
26
+
```
27
+
28
+
1. Click the **Save** icon next to the address field.
29
+
1. You should now be able to use the Polkadot\{.js\} interface with Entropy.
30
+
31
+
## Local install
32
+
33
+
If you don't want to use the public web interface, you can spin up a local copy of the Polkadot\{.js\} explorer.
34
+
35
+
### Prerequisites
36
+
37
+
-[Docker](https://docker.com)
38
+
39
+
### Run the explorer
19
40
20
41
1. Open a terminal window and run:
21
42
@@ -27,7 +48,7 @@ The [Polkadot\{.js\} Apps](https://polkadot.js.org/apps) is a user interface for
27
48
28
49
1. Open a browser and go to `http://localhost`.
29
50
30
-
## Connect to the Entropy network
51
+
###Connect to the Entropy network
31
52
32
53
1. With the explorer running, select the **Unknown** dropdown at the top left:
33
54
@@ -37,7 +58,6 @@ The [Polkadot\{.js\} Apps](https://polkadot.js.org/apps) is a user interface for
37
58
1. Within the **custom endpoint** field, enter the address for the network you want to connect to:
38
59
39
60
```plaintext
40
-
# Testnet
41
61
ws://testnet.entropy.xyz:9944
42
62
```
43
63
@@ -49,4 +69,4 @@ The [Polkadot\{.js\} Apps](https://polkadot.js.org/apps) is a user interface for
49
69
50
70

51
71
52
-
You should now be able to use the block explorer as usual. Check out the [wiki](https://wiki.polkadot.network/) for details on what information you can get from this blockchain explorer.
72
+
You should now be able to use the block explorer as usual. Check out the [wiki](https://wiki.polkadot.network/) for what information you can get from this blockchain explorer.
0 commit comments