Skip to content
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.

Latest commit

 

History

History

software

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

A javascript library to interact with a software Ethereum wallet, based on the ethers.js library.

It extracts all the complexity from setting up, maintaining and interacting with it, while providing you with a predictable interface.

Installation

npm install ethers @purser/software

Quick Usage

import { open } from '@purser/software'

const wallet = await open({ mnemonic: '...' });

console.log(wallet); // { address: '...', privateKey: '...', publicKey: '...' }

Documentation

You can find more in-depth description for this module's API in the purser docs.

Contributing

This package is part of the purser monorepo package.

Please read our Contributing Guidelines for how to get started.

License

The purser-software library along with the whole purser monorepo are MIT licensed.