wallet3-test
v0.0.2
Published
This package is helpful to get wallet address of web3 wallets
Downloads
6
Readme
wallet3 Integration Guide
Add wallet3 to your project dependencies
With Yarn
yarn add wallet3or with NPM
npm install wallet3getWalletAddress for a particular wallet
With JavaScript
const {Wallet3, WALLETS } = require('wallet3');
const wallet3 = new Wallet3(WALLETS.METAMASK)
const walletAddress = await wallet3.getWalletAddress()or with TypeScript
import {Wallet3, WALLETS } from 'wallet3';
const wallet3 = new Wallet3(WALLETS.METAMASK)
const walletAddress = await wallet3.getWalletAddress()