@xchainjs/xchain-wallet 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # `@xchainjs/xchain-wallet`
2
+
3
+ XChainJS client wrapper to work with several XChainJS client at a time
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ yarn add @xchainjs/xchain-wallet
9
+ ```
10
+
11
+ ## Examples
12
+
13
+ To see an example, go to the wallet example of the examples folder of the repository
14
+
15
+ ## Documentation
16
+
17
+ To be done
package/lib/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ import { Wallet } from './wallet';
2
+ export { Wallet };