Authereum
  • Introduction
  • Getting started
  • Live demos
  • Dapps using Authereum
  • Install
  • Integration
  • Web3 provider
  • Ethers Signer
  • StarkWare Provider
  • SDK
  • API Keys
  • Batched transactions
  • Verifying signatures
  • Testing
  • Browser compatibility
  • Contributing
  • Bug reports
  • FAQ
  • Dictionary
  • On the Web
  • Telegram Admins
  • Assets
Powered by GitBook
On this page
  • Installing
  • Upgrading package
  • CDN
  • Importing

Was this helpful?

Install

PreviousDapps using AuthereumNextIntegration

Last updated 5 years ago

Was this helpful?

Installing

Install the package from NPM:

$ npm install authereum --save

Please note that Authereum is meant for browser applications. For node.js support, see .

Upgrading package

Upgrade to the latest version using the @latest tag:

$ npm install authereum@latest --save

CDN

The Authereum SDK library is available on the :

<script src="https://cdn.jsdelivr.net/npm/authereum@latest/authereum.js"></script>

Note: to purge the jsdeliver cache, visit this .

Alternatively, it's also available on the :

<script src="https://unpkg.com/authereum@latest/authereum.js"></script>

Afterwards the window function window.Authereum will be available to instantiate Authereum.

Importing

Using ES6 modules:

import Authereum from 'authereum'

Using commonjs modules:

const Authereum = require('authereum').default
Authereum SDK
this FAQ
jsDelivr CDN
purge url
unpkg CDN