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

ethersjs-nomo-webons

v0.2.4

Published

a glue package for ethersjs-V6 and nomo-webon-kit

Downloads

16

Readme

ethersjs-nomo-webons

The goal of this package is to support already existing ethers.js code with only minimal changes. This makes it possible to develop decentralized applications as Nomo WebOns.

For example, this package can be used for the following tasks:

  • Invoking functions on smart contracts
  • Querying data from a blockchain
  • Deploying new smart contracts

All of this is backed by a seed phrase of the Nomo App, and the seed phrase remains secure even if the WebOn-code was malicious.

When to (not) use

Some features are implemented directly with the nomo-webon-kit, without using ethersjs-nomo-webons. For examples, the following features work just with the nomo-webon-kit alone:

  • Fetching balances (via nomo.getBalanceWaitUntilSynced)
  • Sending assets (via nomo.sendAssets)
  • Connecting to wallets like MetaMask in the fallback mode (via nomo.getEvmAddress)

That being said, ethersjs-nomo-webons is still needed for the following features:

  • Invoking EVM smart contracts other than tokens
  • Constructing EVM transactions based on contract-ABIs
  • Connecting to EVM chains that are not natively supported by Nomo
  • Querying EVM logs, querying EVM data structures and more

How to use

First, install the package via npm:

npm i ethersjs-nomo-webons

Then you can import one of the following objects, depending on your use case:

import { EthersjsNomoSigner } from "ethersjs-nomo-webons"; // this can be used for constructing your own signer-object

import { zscSigner } from "ethersjs-nomo-webons"; // a ready-made signer-object for interacting with the ZENIQ Smartchain

Please consult the Demo-WebOn and the ethers.js-V6 documentation for more details. See the minting example for invoking a smart contract with this package.

Multichain Support

Whatever EVM-chain you are using, you can easily create a signer-object with just a few lines of code. For example:

import { EthersjsNomoSigner } from "ethersjs-nomo-webons";

const ethProvider = ethers.getDefaultProvider();
const ethSigner = new EthersjsNomoSigner(ethProvider);

ethers.js-V5/V6

This package only works with ethers.js-V6. If you still need to use ethers.js-V5, then you can use the package ethersjs-nomo-webons-v5