0.2.3 • Published 4 months ago

ethersjs-nomo-webons v0.2.3

Weekly downloads
-
License
ISC
Repository
github
Last release
4 months ago

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.

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

0.2.3

4 months ago

0.2.2

5 months ago

0.2.1

5 months ago

0.2.0

7 months ago