0.0.2 • Published 1 year ago

wallet3-test v0.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

wallet3 Integration Guide

Add wallet3 to your project dependencies

With Yarn

yarn add wallet3

or with NPM

npm install wallet3

getWalletAddress 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()
0.0.2

1 year ago