We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 780039f commit 9091d4cCopy full SHA for 9091d4c
components/MainnetConfig.tsx
@@ -11,6 +11,7 @@ const NetworkCard = ({
11
chainId,
12
rpcUrl,
13
wssUrl,
14
+ wssUrl2,
15
explorerUrls,
16
fundingInfo,
17
}) => {
@@ -50,6 +51,7 @@ const NetworkCard = ({
50
51
<th className={styles.tableHeader}>Public WSS URL</th>
52
<td className={styles.tableCell}>
53
<Link href={wssUrl}>{wssUrl}</Link>
54
+ <Link href={wssUrl2}>{wssUrl2}</Link>
55
</td>
56
</tr>
57
{explorerUrls.map((explorer, index) => (
@@ -80,6 +82,7 @@ const NetworkInfo = () => {
80
82
chainId: "5845",
81
83
rpcUrl: "https://rpc.tangle.tools",
84
wssUrl: "wss://rpc.tangle.tools",
85
+ wssUrl2: "wss://tangle-mainnet-rpc.dwellir.com/",
86
explorerUrls: [
87
{ name: "BlockScout", url: "https://testnet-explorer.tangle.tools" }, // Update this
88
{
0 commit comments