Vipalone / vue-dapp

Vue 3 library for building Dapps on Ethereum.

Home Page:https://vue-dapp.vercel.app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

VueDapp Brand

Vue Dapp

Vue 3 library for building Dapps on Ethereum.

MIT License Version Size

Documentation

Brief versions and functionalities are as follows:

  • v0.10.x: Uses ethers v6 and supports WalletConnect v2.
  • v0.9.x: Uses ethers v5 and supports WalletConnect v2.
  • Before v0.8.x: Uses ethers v5 and does not support WalletConnect v2.

I recommend keeping an eye on vue-dapp-starter, as it strives to maintain a development-friendly version whenever possible.

Please be cautious when using the documentation below, as it hasn't been updated for some time.

Installation

yarn add ethers vue-dapp

If you want to support more wallet providers not only MetaMask, you should install respective packages to enable the dynamic import.

  • Support WalletConnect
yarn add @walletconnect/web3-provider
  • Support Coinbase Wallet
yarn add @coinbase/wallet-sdk
  • Support Gnosis Safe
yarn add @gnosis.pm/safe-apps-provider @gnosis.pm/safe-apps-sdk

Quick Start

Step 1. Add plugin to your app:

import { VueDapp } from "vue-dapp";
const app = createApp(App);
app.use(VueDapp);
app.mount("#app");

Step 2. By default, VueDapp includes Mainnet and Goerli networks, but you can extend it to include other networks:

app.use(VueDapp, {
 autoConnect: true, // Automatically connect MetaMask wallet when the page is loaded
  networks: {
    80001: {
      chainId: ethers.utils.hexValue(80001),
      blockExplorerUrls: ['https://mumbai.polygonscan.com/'],
      chainName: 'Mumbai',
      rpcUrls: ['https://rpc-mumbai.maticvigil.com/'],
      nativeCurrency: {
        name: 'Mumbai',
        decimals: 18,
        symbol: 'MATIC',
      },
    },
    42161: {
      ...
    },
  },
});

For more examples please check: https://github.com/wagmi-dev/wagmi/blob/main/packages/core/src/constants/chains.ts

Step 3. Add <vd-board /> to your App.vue and add a button to open the board:

<button @click="open">Connect Wallet</button>
<vd-board :connectors="connectors" dark />

Step 4. Construct your connectors and use composable functions in your scripts:

import {
  MetaMaskConnector,
  WalletConnectConnector,
  CoinbaseWalletConnector,
  useBoard,
} from "vue-dapp";

setup() {
  const { open } = useBoard();
  const infuraId = "";
  const connectors = [
    new MetaMaskConnector({
      appUrl: "http://localhost:3000",
    }),
    new WalletConnectConnector({
      qrcode: true,
      rpc: {
        1: `https://mainnet.infura.io/v3/${infuraId}`,
        4: `https://rinkeby.infura.io/v3/${infuraId}`,
      },
    }),
    new CoinbaseWalletConnector({
      appName: "Vue Dapp",
      jsonRpcUrl: `https://mainnet.infura.io/v3/${infuraId}`,
    }),
  ];
  return {
    connectors,
    open,
  };
}

Take a look at Configurations for more informations about Vue CLI, Vite, and Nuxt3 configurations.

To see the demo code, check it out here.

Support 🙏

Gitcoin Grants 18: https://explorer.gitcoin.co/#/round/10/0x8de918f0163b2021839a8d84954dd7e8e151326d/0x8de918f0163b2021839a8d84954dd7e8e151326d-43

MIT license

Copyright (c) 2021-present, Johnson Chen (@chnejohnson)

About

Vue 3 library for building Dapps on Ethereum.

https://vue-dapp.vercel.app/

License:MIT License


Languages

Language:TypeScript 70.2%Language:Vue 25.2%Language:JavaScript 3.0%Language:SCSS 1.4%Language:Shell 0.1%Language:CSS 0.1%