Skip to content
dapp-kit-ui / 1.0.15

dapp-kit-ui 1.0.15

Install from the command line:
Learn more about npm packages
$ npm install @vechain/dapp-kit-ui@1.0.15
Install via package.json:
"@vechain/dapp-kit-ui": "1.0.15"

About this version

@vechain/dapp-kit-ui

The Vechain DApp Kit serves as a sophisticated layer built upon @vechain/connex, providing a simplified and efficient avenue for engaging with a multitude of Vechain wallets. This innovative toolkit enhances the ease of interaction, offering developers a seamless bridge to connect with diverse Vechain wallet functionalities. For more information, please refer to the official Vechain Docs

Usage

yarn add @vechain/dapp-kit-ui
  • In your root main.ts
import type { WalletConnectOptions, DAppKitOptions } from '@vechain/dapp-kit';
import { DAppKitUI } from '@vechain/dapp-kit-ui';

const walletConnectOptions: WalletConnectOptions = {
    projectId: '<PROJECT_ID>',
    metadata: {
        name: 'Sample VeChain dApp',
        description: 'A sample VeChain dApp',
        url: window.location.origin,
        icons: [`${window.location.origin}/images/logo/my-dapp.png`],
    },
};

const options: DAppKitOptions = {
    nodeUrl: 'https://testnet.vechain.org/',
    genesis: 'test',
    walletConnectOptions,
    usePersistence: true,
};

DAppKitUI.configure(options);
  • In your root index.html. This will add a button to your page, when clicked it will open a modal with the wallet connect QR code.
<body>
    <vdk-button></vdk-button>
</body>

Details


Assets

  • dapp-kit-ui-1.0.15.tgz

Download activity

  • Total downloads 0
  • Last 30 days 0
  • Last week 0
  • Today 0