Skip to content

Repository files navigation

swarm-connect

npm version npm downloads license

A React connect-button and wizard for Ethereum Swarm on the Gnosis chain. Drop in a single <SwarmConnectButton /> and let users connect their wallet, verify a running Bee node, and pick a postage stamp β€” all from one modal.

πŸ“¦ npm: @ffaerber/swarm-connect

🐝 Live demo on Swarm β€” the example app is hosted on Swarm itself, at bzz reference:

476bbf2c20715a1003aaf3fa7a65dd7c36285a9cd6f2d5a1acb2f72b29c84394

Open it on any Bee node at <bee>/bzz/476bbf2c20715a1003aaf3fa7a65dd7c36285a9cd6f2d5a1acb2f72b29c84394/, or β€” once the content has propagated across the network β€” through a public gateway such as bzz.link.

Features

  • πŸͺœ Gated sequential flow β€” steps unlock in order: wallet β†’ Gnosis network β†’ wallet balance (xDAI / xBZZ) β†’ Bee node β†’ (node wallet) β†’ postage stamp.
  • 🦊 Wallet connect β€” wallet connection via wagmi connectors, pinned to the Gnosis chain (ID 100), with an xDAI balance/gas check.
  • 🐝 Bee node detection β€” checks a Bee node's /health endpoint and surfaces its version.
  • πŸ”§ Editable node URL β€” users can change the Bee node hostname from the modal and reconnect (defaults to http://localhost:1633); the chosen URL is persisted in localStorage.
  • 🎟️ Postage stamp selection β€” fetches available stamps from /stamps and lets the user pick one.
  • πŸŽ›οΈ Per-dApp requirements (requirements: { xdai, xbzz, nodeWallet, postageStamp }) β€” each dApp declares what "connected" means for it. Disabled requirements drop their step from the modal and from isFullyConnected. E.g. a dApp that manages stamps itself uses { xdai: true, postageStamp: false }.
  • πŸͺ™ xBZZ as a platform token (xbzz: true) β€” require the user's connected wallet to hold xBZZ (e.g. a token your platform uses). This checks the wallet balance and is independent of postage stamps.
  • πŸ’Έ Node-wallet funding (nodeWallet: true) β€” for dApps that buy stamps themselves: shows the Bee node's own wallet (/wallet) and lets the user top it up with xDAI + xBZZ from their connected wallet (one-time setup). The dApp then buys stamps programmatically via stamps.createStamp() β€” the modal itself never purchases.
  • βœ… At-a-glance status β€” the button shows status dots for every gated step.
  • 🧩 Headless hooks β€” use the useSwarmConnect / useBeeNode / usePostageStamps / useNodeWallet hooks to build your own UI.
  • 🎨 Self-contained dark theme β€” scoped CSS variables and inline styles, no CSS import required.

Installation

npm install @ffaerber/swarm-connect

Peer dependencies

This package expects the following to be installed in your app:

npm install react react-dom wagmi viem @tanstack/react-query
Package Version
react >=18
react-dom >=18
wagmi >=2
viem >=2
@tanstack/react-query >=5

Quick start

Wrap your app in SwarmConnectProvider and drop in the button:

import { SwarmConnectProvider, SwarmConnectButton } from '@ffaerber/swarm-connect'

export function App() {
  return (
    <SwarmConnectProvider>
      <SwarmConnectButton />
    </SwarmConnectProvider>
  )
}

SwarmConnectProvider sets up wagmi (Gnosis chain + injected connector) and a React Query client for you. If your app already has its own WagmiProvider and QueryClientProvider, you can skip the provider and use SwarmConnectButton directly.

Components

<SwarmConnectProvider>

Provides the wagmi and React Query context. Configured for the Gnosis chain with an injected connector.

Prop Type Description
children ReactNode Your app.
config SwarmConnectConfig App-wide defaults (beeApiUrl, requirements) for every useSwarmConnect / SwarmConnectButton below it. Anything a component passes itself wins.

<SwarmConnectButton>

The connect button. Opens a dark-themed two-column modal β€” Ethereum (your wallet: connect, Gnosis network, xDAI/xBZZ balance) on the left, Swarm (the Bee node, node-wallet funding, postage stamp) on the right β€” with gated steps that unlock in order. Which steps appear depends on requirements: wallet, network, and Bee node are always present; the balance, node-wallet funding, and stamp-selection steps are included only when their requirement is enabled, and the numbering adapts. The widget ships its own scoped styles (no CSS import required); the Space Grotesk / Inter / JetBrains Mono fonts are used when present and fall back to system fonts otherwise.

Prop Type Default Description
beeApiUrl string last saved URL, else http://localhost:1633 Base URL of the Bee node API. Setting it pins the initial value and skips the localStorage restore.
requirements SwarmConnectRequirements { xdai: true, xbzz: false, nodeWallet: false, postageStamp: true } Which requirements this dApp needs; disabled ones drop their step. See Requirements.
label string auto Overrides the button label. Defaults to Connect to Swarm, or the truncated address once fully connected.

<SwarmConnectModal>

The modal rendered by SwarmConnectButton. Exported for advanced use if you want to manage open/close state yourself.

Hooks

useSwarmConnect(config?)

The top-level hook combining wallet, network, balance, node, node-wallet, and stamp state.

import { useSwarmConnect } from '@ffaerber/swarm-connect'

function Status() {
  const {
    beeNode,          // { isRunning, isChecking, version?, error?, check() }
    stamps,           // { stamps, isLoading, error?, fetchStamps(), selectedStampId?, selectStamp(), createStamp(), isCreating, createError? }
    nodeWallet,       // { address?, xdai?, xbzz?, isLoading, error?, isFunded, refresh() } β€” the node's own wallet
    beeApiUrl,        // current Bee node URL
    setBeeApiUrl,     // change the Bee node URL at runtime, then re-check
    requirements,     // resolved { xdai, xbzz, nodeWallet, postageStamp } booleans
    isWalletConnected,
    address,
    isOnGnosis,
    chainId,
    balance,          // { xdai?, bzz?, isLoading, hasGas, hasBzz } β€” connected wallet on Gnosis
    isFullyConnected, // wallet + Gnosis + node + every enabled requirement
  } = useSwarmConnect({
    beeApiUrl: 'http://localhost:1633',
    // this dApp needs user gas, but manages stamps itself:
    requirements: { xdai: true, xbzz: false, postageStamp: false },
  })

  return <span>{isFullyConnected ? 'Ready' : 'Not connected'}</span>
}

useBeeNode(beeApiUrl?)

Checks a Bee node's health.

const { isRunning, isChecking, version, error, check } = useBeeNode('http://localhost:1633')

usePostageStamps(beeApiUrl?)

Fetches, selects, and (for dApps that buy stamps themselves) creates postage stamps.

const { stamps, isLoading, error, fetchStamps, selectedStampId, selectStamp,
        createStamp, isCreating, createError } =
  usePostageStamps('http://localhost:1633')

// Buy a batch via the node (cost = 2^depth Γ— amount PLUR, paid by the node wallet):
const batchID = await createStamp({ amount: '1000000000', depth: 20, label: 'my-app' })

useNodeWallet(beeApiUrl?)

Reads the Bee node's own wallet β€” the one that pays for postage stamps β€” from GET /wallet and GET /addresses.

const { address, xdai, xbzz, isLoading, error, isFunded, refresh } =
  useNodeWallet('http://localhost:1633')

isFunded is true once the node wallet holds both xDAI (gas) and xBZZ (storage payment) β€” funding it is a one-time setup; returning users with a funded node skip the step automatically.

Configuration

interface SwarmConnectConfig {
  beeApiUrl?: string                      // initial Bee node URL; defaults to http://localhost:1633
  requirements?: SwarmConnectRequirements // which steps this dApp needs; see below
}

beeApiUrl is only the initial value, and only when it is set β€” omit it and the last URL the user saved is restored instead. Users can edit the node URL from the modal's Bee node step (or programmatically via setBeeApiUrl from useSwarmConnect), which re-checks the node at the new address and persists the choice in localStorage so it survives sign-out / sign-in. This is useful when the Bee node runs on a non-default host or port.

Requirements

Every dApp needs a connected wallet, the Gnosis chain, and a reachable Bee node β€” those steps are always present. The rest is per-dApp via requirements; a disabled requirement drops its step from the modal and is ignored by isFullyConnected:

interface SwarmConnectRequirements {
  xdai?: boolean         // default true  β€” connected wallet must hold xDAI for gas
  xbzz?: boolean         // default false β€” connected wallet must hold xBZZ (a platform token)
  nodeWallet?: boolean   // default false β€” the Bee node's own wallet funded (xDAI + xBZZ) to buy stamps
  postageStamp?: boolean // default true  β€” user must select a postage stamp in the modal
}

The two xBZZ-related options are deliberately separate, because they're about different wallets:

  • xdai β€” adds an xDAI row to the Balance step (Ethereum column): the connected wallet's native xDAI on Gnosis, with a faucet link while empty. Disable for read-only dApps that never transact from the user's wallet.
  • xbzz β€” adds an xBZZ row to the Balance step (Ethereum column): the connected wallet's xBZZ balance. Use this when your dApp requires the user to hold a platform token. This has nothing to do with postage stamps.
  • nodeWallet β€” adds the Node wallet step (Swarm column): the Bee node's own xDAI/xBZZ balances (GET /wallet), with a one-time top-up (a native xDAI transfer plus an ERC-20 xBZZ transfer to the node's address) while empty. Enable when your dApp buys stamps itself β€” purchasing is your dApp's job via stamps.createStamp({ amount, depth, label }) (POST /stamps/{amount}/{depth}); the modal never buys.
  • postageStamp β€” adds the Postage stamp step where the user picks an existing stamp. Disable when the dApp manages stamps itself (e.g. it creates and tracks its own batches).

