@vechain/sdk-wallet v1.0.0-beta.3
@vechain/sdk-network
Welcome to the wallet package of the vechain SDK!
Introduction
Wallet enables users to manage their accounts and sign transactions by using different kinds of wallet.
Key Features
The vechain SDK Wallet package provides features for wallet management and transaction signing. Basically, it provides a standard Wallet interface. All other wallet implementations should implement this interface. This allows developers to use different kinds of wallet without changing vechain development stack.
For instance, the provider package uses the wallet interface to get addresses. This means that the provider package can be used with any wallet implementation, BUT the wallet implementation must implement the wallet interface.
Commands
- Build: Execute yarn buildto build the package.
- Lint: Execute yarn lintto lint the package.
- Format: Execute yarn formatto format the package.
- Test:unit: Execute yarn test:unitto run unit tests.
- Test:integration: Execute yarn test:integrationto run integration tests.
- Test: Execute yarn testto run all tests on the package.- NOTE: Tests and Integration tests require thor-solo to be running locally. You can run and stop separately thor solo node with yarn start-thor-soloandyarn stop-thor-soloor run all tests withyarn test:solowhich will start thor solo node, run all tests and stop thor solo at the end. Same for integration tests. You can directly runyarn test:integration:soloto run integration tests with thor solo.
 
- NOTE: Tests and Integration tests require thor-solo to be running locally. You can run and stop separately thor solo node with 
Usage
Explore examples of how to use this package in real-world scenarios at vechain SDK examples.
Feel free to leverage these resources and don't hesitate to reach out if you have any questions or need further assistance.
Happy coding with the vechain SDK!