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.
_11import { Chain, jsonRpcProvider } from "@starknet-react/core";_11_11function rpc(chain: Chain) {_11 return {_11 http: `https://${chain.network}.example.org`_11 }_11}_11_11const providers = [_11 jsonRpcProvider({ rpc })_11];
Alchemy
Create an Alchemy API key from the dashboard.
_10import { alchemyProvider } from "@starknet-react/core";_10_10const providers = [_10 alchemyProvider({ apiKey })_10];
Infura
Create an Infura API key from the dashboard.
_10import { infuraProvider } from "@starknet-react/core";_10_10const providers = [_10 infuraProvider({ apiKey })_10];
Lava
Create a Lava API key from the dashboard.
_10import { lavaProvider } from "@starknet-react/core";_10_10const providers = [_10 lavaProvider({ apiKey })_10];