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