Skip to content

thaibinh0131/vue-web3-wallets-nuxt

Repository files navigation

Nuxt Web3 Wallets

npm version npm downloads License thaibinh0131

Nuxt Web3 Wallets for connect dApp with wallets.

Quick Setup

  1. Add nuxt-web3-wallets dependency to your project
# Using pnpm
pnpm add nuxt-web3-wallets -D

# Using yarn
yarn add nuxt-web3-wallets --dev

# Using npm
npm install nuxt-web3-wallets --save-dev
  1. Add nuxt-web3-wallets to the modules section of nuxt.config.ts
export default defineNuxtConfig({
  modules: ["nuxt-web3-wallets"],
  vite: {
    // Due to cjs build of @walletconnect/ethereum-provider, need to add this line to nuxt.config.ts
    optimizeDeps: {
      include: ['@walletconnect/ethereum-provider']    
    }
  }
});

That's it! You can now use nuxt-web-wallets in your Nuxt app ✨

Development

# Install dependencies
npm install

# Generate type stubs
npm run dev:prepare

# Develop with the playground
npm run dev

# Build the playground
npm run dev:build

# Run ESLint
npm run lint

# Run Vitest
npm run test
npm run test:watch

# Release new version
npm run release

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published