Docs
RPC Providers

RPC Providers

You need to configure an RPC provider to allow your dapp to fetch data from Starknet.

Starknet React providers are factories that, given a chain, return a Starknet.js ProviderInterface object.

Providers

This section provides an alphabetical list of RPC Providers supported by Starknet React.

Public

Starknet React ships with a public provider that you can use for quick demos. This provider is kindly provided by Lava network. For any project that makes more than an handful of requests, you should use one of the providers below.

JSON-RPC

This is generic RPC provider. Use it to connect to private endpoints or to services not yet supported by Starknet React.

1
import { Chain, jsonRpcProvider } from "@starknet-react/core";
2

3
function rpc(chain: Chain) {
4
return {
5
http: `https://${chain.network}.example.org`
6
}
7
}
8

9
const providers = [
10
jsonRpcProvider({ rpc })
11
];

Alchemy

Create an Alchemy API key from the dashboard.

1
import { alchemyProvider } from "@starknet-react/core";
2

3
const providers = [
4
alchemyProvider({ apiKey })
5
];

Infura

Create an Infura API key from the dashboard.

1
import { infuraProvider } from "@starknet-react/core";
2

3
const providers = [
4
infuraProvider({ apiKey })
5
];

Lava

Create a Lava API key from the dashboard.

1
import { lavaProvider } from "@starknet-react/core";
2

3
const providers = [
4
lavaProvider({ apiKey })
5
];