Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 534 Bytes

setup.md

File metadata and controls

35 lines (25 loc) · 534 Bytes
description
Setup the Arweave Wallet Kit component library

Setup

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>
  );
};