You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+12-9
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,12 @@
1
-
# lwk-rn
1
+
# Liquid Wallet Kit - react native
2
2
3
-
Liquid Wallet Kit react native module
3
+
**LWK-rn** is a React Native module for [Liquid Wallet Kit](https://github.com/Blockstream/lwk). Its goal is to provide all the necessary building blocks for mobile development of a liquid wallet.
4
4
5
-
_Note: Caution this is an Alpha at this stage
6
-
Please consider reviewing, experimenting and contributing ⚡️_
5
+
** NOTE: LWK and LWK-rn is in public beta and still undergoing significant development. Use it at your own risk. **
7
6
8
-
Thanks for taking a look!
7
+
_Please consider reviewing, experimenting and contributing_
8
+
9
+
_Thanks for taking a look!_
9
10
10
11
## Installation
11
12
@@ -21,14 +22,16 @@ Using yarn:
21
22
yarn add lwk-rn
22
23
```
23
24
24
-
[IOS Only] Install pods:
25
+
[iOS Only] Install pods:
25
26
26
27
```bash
27
28
npx pod-install
28
29
or
29
30
cd ios && pod install
30
31
```
31
32
33
+
Note: Use android sdk version >= 23 and iOS >= v13 .
34
+
32
35
### Examples
33
36
34
37
You could run the example in iOS or android by the following
@@ -64,8 +67,8 @@ console.log(address);
64
67
65
68
Get a transaction list:
66
69
```js
67
-
constaddress=awaitwollet.getTransactions();
68
-
console.log(address);
70
+
consttransactions=awaitwollet.getTransactions();
71
+
console.log(transactions);
69
72
```
70
73
71
74
Get balance as `[AssetId : UInt64]`:
@@ -87,7 +90,7 @@ Build, sign and broadcast a Transaction:
87
90
let finalized_pset =awaitwollet.finalize(signed_pset);
0 commit comments