Usage
Learn how to use the WDK Core module
This package serves as the main entry point and orchestrator for all WDK wallet modules, allowing you to register and manage different blockchain wallets and protocols through a single interface.
Installation
Install the @tetherto/wdk-core package:
npm install @tetherto/wdkBasic Usage
Importing WDK Core
import WDK from '@tetherto/wdk'Creating a WDK Instance
// Generate a random seed phrase
const seedPhrase = WDK.getRandomSeedPhrase()
// Create WDK instance
const wdk = new WDK(seedPhrase)
// Or use your own seed phrase
const wdk = new WDK('your existing seed phrase here...')
