Zeeve Documentation
  • Zeeve Platform
    • Manage Your Account
    • Manage Workspaces
    • Technical Support
  • Rollups
    • Polygon CDK zkRollups
      • Introduction
      • Quick Start Guide
        • Purchase Subscription
        • Create your zkRollup Chain
      • Manage CDK zkRollups
      • Demo Network
        • Details
        • Bridge
        • RPC Access
        • Deploy Contract
    • zkSync Hyperchain
      • Introduction
      • Quick Start Guide
        • Setup zkSync Hyperchain
      • Manage zkSync Hyperchain
      • Demo Network
        • Details
        • Bridge
        • Deploying Contract
        • Faucet
      • RPC Access
    • OP Stack
      • Introduction
      • Quick Start Guide
        • Setup OP Stack
      • Manage OP Stack
      • RPC Endpoints
      • Demo Network
        • Details
    • Arbitrum Orbit
      • Introduction
      • Quick Start Guide
        • Setup Arbitrum Orbit
      • Manage Arbitrum Orbit
      • RPC Endpoints
      • Demo Network
        • Details
  • Traceye
    • Shared Indexing
      • Hosted Subgraphs
        • Quick Start Guide
          • Purchase Subscription
        • Manage Hosted Subgraphs
          • Webhook
          • Settings
      • Hosted SubQuery
        • Quick Start Guide
          • Purchase Subscription
        • Manage Hosted SubQuery
          • Settings
    • Dedicated Indexing
      • Graph Nodes
        • Quick Start Guide
          • Purchase Subscription
        • Graph Node Manual
          • Deploy Graph Node
          • View Analytics
          • Manage Addon Services
          • Ledger Data Pruning
        • Subgraph Manual
          • Manage Subgraph
          • Webhook Management
          • Index Data Pruning
          • Settings
          • Substreams-Powered Subgraphs
      • Subquery Nodes
        • Quick Start Guide
          • Purchase Subscription
        • Subquery Node Manual
          • Deploy Subquery Node
          • View Analytics
          • Manage Addon Services
        • Subquery Manual
          • Manage Subquery
          • Settings
  • RPC Nodes
    • Deploy Your RPC Node
    • Manage Your RPC Node
      • Manage Node
      • Delete Node
  • Archive Nodes
    • Deploy Your Archive Node
    • Manage Your Archive Node
      • Manage Node
      • Delete Node
  • Validator Nodes
    • Deploy Your Validator Node
    • Manage Your Validator Node
      • Manage Node
    • Coreum
      • Deploy Coreum Validator Node
      • Manage Coreum Validator Node
        • Edit Validator Details
        • Unbound Token
        • Withdraw Reward and Commission
        • Change Reward Wallet
        • Enable Restake
        • Delete Node
    • Shido
      • Deploy Shido Validator Node
      • Manage Shido Validator Node
        • Analytics
        • Edit Validator Details
        • Unbound Tokens
        • Withdraw Reward and Commission
        • Change Reward Wallet
        • Delete Node
    • Beam L1
      • Deploy Beam L1 Validator Node
      • Manage Beam L1 Validator Node
Powered by GitBook
On this page

Was this helpful?

  1. Rollups
  2. Polygon CDK zkRollups
  3. Demo Network

RPC Access

PreviousBridgeNextDeploy Contract

Last updated 1 year ago

Was this helpful?

This uses a demo network which is deployed for all users to access Polygon CDK network RPC. You can use the same thing with the newly deployed network.

Step 1: Register/Login - Create a new account or Log in to the existing account on the .

Step 2: Zeeve Dashboard - On the Zeeve platform dashboard click on the Polygon CDK option under the APPCHAINS & ROLLUPS section available in the left sidebar. This will show your deployed Polygon CDK network.

Step 3: Demo Network Card - Once you go to the network list you can see a network card is already there with a demo label. This is a predeployed network that is accessible to all users in the zeeve.

Step 4: My Nodes - You will land on the overview tab where you can see the overview of the network, navigate to the My Nodes tab.

Step 5: Node List - Here you can see the deployed node in the Polygon CDK, and navigate to the RPC nodes.

Step 6: RPC Node - Once you are in the RPC node tab click on the info icon. It will open the RPC node details page. Here you can the RPC node details like general info, RPC configurations, and RPC endpoints

Step 7: RPC Endpoint - in this section, You will get the endpoint for Polygon CDK RPC. You can use the polygon CDK JSON RPC methods with this.

Step 8: RPC Username And Password - You can find the RPC username in the RPC endpoint section. The password will be the same as you set in the network creation time. in the demo network case, username is demouser and the password is demopass

RPC calls using curl -

# curl to get polygon cdk block height
curl https://demouser:demopass@rpcnode.demo-vali-02aa6b.zeeve.net/rpc \
  -X POST \
  -H "Content-Type: application/json" \
  --data '{"method":"eth_blockNumber","params":[],"id":1,"jsonrpc":"2.0"}'

RPC calls using WebSocket -

# web socket to get block number
npx wscat -c wss://demouser:demopass@rpcnode.demo-vali-02aa6b.zeeve.net/ws
# calling the json rpc method after websocket connection
{"method":"eth_blockNumber","params":[],"id":1,"jsonrpc":"2.0"}

Zeeve Platform