Example β€” a dApp that needs user gas but manages stamps itself:

<SwarmConnectButton requirements={{ xdai: true, postageStamp: false }} />

"Fully connected" requires all of the following (skipping disabled requirements):

  1. A connected wallet.
  2. The wallet on the Gnosis chain (chain ID 100).
  3. (xdai) A non-zero xDAI balance on the connected wallet.
  4. (xbzz) A non-zero xBZZ balance on the connected wallet.
  5. A reachable Bee node (/health responds OK).
  6. (nodeWallet) The Bee node's wallet funded with xDAI + xBZZ.
  7. (postageStamp) A selected postage stamp.

Development

npm install
npm run dev          # start the demo app (example/) on the Vite dev server
npm run type-check   # type-check without emitting
npm run build        # build the library + type declarations to dist/

Demo app

npm run dev serves a playground in example/ for testing sign-in end to end. It shows five connection scenarios side by side β€” classic stamp selection, dApp-managed stamps (postageStamp: false), xBZZ as a platform token (xbzz: true), dApp-buys-stamps with node funding (nodeWallet: true), and a minimal node-only flow β€” each with its own useSwarmConnect instance and modal, so you can see how the gated steps adapt to requirements. Once a scenario is fully connected its card shows the live state: wallet address, chain, wallet xDAI/xBZZ, Bee node URL + version, the node's overlay address, node-wallet balances, and the selected postage stamp (as applicable). Point it at a running Bee node (defaults to http://localhost:1633, editable in each modal).

This same playground is the live demo on Swarm above. To rebuild and redeploy it as a static, content-addressed website:

npm run build:example   # static build into example-dist/ (relative paths for subpath serving)
BEE_API=https://your-bee-node POSTAGE_BATCH=<batchID> npm run deploy:swarm

deploy:swarm packs example-dist/ and uploads it as a Swarm collection (index.html as the index document), printing the resulting bzz reference and gateway URLs.

ENOSPC: System limit for number of file watchers reached? Your machine's inotify watch limit is exhausted. Either:

  • Quick fix β€” run the dev server in polling mode: npm run dev:poll.

  • Permanent fix β€” raise the system limit:

    echo 'fs.inotify.max_user_watches=524288' | sudo tee /etc/sysctl.d/99-inotify.conf
    sudo sysctl -p /etc/sysctl.d/99-inotify.conf

The library is built with Vite in library mode and ships ESM (swarm-connect.js), CommonJS (swarm-connect.umd.cjs), and TypeScript declarations. react, react-dom, wagmi, viem, and @tanstack/react-query are externalized.

License

MIT

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages