0.1.1 • Published 2 months ago

filsnap-adapter-react v0.1.1

Weekly downloads
-
License
(Apache-2.0 AND M...
Repository
github
Last release
2 months ago

filsnap-adapter-react

NPM Version License: MIT License Adapter

React hook for Filsnap.

Installation

pnpm install filsnap-adapter-react

Usage

import { FilsnapProvider } from 'filsnap-adapter-react'

const config = {
  network: 'testnet',
}

function Main() {
  return (
    <FilsnapProvider snap="npm:filsnap" config={config}>
      <App />
    </FilsnapProvider>
  )
}
import { useFilsnap } from 'filsnap-adapter-react'

function App() {
  const { isLoading, hasFlask, isConnected, connect, account, error } =
    useFilsnap()

  if (isLoading) {
    return <div>Loading...</div>
  }

  if (!isConnected) {
    return <button onClick={() => connect()}>Connect to Filecoin Snap</button>
  }

  return <div>Connected to {account.address}</div>
}

Check out the demo for a working example and the API for more details.

Contributing

Read contributing guidelines here.

Open in GitHub Codespaces

License

Dual-licensed: MIT, Apache Software License v2, by way of the Permissive License Stack.

0.1.1

2 months ago

0.1.0

8 months ago

0.0.3

9 months ago

0.0.2

9 months ago

0.0.1

9 months ago