Starknet React is a collection of React hooks for Starknet. It is inspired by wagmi, powered by starknet.js.
Documentation, including a small demo, is available online.
- Add
@starknet-react/core
to your dependencies.
pnpm add @starknet-react/core
You also need to add get-starknet
and starknet
to your dependencies.
pnpm add get-starknet starknet
- Wrap your app with
StarknetConfig
import { StarknetConfig } from '@starknet-react/core'
function App() {
return (
<StarknetConfig>
<YourApp />
</StarknetConfig>
)
}
- Access the hooks from your components.
import { useAccount } from '@starknet-react/core'
function YourComponent() {
const { address } = useAccount()
return <div>gm {address}</div>
}
This library is licensed under the MIT license.