Setup
This walks you through the process of creating a simple ReactiveDOT application.
π§Work-in-progress
This project is under active development, and the API may change at any time.
Installationβ
First add ReactiveDOT, along with required packages as dependencies to your React project.
- npm
- Yarn
- pnpm
npm install @reactive-dot/react polkadot-api
yarn add @reactive-dot/react polkadot-api
pnpm add @reactive-dot/react polkadot-api
Download & sync metadataβ
Next, download the latest metadata from the chain you want to connect to and generate the types.
# `papi add` is the command
# `dot` is the name we're giving to this chain (can be any JS variable name)
# `-n polkadot` specifies to download the metadata from the well-known chain polkadot
npx papi add dot -n polkadot
# Wait for the latest metadata to download, then generate the types:
npx papi
tip
It's a really good idea to add papi
to the "postinstall" script in package.json to automate generating the types after installation.
info
For more information on metadata syncing and type generation, please refer to this documentation provided by Polkadot-API.
Create configβ
- Light client
- WebSocket
config.ts
// `dot` is the name we gave to `npx papi add`
import { dot } from "@polkadot-api/descriptors";
import { defineConfig } from "@reactive-dot/core";
import { createLightClientProvider } from "@reactive-dot/core/providers/light-client.js";
import { InjectedWalletProvider } from "@reactive-dot/core/wallets.js";
const lightClientProvider = createLightClientProvider();
export const config = defineConfig({
chains: {
// "polkadot" here can be any unique string value
polkadot: {
descriptor: dot,
provider: lightClientProvider.addRelayChain({ id: "polkadot" }),
},
},
wallets: [new InjectedWalletProvider()],
});
config.ts
import { dot } from "@polkadot-api/descriptors";
import { getWsProvider } from "@polkadot-api/ws-provider/web";
import { defineConfig } from "@reactive-dot/core";
import { InjectedWalletProvider } from "@reactive-dot/core/wallets.js";
export const config = defineConfig({
chains: {
polkadot: {
descriptor: dot,
provider: getWsProvider("wss://polkadot-rpc.publicnode.com"),
},
},
wallets: [new InjectedWalletProvider()],
});
Add type informationβ
The type declarations extension here will be used to provide you with the right type definitions when using hooks.
reactive-dot.d.ts
import type { config } from "./config.js";
declare module "@reactive-dot/core" {
export interface Register {
config: typeof config;
}
}
Wrap app in context providersβ
app.tsx
import { config } from "./config";
import { ChainProvider, ReactiveDotProvider } from "@reactive-dot/react";
import { Suspense } from "react";
export function App() {
return (
<ReactiveDotProvider config={config}>
<ChainProvider chainId="polkadot">
{/* Make sure there is at least one Suspense boundary wrapping the app */}
<Suspense>{/* ... */}</Suspense>
</ChainProvider>
</ReactiveDotProvider>
);
}
Use ReactiveDOTβ
my-component.tsx
import { config } from "./config";
import { useAccounts, useLazyLoadQuery } from "@reactive-dot/react";
export function MyComponent() {
const accounts = useAccounts();
const [timestamp, totalIssuance] = useLazyLoadQuery((builder) =>
builder.storage("Timestamp", "Now").storage("Balances", "TotalIssuance"),
);
return (
<div>
<ul>
{accounts.map((account, index) => (
<li key={index}>
<div>Address: {account.address}</div>
{account.name && <div>Name: {account.name}</div>}
</li>
))}
</ul>
<section>
<div>
Latest block timestamp: {new Date(Number(timestamp)).toLocaleString()}
</div>
<div>Total issuance: {totalIssuance.toString()}</div>
</section>
</div>
);
}