Skip to content
This repository has been archived by the owner on Sep 11, 2023. It is now read-only.

Latest commit

 

History

History
32 lines (24 loc) · 928 Bytes

README.md

File metadata and controls

32 lines (24 loc) · 928 Bytes

Neon-Signer - A Neo3-Signer implementation using Neon-JS
Made with ❤ by COZ.IO

Neon-Signer

Install

npm i @cityofzion/neon-signer

Initialize NeonSigner

To use NeonSigner you should pass an account to the NeonSigner constructor. You can use the Account class from @cityofzion/neon-js to create an account.

import { NeonSigner } from '@cityofzion/neon-signer'
import {default as Neon} from '@cityofzion/neon-js'

const acct = Neon.create.account('NKuyBkoGdZZSLyPbJEetheRhMjeznFZszf')

const neonSigner: Neo3Signer = new NeonSigner(acct)

Usage

The usage of NeonSigner is documented in the Neo3-Signer Docs.