Skip to content

Commit

Permalink
endpoints test single-page added
Browse files Browse the repository at this point in the history
  • Loading branch information
vasylcode committed Sep 9, 2023
1 parent 6d1cc8e commit aa8e7d6
Showing 1 changed file with 128 additions and 0 deletions.
128 changes: 128 additions & 0 deletions docs/zetachain/endpoints-test.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
---
sidebar_position: 5
description: Endpoints Test
---

import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';

# Endpoints — API / RPC / gRPC

> 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 gRPC endpoint enables user interactions with a ZetaChain Node through the efficient gRPC framework. In the Cosmos SDK, this protocol is crucial for state queries and transaction broadcasts.
> The RPC endpoint enables users to interact with ZetaChain's nodes, querying the node's state and transmitting transactions within the ZetaChain network.

<Tabs>
<TabItem value="api" label="API" default>

#### F5 Nodes:
```bash
https://zetachain-api.f5nodes.com
```

#### Polkachu:
```bash
https://zetachain-testnet-api.polkachu.com
```

#### NodeJumper:
```bash
https://zetachain-testnet.nodejumper.io:1317
```

#### NodeStake:
```bash
https://api-t.zeta.nodestake.top
```

#### kjnodes:
```bash
https://zetachain-testnet.api.kjnodes.com
```

#### ITRocket:
```bash
https://zetachain-testnet-api.itrocket.net:443
```

#### Synergy Nodes:
```bash
https://zeta-testnet-api.synergynodes.com
```

</TabItem>
<TabItem value="rpc" label="RPC">

#### F5 Nodes:
```bash
https://zetachain-rpc.f5nodes.com
```

#### Polkachu:
```bash
https://zetachain-testnet-rpc.polkachu.com
```

#### NodeJumper:
```bash
https://zetachain-testnet.nodejumper.io:443
```

#### NodeStake:
```bash
https://rpc-t.zeta.nodestake.top
```

#### kjnodes:
```bash
https://zetachain-testnet.rpc.kjnodes.com
```

#### ITRocket:
```bash
https://zetachain-testnet-rpc.itrocket.net:443
```

#### Synergy Nodes:
```bash
https://zeta-testnet-rpc.synergynodes.com
```

</TabItem>
<TabItem value="grpc" label="gRPC">

#### F5 Nodes:
```bash
zetachain-grpc.f5nodes.com
```

#### Polkachu:
```bash
polkachu.com/testnet_public_grpc
```

#### NodeJumper:
```bash
zetachain-testnet.nodejumper.io:9090
```

#### NodeStake:
```bash
grpc-t.zeta.nodestake.top:443
```

#### kjnodes:
```bash
zetachain-testnet.grpc.kjnodes.com:443
```

#### ITRocket:
```bash
zetachain-testnet-grpc.itrocket.net:16090
```

</TabItem>
</Tabs>

0 comments on commit aa8e7d6

Please sign in to comment.