From f5409eeb542816a915c54d3240043263d9fc86d7 Mon Sep 17 00:00:00 2001 From: Gino Date: Fri, 5 Dec 2025 16:14:23 +0100 Subject: [PATCH] refactor(docs): add new rpc urls to network page --- docs/site/src/components/NetworkInfo/index.tsx | 1 + docs/site/src/components/constant.tsx | 3 +++ 2 files changed, 4 insertions(+) diff --git a/docs/site/src/components/NetworkInfo/index.tsx b/docs/site/src/components/NetworkInfo/index.tsx index 01588696226..61465986800 100644 --- a/docs/site/src/components/NetworkInfo/index.tsx +++ b/docs/site/src/components/NetworkInfo/index.tsx @@ -38,6 +38,7 @@ function L1(props: NetworkProps) { JSON RPC URL {props.rpc.json.core} + {props.rpc.json.ankr} {props.rpc.json.monochain} Websocket diff --git a/docs/site/src/components/constant.tsx b/docs/site/src/components/constant.tsx index 8eb9fd165c2..553f0c07be8 100644 --- a/docs/site/src/components/constant.tsx +++ b/docs/site/src/components/constant.tsx @@ -4,6 +4,7 @@ export const Networks: Record = { protocol: 'Rebased', rpc: { json: { + ankr: 'https://rpc.ankr.com/iota_mainnet', core: 'https://api.mainnet.iota.cafe', websocket: 'wss://api.mainnet.iota.cafe', indexer: 'https://indexer.mainnet.iota.cafe', @@ -43,6 +44,7 @@ export const Networks: Record = { protocol: 'Rebased', rpc: { json: { + ankr: 'https://rpc.ankr.com/iota_testnet', core: 'https://api.testnet.iota.cafe', websocket: 'wss://api.testnet.iota.cafe', indexer: 'https://indexer.testnet.iota.cafe', @@ -155,6 +157,7 @@ export interface NetworkProps { export interface Rpc { json: { + ankr: string; core: string; indexer: string; websocket: string;