Skip to main content

Public RPC Endpoints

Connect to the Story Aeneid Testnet using our interactive public RPC endpoints. Test connectivity, explore network data, and verify your connection with our user-friendly interface.

Overview

The Story Aeneid Testnet provides three types of endpoints:

Usage

  1. Select an endpoint type from the sections below
  2. Modify the URL if needed (defaults are pre-configured)
  3. Click "Test Connection" to verify connectivity
  4. View results in the formatted response area
  5. Copy URLs using the "Copy URL" button for use in your applications

Story Aeneid Testnet

Connect to the Story Aeneid Testnet using our public RPC endpoints. Test connectivity and explore the network with our interactive tools.

EVM RPC

curl -X POST \
-H "Content-Type: application/json" \
--data '{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "eth_blockNumber",
  "params": []
}' \
https://evmrpc-aeneid-story.blocknth.com

Tendermint RPC

curl -s https://rpc-aeneid-story.blocknth.com/status

Troubleshooting

Common Issues

  1. Connection Timeout: Check your internet connection and firewall settings
  2. CORS Errors: Use appropriate headers for cross-origin requests
  3. Rate Limiting: Implement proper request throttling in your applications
  4. Invalid JSON: Ensure your request payload follows JSON-RPC 2.0 specification

Best Practices

  • Error Handling: Always implement proper error handling for network requests
  • Request Throttling: Avoid overwhelming the endpoints with too many requests
  • Caching: Cache responses when appropriate to reduce load
  • Monitoring: Monitor your application's connection health regularly

Support

If you encounter issues with the public endpoints:

  1. Check the Story Foundation documentation
  2. Verify your request format and parameters
  3. Test with the interactive interface above
  4. Check network connectivity and firewall settings
tip

For production applications, consider running your own node or using a dedicated RPC provider for better reliability and performance.

info

These endpoints are provided for testing and development purposes. For mainnet deployment, please refer to the official mainnet documentation.