Getting started
Get started with Authereum using a few lines of code
npm install authereum import Authereum from 'authereum'
const authereum = new Authereum('kovan')import Authereum from 'authereum'
import Web3 from 'web3'
const authereum = new Authereum('kovan')
const provider = authereum.getProvider()
const web3 = new Web3(provider)
await provider.enable()
const accounts = await web3.eth.getAccounts()
console.log(accounts[0])Last updated