seacrest / starknet-react

A collection of React providers and hooks for StarkNet

Home Page:https://apibara.github.io/starknet-react/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

StarkNet React

@starknet-react/core Release Status MIT LICENSE

StarkNet React is a collection of React hooks for StarkNet. It is inspired by wagmi, powered by starknet.js.

Documentation

Documentation, including a small demo, is available online.

Getting Started

  1. 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
  1. Wrap your app with StarknetConfig
import { StarknetConfig } from '@starknet-react/core'

function App() {
  return (
    <StarknetConfig>
      <YourApp />
    </StarknetConfig>
  )
}
  1. Access the hooks from your components.
import { useAccount } from '@starknet-react/core'

function YourComponent() {
  const { address } = useAccount()

  return <div>gm {address}</div>
}

License

This library is licensed under the MIT license.

About

A collection of React providers and hooks for StarkNet

https://apibara.github.io/starknet-react/

License:MIT License


Languages

Language:TypeScript 99.1%Language:Nix 0.6%Language:JavaScript 0.2%Language:Shell 0.1%