npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

arjs-react

v0.0.11

Published

An Arweave.js dapp wallet aggregator for react. (similar to useWallet but for Arweave.)

Downloads

13

Readme

arjs-react

An Arweave.js dapp wallet aggregator for react. (similar to useWallet but for Arweave.)

Todos:

Usage:

Add it to your project:

yarn add arjs-react 

example project hosted on the permaweb:

https://arweave.net:443/PklkS62k62MKioyq0Sn5WbbD1jToMyefhgyaj3XqpS4

Use it in your React app:

//App.js

import React, { useState, useEffect, useMemo } from 'react'
import { ArjsProvider, useArjs } from 'arjs-react'

function _App() {
      const  wallet  = useArjs();
      const permission = { permissions: ["SIGN_TRANSACTION"] }
      const [key, setKey] = useState('')

  const activate = (connector, key) => wallet.connect(connector, key)
    const getKey = (e) =>{ setKey(e.target.value)}

    const [balance, setBalance] = useState("Requesting...");
    const [address, setAddress] = useState("Requesting...");

    wallet.ready(() => {
      if(wallet.status == "connected")(async () => {
      console.log(wallet)
      setBalance(wallet.getArweave().ar.winstonToAr( await wallet.getBalance("self")))
      setAddress(await wallet.getAddress())
      })()
    })

    return(
    <>
      <h1>Wallet</h1>
      {wallet.status == "connected" ? (
        <div>
          <div>Account: {address}</div>
          <div>Balance: {balance}</div>
          <button onClick={() => wallet.disconnect()}>disconnect</button>
        </div>
      ) : (
        <div>
          Connect:
          <button onClick={() => activate('arweave', key)}>Arweave (with Key)</button>
          <input type="text" value={key} placeholder={'key here'} onChange={getKey}/>
          <button onClick={() => activate('arconnect', permission)}>ArConnect</button>
        </div>
      )}
    </>
    )}

    //wrap the root component with <ArjsProvider />
    function App(){
      return (

        <ArjsProvider 
            //Add wallets here
            connectors={{
                arconnect: true,
                arweave: true
            }} 
            //enable/disable smartweave contract interaction here
            enableSWC={false}> 
        <_App />
        </ArjsProvider>
    )}

export default App 

API

<ArjsProvider />

This is the provider component. It should be placed above any component using useArjs(). Apart from children, it can accept four other props:

enableSWC

Enables smartweave transactions in wallet.arweave.smartweave. Defaults to false.

connectors

Configuration for the different connectors. accepts a key: dapp wallet name with a truthy value, may accept wallet configurations when new wallets are added.

  • arweave: {}
  • arconnect: {}

gateway

Gateway accepts an abject with the arweave gateway parameters identical to the input for Arweave.init({}), if not implemented the code will default to arweave.net. This can be useful for use with a testnet (testnet interoperability untested)

pollRate

The default poll rate used in all wallet.poll() when a rate is not explicitly set in the wallet.poll() function. is set 2000(ms) by default.

useArjs()

This is the hook to be used throughout the app. It returns an object representing the connected account (“wallet”), containing:

  • connect(connectorId, arg): Call this function with a connector ID to “connect” to a provider (see above for the connectors provided by default) and an arg which can either be the arconnect permissions to request or the wallet key to initialize "Arweave.js".
  • ready(callback) : Runs a function once a wallet is selected and state = "connected". callback nested in an if statement status = "connected" wrapped in a useEffect with [arweave, status] as dependents.
  • poll(callback, rate) : Runs a loop function with delay rate once a wallet is selected and state = "connected". if statement, if status = "connected" wrapped in a with useEffect with [arweave, status] as dependents. if rate is not set poll() will use the PollRate set in <ArjsProvider /> or it's default value 2000(ms). can be interchanged with ready() if the callback is required to be run in interval (e.g., a wallet polling the most updated balance).
  • connector: The "key" of the wallet you're connected to (e.g., "arweave", "arconnect").
  • connectors: The full list of connectors.
  • disconnect(): Call this function to “disconnect” from the current provider. This will this will not disconnect arconnect to disconnect from arconnect use arweave.disconnect() in the wallet object.
  • status: Contains the current status of the wallet connection. The possible values are:
    • "disconnected": no wallet connected (default state).
    • "connecting": trying to connect to the wallet.
    • "connected": connected to the wallet (i.e. the account is available).
    • "failed": a connection error happened.
  • All the children of arweave shown below except disconnect are available directly in the wallet object
  • arweave:
  • isloading: Integer that increases when smartweave.write smartweave.read smartweave.iread smartweave.sign smartweave.post are ran and decreases by on as each function completes execution. (may remove this for the non sw functions in a later update.)
  • loadStatus("add" | "sub"): loadStatus("add") increments isloading by one, loadStatus("sub") decrements isloading by one.
    • transaction(data): returns arweave.createTransaction(data)
    • post(transaction): returns arweave.transactions.post(transaction)
    • addTag(transaction, name, value): returns transaction.addTag(name, value)
    • sign(transaction): returns arweave.transactions.getUploader(transaction)
    • smartweave: returns:
      • write(input, id) executes interactWrite(arweave, wallet, id, input)
      • read(id) executes readContract(arweave, id) (Can be executed without initializing a wallet.)
      • iread(id) executes interactRead(arweave, wallet, id, input)
      • click here for Smartweave SDK readme.
    • getArweave: returns "the Arweave.js object provided by the connected wallet."
    • disconnect: returns window.arweaveWallet.disconnect() only available when connected with ArConnect.
    • getBalance: returns "current wallet balance in winston as string"
    • getAddress: returns "current wallet address as string"

Bonus 🍬

Added smartweave interactRead support for ArConnect.

Examples

To run the examples, switch to the respective directories. Then, simply run yarn dev.

Special thanks

arjs-react is a greatly inspired by useWallet() and it's file structure.