# @web3auth/base

Latest version **9.7.0** (published 2025-03-05) · ISC license · 0 weekly downloads

## Install

```sh
npm install @web3auth/base
pnpm add @web3auth/base
yarn add @web3auth/base
bun add @web3auth/base
```

## Health

**Score 55/100 (C)** — status: stable.

Positive: has types; esm support; no vulnerabilities; high maintenance score; high quality score.

Warnings: low downloads.

Negative: stale.

## Facts

| | |
|---|---|
| Version | 9.7.0 |
| Published | 2025-03-05 |
| First published | 2021-12-29 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Node | >=18.x |
| Dependencies | 7 |
| Unpacked size | 216.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 490 |
| Author | Torus Labs |
| Maintainers | chaitanyapotti, archit_web3, himanshunpm009 |

## Links

- npm: https://www.npmjs.com/package/@web3auth/base
- Repository: https://github.com/Web3Auth/Web3Auth
- Homepage: https://github.com/Web3Auth/Web3Auth#readme
- Issues: https://github.com/Web3Auth/Web3Auth/issues
- npm.io page: https://npm.io/package/@web3auth/base

## Dependencies (7)

- [loglevel](https://npm.io/package/loglevel.md) ^1.9.2
- [jwt-decode](https://npm.io/package/jwt-decode.md) ^4.0.0
- [@web3auth/auth](https://npm.io/package/@web3auth/auth.md) ^9.6.4
- [ts-custom-error](https://npm.io/package/ts-custom-error.md) ^3.3.1
- [@toruslabs/constants](https://npm.io/package/@toruslabs/constants.md) ^14.2.0
- [@toruslabs/http-helpers](https://npm.io/package/@toruslabs/http-helpers.md) ^7.0.0
- [@toruslabs/base-controllers](https://npm.io/package/@toruslabs/base-controllers.md) ^7.2.1

## Recent versions

- 9.7.0 (latest) — 2025-03-05
- 9.5.0-alpha.1 (next) — 2024-12-06
- 9.6.0 — 2025-02-14
- 9.5.4 — 2025-02-06
- 9.5.3 — 2025-01-20
- 9.5.2 — 2025-01-08
- 9.5.1 — 2024-12-19
- 9.5.0 — 2024-12-16
- 9.4.5 — 2024-11-29
- 9.4.4 — 2024-11-23
- 9.4.3 — 2024-11-22
- 9.4.2 — 2024-11-22
- 9.4.0 — 2024-11-08
- 9.3.0 — 2024-10-22
- 9.2.3 — 2024-10-14
- … 121 more at https://npm.io/package/@web3auth/base/versions

## README

# Web3Auth Base (Basic Types and Interface for Web3Auth)

[![npm version](https://img.shields.io/npm/v/@web3auth/base?label=%22%22)](https://www.npmjs.com/package/@web3auth/base/v/latest)
[![minzip](https://img.shields.io/bundlephobia/minzip/@web3auth/base?label=%22%22)](https://bundlephobia.com/result?p=@web3auth/base@latest)

> Web3Auth is where passwordless auth meets non-custodial key infrastructure for Web3 apps and wallets. By aggregating OAuth (Google, Twitter, Discord) logins, different wallets and innovative Multi Party Computation (MPC) - Web3Auth provides a seamless login experience to every user on your application.

Web3Auth Base contains the basic typescript types and interfaces for Web3Auth. This comes in handy by providing you a standard way of importing the values you need to work with the SDKs. We highly recommend using it while working with `Typescript`.

## 📖 Documentation

Read more about the Web3Auth in the [official Web3Auth Documentation](https://web3auth.io/docs/sdk/web/).

## 💡 Features

- Plug and Play, OAuth based Web3 Authentication Service
- Fully decentralized, non-custodial key infrastructure
- End to end Whitelabelable solution
- Threshold Cryptography based Key Reconstruction
- Multi Factor Authentication Setup & Recovery (Includes password, backup phrase, device factor editing/deletion etc)
- Support for WebAuthn & Passwordless Login
- Support for connecting to multiple wallets
- DApp Active Session Management

...and a lot more

## 🔗 Installation

```shell
npm install --save @web3auth/base
```

## 🩹 Example

```ts
import { Web3Auth } from "@web3auth/modal";
import { CHAIN_NAMESPACES } from "@web3auth/base";

const web3auth = new Web3Auth({
  clientId,
  chainConfig: {
    chainNamespace: CHAIN_NAMESPACES.EIP155,
    chainId: "0x1",
    rpcTarget: "https://rpc.ankr.com/eth", // This is the public RPC we have added, please pass on your own endpoint while creating an app
  },
});

await web3auth.initModal();
```

Check out the examples for your preferred blockchain and platform on our [examples page](https://web3auth.io/docs/examples).

## 🌐 Demo

Checkout the [Web3Auth Demo](https://demo.web3auth.io) to see how Web3Auth can be used in your application.

## 💬 Troubleshooting and Support

- Have a look at our [Community Portal](https://community.web3auth.io/) to see if anyone has any questions or issues you might be having. Feel free to reate new topics and we'll help you out as soon as possible.
- Checkout our [Troubleshooting Documentation Page](https://web3auth.io/docs/troubleshooting) to know the common issues and solutions.
- For Priority Support, please have a look at our [Pricing Page](https://web3auth.io/pricing.html) for the plan that suits your needs.

---
_Source: https://npm.io/package/@web3auth/base · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
