Skip to content

A collection of React providers and hooks for StarkNet

License

Notifications You must be signed in to change notification settings

Iwueseiter/starknet-react

 
 

Repository files navigation

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 demos, is available online.

Getting Started

  1. Add @starknet-react/chains and @starknet-react/core to your dependencies.
pnpm add @starknet-react/chains @starknet-react/core

You also need to add get-starknet-core and starknet to your dependencies.

pnpm add get-starknet-core starknet
  1. Wrap your app with StarknetConfig
import { sepolia } from "@starknet-react/chains";
import {
  StarknetConfig,
  publicProvider,
  argent,
  braavos,
} from "@starknet-react/core";

function App() {
  const chains = [sepolia];
  const provider = publicProvider();
  const connectors = [braavos(), argent()];

  return (
    <StarknetConfig chains={chains} provider={provider} connectors={connectors}>
      <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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 78.3%
  • MDX 18.8%
  • JavaScript 2.0%
  • Other 0.9%