ethers.js/docs/v5/api/experimental
2020-06-11 16:29:05 -04:00
..
index.html Organizing versioned docs. 2020-06-11 16:29:05 -04:00
README.md Check-in old v5 docs changes. 2020-06-09 23:56:58 -04:00

Documentation: html

Experimental

BrainWallet

BrainWallet . generate( username , password [ , progressCallback ] ) => BrainWallet

Generates a brain wallet, with a slightly improved experience, in which the generated wallet has a mnemonic.

BrainWallet . generateLegacy( username , password [ , progressCallback ] ) => BrainWallet

Generate a brain wallet which is compatibile with the ethers v3 and earlier.

EIP1193Bridge

NonceManager

**new **NonceManager( signer )

Create a new NonceManager.

nonceManager . signer => Signer

The signer whose nonce is being managed.

nonceManager . provider => Provider

The provider associated with the signer.

nonceManager . setTransactionCount( count ) => void

Set the current transaction count (nonce) for the signer.

This may be useful it interacting with the signer outside of using this class.

nonceManager . increaseTransactionCount( [ count = 1 ] ) => void

Bump the current transaction count (nonce) by count.

This may be useful it interacting with the signer outside of using this class.