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;