Landslide
  • 👋Landslide
  • Github
  • Product Guides
    • 🏄Slide SDK
      • Run Landslide Locally
        • How to setup Slide SDK locally
        • Conect your wallet to a local network
        • How to deploy a CosmWasm contract
      • Run Landslide on Testnet
        • How to connect Cosmostation
      • License
      • Security Audit
    • 🦄Landslide EVM
    • ⚙️IBC Light Client
      • Relayer Operator Guide
      • Chain integrators guide
        • Lower than v0.50
        • Higher than v0.50
      • IBC Connection
      • IBC Go
      • IBC Relayer AVAX L1 Proof
    • 🔌RPC
    • 🔄API endpoints
    • ⏭️Avalanche Warp Messaging
  • Integrations
    • 🚀Building with Andromeda
    • ⚛️Connecting Existing Cosmos dApps to Avalanche
      • Case Study: Osmosis
      • ABCI Calls
  • FAQ
    • 🤓FAQ
    • 🛣️Roadmap
  • Overview
    • 💡What is CometBFT?
    • 💡What is Avalanche Consensus?
    • ✨Features
  • Fundamentals
    • 🛠️Getting set up
  • Roadmap
    • 🤝Interchain Staking
Powered by GitBook
LogoLogo

Links

  • Home
  • Twitter

©2024 Gaia Labs LTD

On this page
  • 🔌 Landslide Network Testnet Endpoints
  • RPC Endpoint
  • gRPC Endpoint
  • REST API Endpoint
  • Usage Examples
  • ⚠️ Note

Was this helpful?

Export as PDF
  1. Product Guides

API endpoints

🔌 Landslide Network Testnet Endpoints

The following endpoints are available for connecting to the Landslide Network testnet:

RPC Endpoint

https://cometrpc.testnet.landslide.network

The RPC (Remote Procedure Call) endpoint allows for direct interaction with the blockchain through JSON-RPC calls. Use this for submitting transactions, querying chain state, and other blockchain interactions.

gRPC Endpoint

https://grpc.testnet.landslide.network

The gRPC endpoint provides high-performance, bi-directional streaming capabilities. Ideal for applications requiring efficient data streaming and complex service definitions.

REST API Endpoint

https://api.testnet.landslide.network

The REST API endpoint offers a RESTful interface for blockchain interactions. Perfect for web applications and clients that prefer standard HTTP methods.

Usage Examples

RPC Connection (JavaScript)

const provider = new JsonRpcProvider("https://cometrpc.testnet.landslide.network");

REST API Query (cURL)

curl https://api.testnet.landslide.network/cosmos/bank/v1beta1/balances/{address}

gRPC Connection (Python)

import grpc
channel = grpc.insecure_channel('grpc.testnet.landslide.network:443')

⚠️ Note

These endpoints are for the testnet environment and should not be used for production applications. Network performance and availability may vary as this is a test network.

PreviousRPCNextAvalanche Warp Messaging

Last updated 6 months ago

Was this helpful?

🔄