Skip to content

Commit

Permalink
feat: update RPCs (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
dtbuchholz authored Feb 21, 2025
1 parent 206f896 commit a989499
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
5 changes: 5 additions & 0 deletions .changeset/nasty-pets-sleep.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@recallnet/network-constants": patch
---

use stable RPC URLs instead of versioned subdomain
12 changes: 5 additions & 7 deletions packages/network-constants/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,13 @@ export const LOCALNET_CHAIN_ID = 248163216;
export const DEVNET_CHAIN_ID = 1942764459484029;

// CometBFT RPC URLs
export const TESTNET_RPC_URL = "https://api.v013.node-0.testnet.recall.network";
export const TESTNET_RPC_URL = "https://api.node-0.testnet.recall.network";
export const LOCALNET_RPC_URL = "http://127.0.0.1:26657";
export const DEVNET_RPC_URL = "http://127.0.0.1:26657";

// EVM RPC URLs
export const TESTNET_EVM_RPC_URL =
"https://evm.v013.node-0.testnet.recall.network";
export const TESTNET_EVM_WS_URL =
"wss://evm.v013.node-0.testnet.recall.network";
export const TESTNET_EVM_RPC_URL = "https://evm.node-0.testnet.recall.network";
export const TESTNET_EVM_WS_URL = "wss://evm.node-0.testnet.recall.network";
export const TESTNET_PARENT_EVM_RPC_URL =
"https://api.calibration.node.glif.io/rpc/v1";
export const LOCALNET_EVM_RPC_URL = "http://127.0.0.1:8645";
Expand All @@ -32,13 +30,13 @@ export const DEVNET_EVM_WS_URL = "ws://127.0.0.1:8545";

// Objects API URLs
export const TESTNET_OBJECT_API_URL =
"https://objects.v013.node-0.testnet.recall.network";
"https://objects.node-0.testnet.recall.network";
export const LOCALNET_OBJECT_API_URL = "http://127.0.0.1:8001";
export const DEVNET_OBJECT_API_URL = "http://127.0.0.1:8001";

// Registrar URLs
export const TESTNET_REGISTRAR_URL =
"https://faucet.v013.node-0.testnet.recall.network";
"https://faucet.node-0.testnet.recall.network";

// Explorer URLs
export const TESTNET_EXPLORER_URL = "https://explorer.testnet.recall.network";
Expand Down

0 comments on commit a989499

Please sign in to comment.