WDK Sui Wallet Module
A simple and secure package to manage BIP-44 wallets for the Sui blockchain
WDK Sui Wallet is a simple and secure package to manage BIP-44 wallets for the Sui blockchain. This package provides a clean API for creating, managing, and interacting with Sui wallets using BIP-39 seed phrases and Sui-specific derivation paths.

Setup
1. Clone the repository
git clone https://github.com/thisonedev/wdk.git2. Enter wdk-wallet-sui directory
cd wdk-wallet-sui3. Install dependencies
npm installTests
To run the test suites for this module, use the following commands:
- Run unit tests (Jest):
npm run test:unit- Run integration tests (brittle):
npm run test:integration- Run test coverage:
npm run test:coverage