Socket
Book a DemoInstallSign in
Socket

@nexeraid/web3-user-sdk

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nexeraid/web3-user-sdk

## Usage To install the Web3 User SDK you need to navigate inside of your client-side application and run the following command:

latest
npmnpm
Version
1.0.23
Version published
Maintainers
1
Created
Source

Nexera Web3 User SDK

Usage

To install the Web3 User SDK you need to navigate inside of your client-side application and run the following command:

yarn add @nexeraid/web3-user-sdk

Initialize

import { Web3User } from "@nexeraid/web3-user-sdk";

const web3User = new Web3User({
  chainId: 80001, // Mumbai
  clientId, // PROVIDE THE CLIENT_ID RECEIVED FROM NEXERA TEAM
  verifier, // PROVIDE THE VERIFIER RECEIVED FROM NEXERA TEAM
  rpc: "https://rpc-mumbai.maticvigil.com" // Mumbai RPC (optional)
})

const web3auth = await web3User.getInstance()

Generate a new Private Key

Generates a new Private Key based on your JWT Token.

The jwtVerifierIdField parameter is the Key of the unique identifier which publicly represents a user on a verifier. Possible values are sub or email, a variable which is unique accross users. This field should be included in the jwt token too.

Domain is the target domain for your proxy login provider like Auth0, such as 'example.auth0.com', 'example.eu.auth0.com', 'example.mycompany.com' or even 'http://localhost:3002/'.

const userProvider = await web3User.connect(jwtToken, jwtVerifierIdField, domain);

Signing messages

Allows the user to sign a message using their Private Key. The message must have the TypedDataInput type. This type of signature can be used for signing meta transactions and similar formats.

export type TypedDataInput = {
  domain: EIP712Domain,
  message: MessageStruct,
  types: { SponsoredCallERC2771?: BasicStruct[]; ForwardRequest?: BasicStruct[] },
}

export type EIP712Domain = {
  name: string,
  version: string,
  chainId: number,
  verifyingContract: string,
}

export type MessageStruct = {
  // SponsoredCallERC2771
  userNonce?: BigNumberish,
  userDeadline?: BigNumberish,
  chainId: BigNumberish,
  target?: string,
  user?: string,
  // ForwardRequest
  from?: string,
  to?: string,
  value?: number,
  gas?: number,
  nonce?: number,

  data: BytesLike,
}

export type BasicStruct = {
  name: string,
  type: string,
}
const signature = await web3User.sign(msg);

Retrieve PrivateKey

This method reconstructs the Private Key from its Shares and allows the user to retrieve his private key.

const privateKey = await web3User.retrievePrivateKey();

Get Address

This method allows the user to retrieve his public address.

const address = await web3User.getAddress();

Send transaction

Sign and send a transaction.

const txHash = await web3User.sendTransaction(to, data, gasLimit);

FAQs

Package last updated on 31 Oct 2023

Did you know?

Socket

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.

Install

Related posts