ArweaveKit Docs
Ask or search…
K
Comment on page

Setup

Setup the Arweave Wallet Kit component library

Installation

The Wallet Kit is available on npm.
yarn add arweave-wallet-kit
or
npm i arweave-wallet-kit

Setup provider

To use the library, you'll need to wrap your application with the Kit Provider.
import { ArweaveWalletKit } from "arweave-wallet-kit";
const App = () => {
return (
<ArweaveWalletKit>
<YourApp />
</ArweaveWalletKit>
);
};