Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Create rpc-list.mdx #606

Merged
merged 11 commits into from
Oct 18, 2023
2 changes: 1 addition & 1 deletion docs/reference/freighter.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
sidebar_position: 7
sidebar_position: 8
title: Freighter Wallet
description: Freighter is a browser extension that can sign Soroban transactions.
---
Expand Down
29 changes: 29 additions & 0 deletions docs/reference/rpc-list.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
title: RPC Providers
sidebar_position: 7
---

## Ecosystem Providers

Multiple infrastructure providers have made Soroban RPC endpoint services available, and offer plans ranging from free to high throughput endpoints. These providers can be used for development, testing, and production.

Most of these providers allow access to the Testnet network (with Mainnet coming soon).

| Provider | Signup / Access |
| :---------------------------------------------------- | --------------------------------------------------- |
| [Blockdaemon](https://www.blockdaemon.com) | [Access](https://www.blockdaemon.com/apply/soroban) |
| [Validation Cloud](https://validationcloud.io/) | [Access](https://app.validationcloud.io/) |
| [QuickNode](https://www.quicknode.com/chains/stellar) | [Access](https://www.quicknode.com/chains/stellar) |
| [BlockEden](https://blockeden.xyz/stellar-soroban) | [Access](https://blockeden.xyz/stellar-soroban) |
| [NowNodes](https://nownodes.io/nodes/stellar-xlm) | [Access](https://nownodes.io/nodes/stellar-xlm) |

## SDF (Futurenet and Testnet only)

SDF has made available Soroban RPC endpoints with access to the Futurenet and Testnet networks. These services are free to use, and are suitable for development and testing.

SDF will not be providing a publicly available RPC endpoint for Mainnet. Developers should select an ecosystem provider that works for their project before migrating to Mainnet. In some cases, projects may choose to [run their own RPC instance](rpc.mdx#run-your-own-instance).

| Provider | Endpoint | Friendbot | Network |
| :---------------------------- | ------------------------------------- | ----------------------------------------- | ----------- |
| [SDF](http://www.stellar.org) | `https://rpc-futurenet.stellar.org` | `https://friendbot-futurenet.stellar.org` | `Futurenet` |
| [SDF](http://www.stellar.org) | `https://soroban-testnet.stellar.org` | `https://friendbot.stellar.org` | `Testnet` |
2 changes: 1 addition & 1 deletion docs/reference/rpc.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 6
title: RPC
title: RPC Usage
---

The RPC service allows you to communicate directly with Soroban via a [JSON RPC interface](https://soroban.stellar.org/api/).
Expand Down