Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Public CasperLabs JSON-RPC Endpoints #1466

Merged
merged 2 commits into from
Aug 5, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions source/docs/casper/developers/prerequisites.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,11 +258,17 @@ On Mainnet, a pre-existing account must transfer CSPR tokens to the newly create

## Acquiring a Node Address from the Network {#acquire-node-address-from-network-peers}

Clients can interact with a node on the blockchain via requests sent to that node's JSON-RPC endpoint, `http://<node-ip-address>:7777` by default.
Clients can interact with a node on the blockchain via requests sent to that node's JSON-RPC endpoint, `http://<node-address>:7777` by default.

The node address is the IP of a peer node.
The node address is the IP address or URL of a peer node.

Both the official Testnet and Mainnet provide block explorers that list the IP addresses of nodes on their respective networks.
Casper Labs provides public Casper node JSON RPC endpoints for each network:
dylanireland marked this conversation as resolved.
Show resolved Hide resolved

* Mainnet: https://rpc.mainnet.casperlabs.io/rpc
* Testnet: https://rpc.testnet.casperlabs.io/rpc
* Integration network: https://rpc.integration.casperlabs.io/rpc

Additionally, both the official Testnet and Mainnet provide block explorers that list the IP addresses of nodes on their respective networks.

You can get the `node-ip-address` of a node on the network by visiting the following block explorers:

Expand Down
Loading