@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 +17 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.esm.js +12342 -0
- package/lib/index.js +12346 -0
- package/lib/wallet.d.ts +173 -0
- package/package.json +42 -0
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