@secondts/bark-react-native 0.2.0-beta.2 → 0.3.0-beta.1
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 +2 -2
- package/cpp/generated/bark.cpp +8716 -6407
- package/cpp/generated/bark.hpp +912 -235
- package/lib/commonjs/WalletNotifications.js +82 -0
- package/lib/commonjs/WalletNotifications.js.map +1 -0
- package/lib/commonjs/generated/bark-ffi.js.map +1 -1
- package/lib/commonjs/generated/bark.js +347 -6
- package/lib/commonjs/generated/bark.js.map +1 -1
- package/lib/commonjs/index.js +13 -1
- package/lib/commonjs/index.js.map +1 -1
- package/lib/module/WalletNotifications.js +77 -0
- package/lib/module/WalletNotifications.js.map +1 -0
- package/lib/module/generated/bark-ffi.js.map +1 -1
- package/lib/module/generated/bark.js +346 -6
- package/lib/module/generated/bark.js.map +1 -1
- package/lib/module/index.js +3 -0
- package/lib/module/index.js.map +1 -1
- package/lib/typescript/commonjs/src/WalletNotifications.d.ts +41 -0
- package/lib/typescript/commonjs/src/WalletNotifications.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/generated/bark-ffi.d.ts +62 -1
- package/lib/typescript/commonjs/src/generated/bark-ffi.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/generated/bark.d.ts +254 -4
- package/lib/typescript/commonjs/src/generated/bark.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/index.d.ts +1 -0
- package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
- package/lib/typescript/module/src/WalletNotifications.d.ts +41 -0
- package/lib/typescript/module/src/WalletNotifications.d.ts.map +1 -0
- package/lib/typescript/module/src/generated/bark-ffi.d.ts +62 -1
- package/lib/typescript/module/src/generated/bark-ffi.d.ts.map +1 -1
- package/lib/typescript/module/src/generated/bark.d.ts +254 -4
- package/lib/typescript/module/src/generated/bark.d.ts.map +1 -1
- package/lib/typescript/module/src/index.d.ts +1 -0
- package/lib/typescript/module/src/index.d.ts.map +1 -1
- package/package.json +4 -4
- package/src/WalletNotifications.ts +86 -0
- package/src/generated/bark-ffi.ts +172 -1
- package/src/generated/bark.ts +584 -17
- package/src/index.tsx +3 -0
package/cpp/generated/bark.hpp
CHANGED
|
@@ -1,250 +1,927 @@
|
|
|
1
|
-
// This file was autogenerated by some hot garbage in the
|
|
2
|
-
// Trust me, you don't want to mess with
|
|
1
|
+
// This file was autogenerated by some hot garbage in the
|
|
2
|
+
// `uniffi-bindgen-react-native` crate. Trust me, you don't want to mess with
|
|
3
|
+
// it!
|
|
3
4
|
#pragma once
|
|
4
|
-
#include
|
|
5
|
+
#include "UniffiCallInvoker.h"
|
|
6
|
+
#include <ReactCommon/CallInvoker.h>
|
|
5
7
|
#include <iostream>
|
|
8
|
+
#include <jsi/jsi.h>
|
|
6
9
|
#include <map>
|
|
7
10
|
#include <memory>
|
|
8
|
-
#include <ReactCommon/CallInvoker.h>
|
|
9
|
-
#include "UniffiCallInvoker.h"
|
|
10
11
|
|
|
11
12
|
namespace react = facebook::react;
|
|
12
13
|
namespace jsi = facebook::jsi;
|
|
13
14
|
|
|
14
15
|
class NativeBark : public jsi::HostObject {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
private:
|
|
17
|
+
// For calling back into JS from Rust.
|
|
18
|
+
std::shared_ptr<uniffi_runtime::UniffiCallInvoker> callInvoker;
|
|
18
19
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
20
|
+
protected:
|
|
21
|
+
std::map<std::string, jsi::Value> props;
|
|
22
|
+
jsi::Value cpp_uniffi_internal_fn_func_ffi__string_to_byte_length(
|
|
23
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
24
|
+
size_t count);
|
|
25
|
+
jsi::Value cpp_uniffi_internal_fn_func_ffi__string_to_arraybuffer(
|
|
26
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
27
|
+
size_t count);
|
|
28
|
+
jsi::Value cpp_uniffi_internal_fn_func_ffi__arraybuffer_to_string(
|
|
29
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
30
|
+
size_t count);
|
|
31
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_clone_notificationholder(
|
|
32
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
33
|
+
size_t count);
|
|
34
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_free_notificationholder(
|
|
35
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
36
|
+
size_t count);
|
|
37
|
+
jsi::Value
|
|
38
|
+
cpp_uniffi_bark_ffi_fn_method_notificationholder_cancel_next_notification_wait(
|
|
39
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
40
|
+
size_t count);
|
|
41
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_notificationholder_next_notification(
|
|
42
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
43
|
+
size_t count);
|
|
44
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_clone_onchainwallet(
|
|
45
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
46
|
+
size_t count);
|
|
47
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_free_onchainwallet(
|
|
48
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
49
|
+
size_t count);
|
|
50
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_constructor_onchainwallet_custom(
|
|
51
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
52
|
+
size_t count);
|
|
53
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_constructor_onchainwallet_default(
|
|
54
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
55
|
+
size_t count);
|
|
56
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_onchainwallet_balance(
|
|
57
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
58
|
+
size_t count);
|
|
59
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_onchainwallet_new_address(
|
|
60
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
61
|
+
size_t count);
|
|
62
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_onchainwallet_send(
|
|
63
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
64
|
+
size_t count);
|
|
65
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_onchainwallet_sync(
|
|
66
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
67
|
+
size_t count);
|
|
68
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_clone_wallet(jsi::Runtime &rt,
|
|
69
|
+
const jsi::Value &thisVal,
|
|
70
|
+
const jsi::Value *args,
|
|
71
|
+
size_t count);
|
|
72
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_free_wallet(jsi::Runtime &rt,
|
|
73
|
+
const jsi::Value &thisVal,
|
|
74
|
+
const jsi::Value *args,
|
|
75
|
+
size_t count);
|
|
76
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_constructor_wallet_create(
|
|
77
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
78
|
+
size_t count);
|
|
79
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_constructor_wallet_create_with_onchain(
|
|
80
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
81
|
+
size_t count);
|
|
82
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_constructor_wallet_open(
|
|
83
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
84
|
+
size_t count);
|
|
85
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_constructor_wallet_open_with_onchain(
|
|
86
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
87
|
+
size_t count);
|
|
88
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_all_exits_claimable_at_height(
|
|
89
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
90
|
+
size_t count);
|
|
91
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_all_vtxos(
|
|
92
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
93
|
+
size_t count);
|
|
94
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_ark_info(
|
|
95
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
96
|
+
size_t count);
|
|
97
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_balance(
|
|
98
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
99
|
+
size_t count);
|
|
100
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_board_all(
|
|
101
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
102
|
+
size_t count);
|
|
103
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_board_amount(
|
|
104
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
105
|
+
size_t count);
|
|
106
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_bolt11_invoice(
|
|
107
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
108
|
+
size_t count);
|
|
109
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_broadcast_tx(
|
|
110
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
111
|
+
size_t count);
|
|
112
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_cancel_all_pending_rounds(
|
|
113
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
114
|
+
size_t count);
|
|
115
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_cancel_pending_round(
|
|
116
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
117
|
+
size_t count);
|
|
118
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_check_lightning_payment(
|
|
119
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
120
|
+
size_t count);
|
|
121
|
+
jsi::Value
|
|
122
|
+
cpp_uniffi_bark_ffi_fn_method_wallet_claimable_lightning_receive_balance_sats(
|
|
123
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
124
|
+
size_t count);
|
|
125
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_config(
|
|
126
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
127
|
+
size_t count);
|
|
128
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_drain_exits(
|
|
129
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
130
|
+
size_t count);
|
|
131
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_estimate_board_fee(
|
|
132
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
133
|
+
size_t count);
|
|
134
|
+
jsi::Value
|
|
135
|
+
cpp_uniffi_bark_ffi_fn_method_wallet_estimate_lightning_receive_fee(
|
|
136
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
137
|
+
size_t count);
|
|
138
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_estimate_lightning_send_fee(
|
|
139
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
140
|
+
size_t count);
|
|
141
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_estimate_offboard_fee(
|
|
142
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
143
|
+
size_t count);
|
|
144
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_estimate_refresh_fee(
|
|
145
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
146
|
+
size_t count);
|
|
147
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_estimate_send_onchain_fee(
|
|
148
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
149
|
+
size_t count);
|
|
150
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_fingerprint(
|
|
151
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
152
|
+
size_t count);
|
|
153
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_get_exit_status(
|
|
154
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
155
|
+
size_t count);
|
|
156
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_get_exit_vtxos(
|
|
157
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
158
|
+
size_t count);
|
|
159
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_get_expiring_vtxos(
|
|
160
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
161
|
+
size_t count);
|
|
162
|
+
jsi::Value
|
|
163
|
+
cpp_uniffi_bark_ffi_fn_method_wallet_get_first_expiring_vtxo_blockheight(
|
|
164
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
165
|
+
size_t count);
|
|
166
|
+
jsi::Value
|
|
167
|
+
cpp_uniffi_bark_ffi_fn_method_wallet_get_next_required_refresh_blockheight(
|
|
168
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
169
|
+
size_t count);
|
|
170
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_get_vtxo_by_id(
|
|
171
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
172
|
+
size_t count);
|
|
173
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_get_vtxos_to_refresh(
|
|
174
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
175
|
+
size_t count);
|
|
176
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_has_pending_exits(
|
|
177
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
178
|
+
size_t count);
|
|
179
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_history(
|
|
180
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
181
|
+
size_t count);
|
|
182
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_history_by_payment_method(
|
|
183
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
184
|
+
size_t count);
|
|
185
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_import_vtxo(
|
|
186
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
187
|
+
size_t count);
|
|
188
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_lightning_receive_status(
|
|
189
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
190
|
+
size_t count);
|
|
191
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_list_claimable_exits(
|
|
192
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
193
|
+
size_t count);
|
|
194
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_mailbox_authorization(
|
|
195
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
196
|
+
size_t count);
|
|
197
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_mailbox_identifier(
|
|
198
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
199
|
+
size_t count);
|
|
200
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_maintenance(
|
|
201
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
202
|
+
size_t count);
|
|
203
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_maintenance_delegated(
|
|
204
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
205
|
+
size_t count);
|
|
206
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_maintenance_refresh(
|
|
207
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
208
|
+
size_t count);
|
|
209
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_maintenance_with_onchain(
|
|
210
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
211
|
+
size_t count);
|
|
212
|
+
jsi::Value
|
|
213
|
+
cpp_uniffi_bark_ffi_fn_method_wallet_maintenance_with_onchain_delegated(
|
|
214
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
215
|
+
size_t count);
|
|
216
|
+
jsi::Value
|
|
217
|
+
cpp_uniffi_bark_ffi_fn_method_wallet_maybe_schedule_maintenance_refresh(
|
|
218
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
219
|
+
size_t count);
|
|
220
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_network(
|
|
221
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
222
|
+
size_t count);
|
|
223
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_new_address(
|
|
224
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
225
|
+
size_t count);
|
|
226
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_new_address_with_index(
|
|
227
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
228
|
+
size_t count);
|
|
229
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_next_round_start_time(
|
|
230
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
231
|
+
size_t count);
|
|
232
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_notifications(
|
|
233
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
234
|
+
size_t count);
|
|
235
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_offboard_all(
|
|
236
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
237
|
+
size_t count);
|
|
238
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_offboard_vtxos(
|
|
239
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
240
|
+
size_t count);
|
|
241
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_pay_lightning_address(
|
|
242
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
243
|
+
size_t count);
|
|
244
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_pay_lightning_invoice(
|
|
245
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
246
|
+
size_t count);
|
|
247
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_pay_lightning_offer(
|
|
248
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
249
|
+
size_t count);
|
|
250
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_peak_address(
|
|
251
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
252
|
+
size_t count);
|
|
253
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_peek_address(
|
|
254
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
255
|
+
size_t count);
|
|
256
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_pending_board_vtxos(
|
|
257
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
258
|
+
size_t count);
|
|
259
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_pending_boards(
|
|
260
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
261
|
+
size_t count);
|
|
262
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_pending_exits_total_sats(
|
|
263
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
264
|
+
size_t count);
|
|
265
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_pending_lightning_receives(
|
|
266
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
267
|
+
size_t count);
|
|
268
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_pending_lightning_send_vtxos(
|
|
269
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
270
|
+
size_t count);
|
|
271
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_pending_lightning_sends(
|
|
272
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
273
|
+
size_t count);
|
|
274
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_pending_round_input_vtxos(
|
|
275
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
276
|
+
size_t count);
|
|
277
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_pending_round_states(
|
|
278
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
279
|
+
size_t count);
|
|
280
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_progress_exits(
|
|
281
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
282
|
+
size_t count);
|
|
283
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_progress_pending_rounds(
|
|
284
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
285
|
+
size_t count);
|
|
286
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_properties(
|
|
287
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
288
|
+
size_t count);
|
|
289
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_refresh_server(
|
|
290
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
291
|
+
size_t count);
|
|
292
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_refresh_vtxos(
|
|
293
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
294
|
+
size_t count);
|
|
295
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_refresh_vtxos_delegated(
|
|
296
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
297
|
+
size_t count);
|
|
298
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_send_arkoor_payment(
|
|
299
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
300
|
+
size_t count);
|
|
301
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_send_onchain(
|
|
302
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
303
|
+
size_t count);
|
|
304
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_sign_exit_claim_inputs(
|
|
305
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
306
|
+
size_t count);
|
|
307
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_spendable_vtxos(
|
|
308
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
309
|
+
size_t count);
|
|
310
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_start_exit_for_entire_wallet(
|
|
311
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
312
|
+
size_t count);
|
|
313
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_start_exit_for_vtxos(
|
|
314
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
315
|
+
size_t count);
|
|
316
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_sync(
|
|
317
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
318
|
+
size_t count);
|
|
319
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_sync_exits(
|
|
320
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
321
|
+
size_t count);
|
|
322
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_sync_pending_boards(
|
|
323
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
324
|
+
size_t count);
|
|
325
|
+
jsi::Value
|
|
326
|
+
cpp_uniffi_bark_ffi_fn_method_wallet_try_claim_all_lightning_receives(
|
|
327
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
328
|
+
size_t count);
|
|
329
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_try_claim_lightning_receive(
|
|
330
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
331
|
+
size_t count);
|
|
332
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_validate_arkoor_address(
|
|
333
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
334
|
+
size_t count);
|
|
335
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_method_wallet_vtxos(
|
|
336
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
337
|
+
size_t count);
|
|
338
|
+
jsi::Value
|
|
339
|
+
cpp_uniffi_bark_ffi_fn_init_callback_vtable_customonchainwalletcallbacks(
|
|
340
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
341
|
+
size_t count);
|
|
342
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_func_extract_tx_from_psbt(
|
|
343
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
344
|
+
size_t count);
|
|
345
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_func_generate_mnemonic(
|
|
346
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
347
|
+
size_t count);
|
|
348
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_func_validate_ark_address(
|
|
349
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
350
|
+
size_t count);
|
|
351
|
+
jsi::Value cpp_uniffi_bark_ffi_fn_func_validate_mnemonic(
|
|
352
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
353
|
+
size_t count);
|
|
354
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_poll_u8(jsi::Runtime &rt,
|
|
355
|
+
const jsi::Value &thisVal,
|
|
356
|
+
const jsi::Value *args,
|
|
357
|
+
size_t count);
|
|
358
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_cancel_u8(jsi::Runtime &rt,
|
|
359
|
+
const jsi::Value &thisVal,
|
|
360
|
+
const jsi::Value *args,
|
|
361
|
+
size_t count);
|
|
362
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_free_u8(jsi::Runtime &rt,
|
|
363
|
+
const jsi::Value &thisVal,
|
|
364
|
+
const jsi::Value *args,
|
|
365
|
+
size_t count);
|
|
366
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_complete_u8(jsi::Runtime &rt,
|
|
367
|
+
const jsi::Value &thisVal,
|
|
368
|
+
const jsi::Value *args,
|
|
369
|
+
size_t count);
|
|
370
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_poll_i8(jsi::Runtime &rt,
|
|
371
|
+
const jsi::Value &thisVal,
|
|
372
|
+
const jsi::Value *args,
|
|
373
|
+
size_t count);
|
|
374
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_cancel_i8(jsi::Runtime &rt,
|
|
375
|
+
const jsi::Value &thisVal,
|
|
376
|
+
const jsi::Value *args,
|
|
377
|
+
size_t count);
|
|
378
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_free_i8(jsi::Runtime &rt,
|
|
379
|
+
const jsi::Value &thisVal,
|
|
380
|
+
const jsi::Value *args,
|
|
381
|
+
size_t count);
|
|
382
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_complete_i8(jsi::Runtime &rt,
|
|
383
|
+
const jsi::Value &thisVal,
|
|
384
|
+
const jsi::Value *args,
|
|
385
|
+
size_t count);
|
|
386
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_poll_u16(jsi::Runtime &rt,
|
|
387
|
+
const jsi::Value &thisVal,
|
|
388
|
+
const jsi::Value *args,
|
|
389
|
+
size_t count);
|
|
390
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_cancel_u16(jsi::Runtime &rt,
|
|
391
|
+
const jsi::Value &thisVal,
|
|
392
|
+
const jsi::Value *args,
|
|
393
|
+
size_t count);
|
|
394
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_free_u16(jsi::Runtime &rt,
|
|
395
|
+
const jsi::Value &thisVal,
|
|
396
|
+
const jsi::Value *args,
|
|
397
|
+
size_t count);
|
|
398
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_complete_u16(
|
|
399
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
400
|
+
size_t count);
|
|
401
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_poll_i16(jsi::Runtime &rt,
|
|
402
|
+
const jsi::Value &thisVal,
|
|
403
|
+
const jsi::Value *args,
|
|
404
|
+
size_t count);
|
|
405
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_cancel_i16(jsi::Runtime &rt,
|
|
406
|
+
const jsi::Value &thisVal,
|
|
407
|
+
const jsi::Value *args,
|
|
408
|
+
size_t count);
|
|
409
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_free_i16(jsi::Runtime &rt,
|
|
410
|
+
const jsi::Value &thisVal,
|
|
411
|
+
const jsi::Value *args,
|
|
412
|
+
size_t count);
|
|
413
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_complete_i16(
|
|
414
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
415
|
+
size_t count);
|
|
416
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_poll_u32(jsi::Runtime &rt,
|
|
417
|
+
const jsi::Value &thisVal,
|
|
418
|
+
const jsi::Value *args,
|
|
419
|
+
size_t count);
|
|
420
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_cancel_u32(jsi::Runtime &rt,
|
|
421
|
+
const jsi::Value &thisVal,
|
|
422
|
+
const jsi::Value *args,
|
|
423
|
+
size_t count);
|
|
424
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_free_u32(jsi::Runtime &rt,
|
|
425
|
+
const jsi::Value &thisVal,
|
|
426
|
+
const jsi::Value *args,
|
|
427
|
+
size_t count);
|
|
428
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_complete_u32(
|
|
429
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
430
|
+
size_t count);
|
|
431
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_poll_i32(jsi::Runtime &rt,
|
|
432
|
+
const jsi::Value &thisVal,
|
|
433
|
+
const jsi::Value *args,
|
|
434
|
+
size_t count);
|
|
435
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_cancel_i32(jsi::Runtime &rt,
|
|
436
|
+
const jsi::Value &thisVal,
|
|
437
|
+
const jsi::Value *args,
|
|
438
|
+
size_t count);
|
|
439
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_free_i32(jsi::Runtime &rt,
|
|
440
|
+
const jsi::Value &thisVal,
|
|
441
|
+
const jsi::Value *args,
|
|
442
|
+
size_t count);
|
|
443
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_complete_i32(
|
|
444
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
445
|
+
size_t count);
|
|
446
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_poll_u64(jsi::Runtime &rt,
|
|
447
|
+
const jsi::Value &thisVal,
|
|
448
|
+
const jsi::Value *args,
|
|
449
|
+
size_t count);
|
|
450
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_cancel_u64(jsi::Runtime &rt,
|
|
451
|
+
const jsi::Value &thisVal,
|
|
452
|
+
const jsi::Value *args,
|
|
453
|
+
size_t count);
|
|
454
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_free_u64(jsi::Runtime &rt,
|
|
455
|
+
const jsi::Value &thisVal,
|
|
456
|
+
const jsi::Value *args,
|
|
457
|
+
size_t count);
|
|
458
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_complete_u64(
|
|
459
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
460
|
+
size_t count);
|
|
461
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_poll_i64(jsi::Runtime &rt,
|
|
462
|
+
const jsi::Value &thisVal,
|
|
463
|
+
const jsi::Value *args,
|
|
464
|
+
size_t count);
|
|
465
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_cancel_i64(jsi::Runtime &rt,
|
|
466
|
+
const jsi::Value &thisVal,
|
|
467
|
+
const jsi::Value *args,
|
|
468
|
+
size_t count);
|
|
469
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_free_i64(jsi::Runtime &rt,
|
|
470
|
+
const jsi::Value &thisVal,
|
|
471
|
+
const jsi::Value *args,
|
|
472
|
+
size_t count);
|
|
473
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_complete_i64(
|
|
474
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
475
|
+
size_t count);
|
|
476
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_poll_f32(jsi::Runtime &rt,
|
|
477
|
+
const jsi::Value &thisVal,
|
|
478
|
+
const jsi::Value *args,
|
|
479
|
+
size_t count);
|
|
480
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_cancel_f32(jsi::Runtime &rt,
|
|
481
|
+
const jsi::Value &thisVal,
|
|
482
|
+
const jsi::Value *args,
|
|
483
|
+
size_t count);
|
|
484
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_free_f32(jsi::Runtime &rt,
|
|
485
|
+
const jsi::Value &thisVal,
|
|
486
|
+
const jsi::Value *args,
|
|
487
|
+
size_t count);
|
|
488
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_complete_f32(
|
|
489
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
490
|
+
size_t count);
|
|
491
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_poll_f64(jsi::Runtime &rt,
|
|
492
|
+
const jsi::Value &thisVal,
|
|
493
|
+
const jsi::Value *args,
|
|
494
|
+
size_t count);
|
|
495
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_cancel_f64(jsi::Runtime &rt,
|
|
496
|
+
const jsi::Value &thisVal,
|
|
497
|
+
const jsi::Value *args,
|
|
498
|
+
size_t count);
|
|
499
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_free_f64(jsi::Runtime &rt,
|
|
500
|
+
const jsi::Value &thisVal,
|
|
501
|
+
const jsi::Value *args,
|
|
502
|
+
size_t count);
|
|
503
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_complete_f64(
|
|
504
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
505
|
+
size_t count);
|
|
506
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_poll_rust_buffer(
|
|
507
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
508
|
+
size_t count);
|
|
509
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_cancel_rust_buffer(
|
|
510
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
511
|
+
size_t count);
|
|
512
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_free_rust_buffer(
|
|
513
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
514
|
+
size_t count);
|
|
515
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_complete_rust_buffer(
|
|
516
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
517
|
+
size_t count);
|
|
518
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_poll_void(jsi::Runtime &rt,
|
|
519
|
+
const jsi::Value &thisVal,
|
|
520
|
+
const jsi::Value *args,
|
|
521
|
+
size_t count);
|
|
522
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_cancel_void(jsi::Runtime &rt,
|
|
523
|
+
const jsi::Value &thisVal,
|
|
524
|
+
const jsi::Value *args,
|
|
525
|
+
size_t count);
|
|
526
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_free_void(jsi::Runtime &rt,
|
|
527
|
+
const jsi::Value &thisVal,
|
|
528
|
+
const jsi::Value *args,
|
|
529
|
+
size_t count);
|
|
530
|
+
jsi::Value cpp_ffi_bark_ffi_rust_future_complete_void(
|
|
531
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
532
|
+
size_t count);
|
|
533
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_func_extract_tx_from_psbt(
|
|
534
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
535
|
+
size_t count);
|
|
536
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_func_generate_mnemonic(
|
|
537
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
538
|
+
size_t count);
|
|
539
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_func_validate_ark_address(
|
|
540
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
541
|
+
size_t count);
|
|
542
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_func_validate_mnemonic(
|
|
543
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
544
|
+
size_t count);
|
|
545
|
+
jsi::Value
|
|
546
|
+
cpp_uniffi_bark_ffi_checksum_method_notificationholder_cancel_next_notification_wait(
|
|
547
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
548
|
+
size_t count);
|
|
549
|
+
jsi::Value
|
|
550
|
+
cpp_uniffi_bark_ffi_checksum_method_notificationholder_next_notification(
|
|
551
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
552
|
+
size_t count);
|
|
553
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_onchainwallet_balance(
|
|
554
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
555
|
+
size_t count);
|
|
556
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_onchainwallet_new_address(
|
|
557
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
558
|
+
size_t count);
|
|
559
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_onchainwallet_send(
|
|
560
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
561
|
+
size_t count);
|
|
562
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_onchainwallet_sync(
|
|
563
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
564
|
+
size_t count);
|
|
565
|
+
jsi::Value
|
|
566
|
+
cpp_uniffi_bark_ffi_checksum_method_wallet_all_exits_claimable_at_height(
|
|
567
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
568
|
+
size_t count);
|
|
569
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_all_vtxos(
|
|
570
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
571
|
+
size_t count);
|
|
572
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_ark_info(
|
|
573
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
574
|
+
size_t count);
|
|
575
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_balance(
|
|
576
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
577
|
+
size_t count);
|
|
578
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_board_all(
|
|
579
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
580
|
+
size_t count);
|
|
581
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_board_amount(
|
|
582
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
583
|
+
size_t count);
|
|
584
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_bolt11_invoice(
|
|
585
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
586
|
+
size_t count);
|
|
587
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_broadcast_tx(
|
|
588
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
589
|
+
size_t count);
|
|
590
|
+
jsi::Value
|
|
591
|
+
cpp_uniffi_bark_ffi_checksum_method_wallet_cancel_all_pending_rounds(
|
|
592
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
593
|
+
size_t count);
|
|
594
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_cancel_pending_round(
|
|
595
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
596
|
+
size_t count);
|
|
597
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_check_lightning_payment(
|
|
598
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
599
|
+
size_t count);
|
|
600
|
+
jsi::Value
|
|
601
|
+
cpp_uniffi_bark_ffi_checksum_method_wallet_claimable_lightning_receive_balance_sats(
|
|
602
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
603
|
+
size_t count);
|
|
604
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_config(
|
|
605
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
606
|
+
size_t count);
|
|
607
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_drain_exits(
|
|
608
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
609
|
+
size_t count);
|
|
610
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_estimate_board_fee(
|
|
611
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
612
|
+
size_t count);
|
|
613
|
+
jsi::Value
|
|
614
|
+
cpp_uniffi_bark_ffi_checksum_method_wallet_estimate_lightning_receive_fee(
|
|
615
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
616
|
+
size_t count);
|
|
617
|
+
jsi::Value
|
|
618
|
+
cpp_uniffi_bark_ffi_checksum_method_wallet_estimate_lightning_send_fee(
|
|
619
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
620
|
+
size_t count);
|
|
621
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_estimate_offboard_fee(
|
|
622
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
623
|
+
size_t count);
|
|
624
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_estimate_refresh_fee(
|
|
625
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
626
|
+
size_t count);
|
|
627
|
+
jsi::Value
|
|
628
|
+
cpp_uniffi_bark_ffi_checksum_method_wallet_estimate_send_onchain_fee(
|
|
629
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
630
|
+
size_t count);
|
|
631
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_fingerprint(
|
|
632
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
633
|
+
size_t count);
|
|
634
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_get_exit_status(
|
|
635
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
636
|
+
size_t count);
|
|
637
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_get_exit_vtxos(
|
|
638
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
639
|
+
size_t count);
|
|
640
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_get_expiring_vtxos(
|
|
641
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
642
|
+
size_t count);
|
|
643
|
+
jsi::Value
|
|
644
|
+
cpp_uniffi_bark_ffi_checksum_method_wallet_get_first_expiring_vtxo_blockheight(
|
|
645
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
646
|
+
size_t count);
|
|
647
|
+
jsi::Value
|
|
648
|
+
cpp_uniffi_bark_ffi_checksum_method_wallet_get_next_required_refresh_blockheight(
|
|
649
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
650
|
+
size_t count);
|
|
651
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_get_vtxo_by_id(
|
|
652
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
653
|
+
size_t count);
|
|
654
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_get_vtxos_to_refresh(
|
|
655
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
656
|
+
size_t count);
|
|
657
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_has_pending_exits(
|
|
658
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
659
|
+
size_t count);
|
|
660
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_history(
|
|
661
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
662
|
+
size_t count);
|
|
663
|
+
jsi::Value
|
|
664
|
+
cpp_uniffi_bark_ffi_checksum_method_wallet_history_by_payment_method(
|
|
665
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
666
|
+
size_t count);
|
|
667
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_import_vtxo(
|
|
668
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
669
|
+
size_t count);
|
|
670
|
+
jsi::Value
|
|
671
|
+
cpp_uniffi_bark_ffi_checksum_method_wallet_lightning_receive_status(
|
|
672
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
673
|
+
size_t count);
|
|
674
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_list_claimable_exits(
|
|
675
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
676
|
+
size_t count);
|
|
677
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_mailbox_authorization(
|
|
678
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
679
|
+
size_t count);
|
|
680
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_mailbox_identifier(
|
|
681
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
682
|
+
size_t count);
|
|
683
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_maintenance(
|
|
684
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
685
|
+
size_t count);
|
|
686
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_maintenance_delegated(
|
|
687
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
688
|
+
size_t count);
|
|
689
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_maintenance_refresh(
|
|
690
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
691
|
+
size_t count);
|
|
692
|
+
jsi::Value
|
|
693
|
+
cpp_uniffi_bark_ffi_checksum_method_wallet_maintenance_with_onchain(
|
|
694
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
695
|
+
size_t count);
|
|
696
|
+
jsi::Value
|
|
697
|
+
cpp_uniffi_bark_ffi_checksum_method_wallet_maintenance_with_onchain_delegated(
|
|
698
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
699
|
+
size_t count);
|
|
700
|
+
jsi::Value
|
|
701
|
+
cpp_uniffi_bark_ffi_checksum_method_wallet_maybe_schedule_maintenance_refresh(
|
|
702
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
703
|
+
size_t count);
|
|
704
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_network(
|
|
705
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
706
|
+
size_t count);
|
|
707
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_new_address(
|
|
708
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
709
|
+
size_t count);
|
|
710
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_new_address_with_index(
|
|
711
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
712
|
+
size_t count);
|
|
713
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_next_round_start_time(
|
|
714
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
715
|
+
size_t count);
|
|
716
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_notifications(
|
|
717
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
718
|
+
size_t count);
|
|
719
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_offboard_all(
|
|
720
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
721
|
+
size_t count);
|
|
722
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_offboard_vtxos(
|
|
723
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
724
|
+
size_t count);
|
|
725
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_pay_lightning_address(
|
|
726
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
727
|
+
size_t count);
|
|
728
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_pay_lightning_invoice(
|
|
729
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
730
|
+
size_t count);
|
|
731
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_pay_lightning_offer(
|
|
732
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
733
|
+
size_t count);
|
|
734
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_peak_address(
|
|
735
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
736
|
+
size_t count);
|
|
737
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_peek_address(
|
|
738
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
739
|
+
size_t count);
|
|
740
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_pending_board_vtxos(
|
|
741
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
742
|
+
size_t count);
|
|
743
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_pending_boards(
|
|
744
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
745
|
+
size_t count);
|
|
746
|
+
jsi::Value
|
|
747
|
+
cpp_uniffi_bark_ffi_checksum_method_wallet_pending_exits_total_sats(
|
|
748
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
749
|
+
size_t count);
|
|
750
|
+
jsi::Value
|
|
751
|
+
cpp_uniffi_bark_ffi_checksum_method_wallet_pending_lightning_receives(
|
|
752
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
753
|
+
size_t count);
|
|
754
|
+
jsi::Value
|
|
755
|
+
cpp_uniffi_bark_ffi_checksum_method_wallet_pending_lightning_send_vtxos(
|
|
756
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
757
|
+
size_t count);
|
|
758
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_pending_lightning_sends(
|
|
759
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
760
|
+
size_t count);
|
|
761
|
+
jsi::Value
|
|
762
|
+
cpp_uniffi_bark_ffi_checksum_method_wallet_pending_round_input_vtxos(
|
|
763
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
764
|
+
size_t count);
|
|
765
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_pending_round_states(
|
|
766
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
767
|
+
size_t count);
|
|
768
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_progress_exits(
|
|
769
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
770
|
+
size_t count);
|
|
771
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_progress_pending_rounds(
|
|
772
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
773
|
+
size_t count);
|
|
774
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_properties(
|
|
775
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
776
|
+
size_t count);
|
|
777
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_refresh_server(
|
|
778
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
779
|
+
size_t count);
|
|
780
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_refresh_vtxos(
|
|
781
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
782
|
+
size_t count);
|
|
783
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_refresh_vtxos_delegated(
|
|
784
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
785
|
+
size_t count);
|
|
786
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_send_arkoor_payment(
|
|
787
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
788
|
+
size_t count);
|
|
789
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_send_onchain(
|
|
790
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
791
|
+
size_t count);
|
|
792
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_sign_exit_claim_inputs(
|
|
793
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
794
|
+
size_t count);
|
|
795
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_spendable_vtxos(
|
|
796
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
797
|
+
size_t count);
|
|
798
|
+
jsi::Value
|
|
799
|
+
cpp_uniffi_bark_ffi_checksum_method_wallet_start_exit_for_entire_wallet(
|
|
800
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
801
|
+
size_t count);
|
|
802
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_start_exit_for_vtxos(
|
|
803
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
804
|
+
size_t count);
|
|
805
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_sync(
|
|
806
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
807
|
+
size_t count);
|
|
808
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_sync_exits(
|
|
809
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
810
|
+
size_t count);
|
|
811
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_sync_pending_boards(
|
|
812
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
813
|
+
size_t count);
|
|
814
|
+
jsi::Value
|
|
815
|
+
cpp_uniffi_bark_ffi_checksum_method_wallet_try_claim_all_lightning_receives(
|
|
816
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
817
|
+
size_t count);
|
|
818
|
+
jsi::Value
|
|
819
|
+
cpp_uniffi_bark_ffi_checksum_method_wallet_try_claim_lightning_receive(
|
|
820
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
821
|
+
size_t count);
|
|
822
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_validate_arkoor_address(
|
|
823
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
824
|
+
size_t count);
|
|
825
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_method_wallet_vtxos(
|
|
826
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
827
|
+
size_t count);
|
|
828
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_constructor_onchainwallet_custom(
|
|
829
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
830
|
+
size_t count);
|
|
831
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_constructor_onchainwallet_default(
|
|
832
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
833
|
+
size_t count);
|
|
834
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_constructor_wallet_create(
|
|
835
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
836
|
+
size_t count);
|
|
837
|
+
jsi::Value
|
|
838
|
+
cpp_uniffi_bark_ffi_checksum_constructor_wallet_create_with_onchain(
|
|
839
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
840
|
+
size_t count);
|
|
841
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_constructor_wallet_open(
|
|
842
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
843
|
+
size_t count);
|
|
844
|
+
jsi::Value cpp_uniffi_bark_ffi_checksum_constructor_wallet_open_with_onchain(
|
|
845
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
846
|
+
size_t count);
|
|
847
|
+
jsi::Value
|
|
848
|
+
cpp_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_get_balance(
|
|
849
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
850
|
+
size_t count);
|
|
851
|
+
jsi::Value
|
|
852
|
+
cpp_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_prepare_tx(
|
|
853
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
854
|
+
size_t count);
|
|
855
|
+
jsi::Value
|
|
856
|
+
cpp_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_prepare_drain_tx(
|
|
857
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
858
|
+
size_t count);
|
|
859
|
+
jsi::Value
|
|
860
|
+
cpp_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_finish_tx(
|
|
861
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
862
|
+
size_t count);
|
|
863
|
+
jsi::Value
|
|
864
|
+
cpp_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_get_wallet_tx(
|
|
865
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
866
|
+
size_t count);
|
|
867
|
+
jsi::Value
|
|
868
|
+
cpp_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_get_wallet_tx_confirmed_block(
|
|
869
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
870
|
+
size_t count);
|
|
871
|
+
jsi::Value
|
|
872
|
+
cpp_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_get_spending_tx(
|
|
873
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
874
|
+
size_t count);
|
|
875
|
+
jsi::Value
|
|
876
|
+
cpp_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_make_signed_p2a_cpfp(
|
|
877
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
878
|
+
size_t count);
|
|
879
|
+
jsi::Value
|
|
880
|
+
cpp_uniffi_bark_ffi_checksum_method_customonchainwalletcallbacks_store_signed_p2a_cpfp(
|
|
881
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
882
|
+
size_t count);
|
|
883
|
+
jsi::Value cpp_ffi_bark_ffi_uniffi_contract_version(jsi::Runtime &rt,
|
|
884
|
+
const jsi::Value &thisVal,
|
|
885
|
+
const jsi::Value *args,
|
|
886
|
+
size_t count);
|
|
887
|
+
jsi::Value
|
|
888
|
+
cpp_uniffi_internal_fn_method_notificationholder_ffi__bless_pointer(
|
|
889
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
890
|
+
size_t count);
|
|
891
|
+
jsi::Value cpp_uniffi_internal_fn_method_onchainwallet_ffi__bless_pointer(
|
|
892
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
893
|
+
size_t count);
|
|
894
|
+
jsi::Value cpp_uniffi_internal_fn_method_wallet_ffi__bless_pointer(
|
|
895
|
+
jsi::Runtime &rt, const jsi::Value &thisVal, const jsi::Value *args,
|
|
896
|
+
size_t count);
|
|
225
897
|
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
898
|
+
public:
|
|
899
|
+
NativeBark(jsi::Runtime &rt,
|
|
900
|
+
std::shared_ptr<uniffi_runtime::UniffiCallInvoker> callInvoker);
|
|
901
|
+
virtual ~NativeBark();
|
|
229
902
|
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
903
|
+
/**
|
|
904
|
+
* The entry point into the crate.
|
|
905
|
+
*
|
|
906
|
+
* React Native must call `NativeBark.registerModule(rt, callInvoker)` before
|
|
907
|
+
* using the Javascript interface.
|
|
908
|
+
*/
|
|
909
|
+
static void registerModule(jsi::Runtime &rt,
|
|
910
|
+
std::shared_ptr<react::CallInvoker> callInvoker);
|
|
237
911
|
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
912
|
+
/**
|
|
913
|
+
* Some cleanup into the crate goes here.
|
|
914
|
+
*
|
|
915
|
+
* Current implementation is empty, however, this is not guaranteed to always
|
|
916
|
+
* be the case.
|
|
917
|
+
*
|
|
918
|
+
* Clients should call `NativeBark.unregisterModule(rt)` after final use where
|
|
919
|
+
* possible.
|
|
920
|
+
*/
|
|
921
|
+
static void unregisterModule(jsi::Runtime &rt);
|
|
246
922
|
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
923
|
+
virtual jsi::Value get(jsi::Runtime &rt, const jsi::PropNameID &name);
|
|
924
|
+
virtual void set(jsi::Runtime &rt, const jsi::PropNameID &name,
|
|
925
|
+
const jsi::Value &value);
|
|
926
|
+
virtual std::vector<jsi::PropNameID> getPropertyNames(jsi::Runtime &rt);
|
|
250
927
|
};
|