Skip to content

Commit c3e8702

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into develop
2 parents c0d2931 + 90b8857 commit c3e8702

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "starknetkit",
3-
"version": "3.1.0",
3+
"version": "3.1.2",
44
"repository": "github:argentlabs/starknetkit",
55
"private": false,
66
"browser": {
@@ -102,8 +102,8 @@
102102
"dependencies": {
103103
"@argent/x-ui": "^1.109.0",
104104
"@cartridge/controller": "^0.10.0",
105-
"@starknet-io/get-starknet": "^4.0.6",
106-
"@starknet-io/get-starknet-core": "^4.0.6",
105+
"@starknet-io/get-starknet": "^4.0.7",
106+
"@starknet-io/get-starknet-core": "^4.0.7",
107107
"@starknet-io/types-js": "0.8.4",
108108
"@trpc/client": "^10.38.1",
109109
"@trpc/server": "^10.38.1",

pnpm-lock.yaml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/helpers/publicRcpNodes.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,19 @@ export type PublicRpcNode = {
44
}
55

66
// Public RPC nodes
7-
export const BLAST_RPC_NODE: PublicRpcNode = {
8-
mainnet: "https://starknet-mainnet.public.blastapi.io",
9-
testnet: "https://starknet-sepolia.public.blastapi.io",
7+
export const CHAINSTACK_RPC_NODE: PublicRpcNode = {
8+
mainnet:
9+
"https://starknet-mainnet.core.chainstack.com/5b78befd1967e1ab160a38e1b7fa77db",
10+
testnet:
11+
"https://starknet-sepolia.core.chainstack.com/c35d78cd3e49108a4598e148cb569b90",
1012
} as const
1113

1214
export const LAVA_RPC_NODE: PublicRpcNode = {
1315
mainnet: "https://rpc.starknet.lava.build",
1416
testnet: "https://rpc.starknet-sepolia.lava.build",
1517
} as const
1618

17-
export const PUBLIC_RPC_NODES = [BLAST_RPC_NODE, LAVA_RPC_NODE] as const
19+
export const PUBLIC_RPC_NODES = [CHAINSTACK_RPC_NODE, LAVA_RPC_NODE] as const
1820

1921
export function getRandomPublicRPCNode() {
2022
const randomIndex = Math.floor(Math.random() * PUBLIC_RPC_NODES.length)

0 commit comments

Comments
 (0)