
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
authereum
Advanced tools
The Authereum library
npm install authereum
Initializing SDK:
import Authereum from 'authereum'
const authereum = new Authereum(/* options */)
authereum.login()
Getting web3 provider:
import Web3 from 'web3'
import Authereum from 'authereum'
const authereum = new Authereum(/* options */)
const provider = authereum.getProvider()
const web3 = new Web3(provider)
Using Ethers.js Signer:
import { AuthereumSigner } from 'authereum'
const signer = new AuthereumSigner(/* options */)
const tx = {
gasPrice: '0x2540be400',
gasLimit: '0x186a0',
to: '0x90f8bf6a479f320ead074411a4b0e7944ea8c9c1',
value: '0x00',
data: '0x',
}
const result = await signer.sendTransaction(tx)
console.log(result.hash)
Options:
mainnet
, kovan
, rinkeby
, ropsten
, goerli
[https://cdn.jsdelivr.net/npm/authereum@latest/authereum.js](jsDelivr CDN)
<script src="https://cdn.jsdelivr.net/npm/authereum@latest/authereum.js"></script>
[https://unpkg.com/authereum@latest/authereum.js](unpkg CDN)
<script src="https://unpkg.com/authereum@latest/authereum.js"></script>
Full documentation is available on our docs page.
Watch and build:
npm run dev
Build:
npm run build
Lint:
npm run lint
npm test
FAQs
Authereum library
The npm package authereum receives a total of 1,421 weekly downloads. As such, authereum popularity was classified as popular.
We found that authereum demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.