From 66bfdfce2ad5454af556ae6e96a16df2c31731d0 Mon Sep 17 00:00:00 2001 From: redwest88 Date: Wed, 11 Sep 2024 16:18:52 +0200 Subject: [PATCH] update Story Protocol --- docs/story-protocol/endpoints.mdx | 110 ++++++++++++++++++++++++++++-- docs/story-protocol/index.mdx | 2 +- 2 files changed, 105 insertions(+), 7 deletions(-) diff --git a/docs/story-protocol/endpoints.mdx b/docs/story-protocol/endpoints.mdx index 473a21fe..6a637d0d 100644 --- a/docs/story-protocol/endpoints.mdx +++ b/docs/story-protocol/endpoints.mdx @@ -10,30 +10,128 @@ import TabItem from '@theme/TabItem'; > In the Cosmos SDK, the gRPC-gateway translates gRPC endpoints into RESTful ones, enabling users to interact via the REST API. This adaptation is essential for clients that don't natively support gRPC or HTTP2. -> The RPC endpoint enables users to interact with Initia's nodes, querying the node's state and transmitting transactions within the Initia Network. +> The RPC endpoint enables users to interact with Story's nodes, querying the node's state and transmitting transactions within the Story Network. -> The gRPC endpoint enables user interactions with a Initia Node through the efficient gRPC framework. In the Cosmos SDK, this protocol is crucial for state queries and transaction broadcasts. +> The gRPC endpoint enables user interactions with a Story Node through the efficient gRPC framework. In the Cosmos SDK, this protocol is crucial for state queries and transaction broadcasts. +#### kjnodes: ```bash -https://initia-testnet-api.f5nodes.com +https://story-testnet.api.kjnodes.com # Cosmos REST API +``` + +#### Lavender.Five: +```bash +https://testnet-story-api.lavenderfive.com # Cosmos REST API +``` + +#### lesnik | UTSA: +```bash +https://t-story.archive.api.utsa.tech # Cosmos REST API +``` + +#### Mandragora: +```bash +https://story-api.mandragora.io # Cosmos REST API +``` + +#### NodeStake: +```bash +https://api-t.story.nodestake.org # Cosmos REST API +``` + +#### Polkachu: +```bash +https://story-testnet-api.polkachu.com # Cosmos REST API +``` + +#### Synergy Nodes: +```bash +https://story-testnet-api.synergynodes.com # Cosmos REST API ``` +#### Story Foundation (official): +```bash +https://testnet.storyrpc.io # EVM JSON-RPC +``` + +#### Aura: +```bash +https://story-testnet.aura.network # EVM JSON-RPC +``` + +#### F5 Nodes: +```bash +https://story-testnet-rpc.f5nodes.com # Cosmos RPC +``` + +#### ITRocket: ```bash -https://initia-testnet-rpc.f5nodes.com +https://story-testnet-rpc.itrocket.net # Cosmos RPC +https://story-testnet-evm.itrocket.net:443 # EVM JSON-RPC +``` + +#### kjnodes: +```bash +https://story-testnet.rpc.kjnodes.com # Cosmos RPC +``` + +#### Lavender.Five: +```bash +https://testnet-story-rpc.lavenderfive.com # Cosmos RPC +``` + +#### lesnik | UTSA: +```bash +https://t-story.archive.rpc.utsa.tech # Cosmos RPC +https://t-story.archive.evm.utsa.tech # EVM JSON-RPC +``` + +#### Mandragora: +```bash +https://story-rpc.mandragora.io # Cosmos RPC +https://story-rpc-evm.mandragora.io # EVM JSON-RPC +``` + +#### NodeStake: +```bash +https://rpc-t.story.nodestake.org # Cosmos RPC +https://evmrpc-t.story.nodestake.org # EVM JSON-RPC +``` + +#### OriginStake: +```bash +https://story-rpc01.originstake.com # EVM JSON-RPC +``` + +#### Polkachu: +```bash +https://story-testnet-rpc.polkachu.com # Cosmos RPC +``` + +#### Synergy Nodes: +```bash +https://story-testnet-rpc.synergynodes.com # Cosmos RPC +https://story-testnet-evm.synergynodes.com # EVM JSON-RPC ``` - + +#### ITRocket: +```bash +https://story-testnet-rpc.itrocket.net +``` +#### Mandragora: ```bash -initia-testnet-grpc.f5nodes.com:9290 +wss://story-rpc.mandragora.io/websocket # Cosmos WSS +wss://story-wss.mandragora.io # EVM WSS ``` diff --git a/docs/story-protocol/index.mdx b/docs/story-protocol/index.mdx index 1009ed2a..4a2bad7e 100644 --- a/docs/story-protocol/index.mdx +++ b/docs/story-protocol/index.mdx @@ -1,4 +1,4 @@ -# Initia +# Story Protocol import MainpageMetrics from '@site/src/components/MainpageMetrics';