Javascript Ethereum wallet optimized for mobile
A lightweight, pure JS Ethereum wallet optimized for mobile. Inspired in part by the Consensys eth-lightwallet. This code has not been independently audited, use at your own risk. Features include:
npm install NoahZinsmeister/eth-wallet-light
const wallet = require('eth-wallet-light')
Checks the validity of the passed mnemonic.
Options
Concatenates the output of keystore.signMessageHash
into a single hex string.
Options
Keystore
functionsThis is the constructor for new keystores. Does not create a keypair.
Options
0x
prefix optional). Defaults to a non-secure RNG provided by crypto-js if not passed.Returns Keystore
This method initializes a keystore with a new random keypair. The password is used to encrypt the initialized keystore.
Options
rng
to produce 16 bytes of randomness that is fed to the BIP39 mnemonic generator.Returns Promise(Keystore)
This method initializes a keystore, restoring a keypair from a mnemonic. The password is used to encrypt the initialized keystore.
Options
Returns Promise(Keystore)
This method restores a keystore from serialization. Note that when restoring from a serialized keystore, the rng
argument to the keystore constructor is unnecessary, and can safely be left as undefined
.
Options
keystore.serialize()
.Returns Keystore
This method serializes a keystore into a string.
Returns String
Sign a message with the keystore’s private key.
Options
0x
prefix is optional (it is stripped out).Returns String
Get the mnemonic from the keystore.
Options
Returns String
Get the private key from the keystore.
Options
Returns String
Get the public address from the keystore.
Returns String
Check test/test.js
for exhaustive usage examples. Some starter code:
const wallet = require('eth-wallet-light')
const password = 'mypassword' // this should be a real password
var keystore = await new wallet.Keystore().initializeFromEntropy(entropy, password)
console.log('Address: ', keystore.getAddress())
var messageHash = '0x9c22ff5f21f0b81b113e63f7db6da94fedef11b2119b4088b89664fb9a3cb658'
var signature = wallet.concatSignature(keystore.signMessageHash(messageHash, password))
console.log('Signature:', signature)
In Node, here are two example rng
functions that are both CSPRNGs. In React Native, this code should instead rely on something like react-native-securerandom.
```javascript
const crypto = require(‘crypto’)
const csprng = (bytes) => { return crypto.randomBytes(bytes).toString(‘hex’) }
const csprngPromise = (bytes) => {
return new Promise(function(resolve, reject) {
crypto.randomBytes(bytes, (err, buf) => {
err ? reject(err) : resolve(buf.toString(‘hex’))
})
})
}