1.0.22 • Published 1 year ago

eth-token-wallet v1.0.22

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Wallet functionality (eth / erc20) on any evm chain

Example:

const supportedChains: ChainInfo[] = [
  {
    id: 100,
    rpcUrl: 'https://rpc.ankr.com/gnosis' // a public gnosis node
  },
  {
    id: 1,
    rpcUrl: '' // Your eth mainnet node goes here - infura, etc.
  },
  ... (add additional evm chains here)
]

// Encrypted wallet persists in localStorage
const store = new BrowserStore()
const wallet = new TokenWallet(store)

// unlock and decrypt wallet if already setup
if (wallet.isInitialized()) wallet.Start('password123')
// otherwise initialize and encrypt a new wallet
else wallet.initialize(supportedChains, 'password123', 'all all all all all all all all all all all all')

Functions:

// create unsigned tx with recommended gas limit and price
await wallet.ethTx({ to, value })
await wallet.erc20Tx({ to, value, tokenAddress })
await wallet.customDataTx({ to, value, data })

await wallet.signAndBroadcast(tx)

await wallet.getAddress()

await wallet.getCurrentChain()

await wallet.getBip44Path()

await wallet.erc20Balance({ tokenAddress })

wallet.wipe() // wipe encrypted wallet from storage

wallet.initialize(supportedChains, password, mnemonic)

wallet.start()

wallet.isStarted()

wallet.isInitialized()

wallet.addChain({ id, rpcUrl })

wallet.switchChain(newChainId)

wallet.setBip44Path(newPath)
1.0.22

1 year ago

1.0.21

1 year ago

1.0.20

1 year ago

1.0.19

1 year ago

1.0.18

1 year ago

1.0.17

1 year ago

1.0.16

1 year ago

1.0.15

1 year ago

1.0.14

1 year ago

1.0.13

1 year ago

1.0.12

1 year ago

1.0.11

1 year ago

1.0.10

1 year ago

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago