@keystonehq/react-native-keystone-wallet-core 0.1.6 → 0.1.7
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/android/src/main/jniLibs/arm64-v8a/libkeystone_wallet_core.so +0 -0
- package/android/src/main/jniLibs/armeabi-v7a/libkeystone_wallet_core.so +0 -0
- package/android/src/main/jniLibs/x86/libkeystone_wallet_core.so +0 -0
- package/android/src/main/jniLibs/x86_64/libkeystone_wallet_core.so +0 -0
- package/ios/Frameworks/KeystoneWalletCoreFFI.xcframework/Info.plist +43 -0
- package/ios/Frameworks/KeystoneWalletCoreFFI.xcframework/ios-arm64/KeystoneWalletCoreFFI.framework/Headers/KeystoneWalletCoreFFI.h +682 -0
- package/ios/Frameworks/KeystoneWalletCoreFFI.xcframework/ios-arm64/KeystoneWalletCoreFFI.framework/Info.plist +22 -0
- package/ios/Frameworks/KeystoneWalletCoreFFI.xcframework/ios-arm64/KeystoneWalletCoreFFI.framework/KeystoneWalletCoreFFI +0 -0
- package/ios/Frameworks/KeystoneWalletCoreFFI.xcframework/ios-arm64/KeystoneWalletCoreFFI.framework/Modules/module.modulemap +4 -0
- package/ios/Frameworks/KeystoneWalletCoreFFI.xcframework/ios-arm64-simulator/KeystoneWalletCoreFFI.framework/Headers/KeystoneWalletCoreFFI.h +682 -0
- package/ios/Frameworks/KeystoneWalletCoreFFI.xcframework/ios-arm64-simulator/KeystoneWalletCoreFFI.framework/Info.plist +22 -0
- package/ios/Frameworks/KeystoneWalletCoreFFI.xcframework/ios-arm64-simulator/KeystoneWalletCoreFFI.framework/KeystoneWalletCoreFFI +0 -0
- package/ios/Frameworks/KeystoneWalletCoreFFI.xcframework/ios-arm64-simulator/KeystoneWalletCoreFFI.framework/Modules/module.modulemap +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,682 @@
|
|
|
1
|
+
// This file was autogenerated by some hot garbage in the `uniffi` crate.
|
|
2
|
+
// Trust me, you don't want to mess with it!
|
|
3
|
+
|
|
4
|
+
#pragma once
|
|
5
|
+
|
|
6
|
+
#include <stdbool.h>
|
|
7
|
+
#include <stddef.h>
|
|
8
|
+
#include <stdint.h>
|
|
9
|
+
|
|
10
|
+
// The following structs are used to implement the lowest level
|
|
11
|
+
// of the FFI, and thus useful to multiple uniffied crates.
|
|
12
|
+
// We ensure they are declared exactly once, with a header guard, UNIFFI_SHARED_H.
|
|
13
|
+
#ifdef UNIFFI_SHARED_H
|
|
14
|
+
// We also try to prevent mixing versions of shared uniffi header structs.
|
|
15
|
+
// If you add anything to the #else block, you must increment the version suffix in UNIFFI_SHARED_HEADER_V4
|
|
16
|
+
#ifndef UNIFFI_SHARED_HEADER_V4
|
|
17
|
+
#error Combining helper code from multiple versions of uniffi is not supported
|
|
18
|
+
#endif // ndef UNIFFI_SHARED_HEADER_V4
|
|
19
|
+
#else
|
|
20
|
+
#define UNIFFI_SHARED_H
|
|
21
|
+
#define UNIFFI_SHARED_HEADER_V4
|
|
22
|
+
// ⚠️ Attention: If you change this #else block (ending in `#endif // def UNIFFI_SHARED_H`) you *must* ⚠️
|
|
23
|
+
// ⚠️ increment the version suffix in all instances of UNIFFI_SHARED_HEADER_V4 in this file. ⚠️
|
|
24
|
+
|
|
25
|
+
typedef struct RustBuffer
|
|
26
|
+
{
|
|
27
|
+
uint64_t capacity;
|
|
28
|
+
uint64_t len;
|
|
29
|
+
uint8_t *_Nullable data;
|
|
30
|
+
} RustBuffer;
|
|
31
|
+
|
|
32
|
+
typedef struct ForeignBytes
|
|
33
|
+
{
|
|
34
|
+
int32_t len;
|
|
35
|
+
const uint8_t *_Nullable data;
|
|
36
|
+
} ForeignBytes;
|
|
37
|
+
|
|
38
|
+
// Error definitions
|
|
39
|
+
typedef struct RustCallStatus {
|
|
40
|
+
int8_t code;
|
|
41
|
+
RustBuffer errorBuf;
|
|
42
|
+
} RustCallStatus;
|
|
43
|
+
|
|
44
|
+
// ⚠️ Attention: If you change this #else block (ending in `#endif // def UNIFFI_SHARED_H`) you *must* ⚠️
|
|
45
|
+
// ⚠️ increment the version suffix in all instances of UNIFFI_SHARED_HEADER_V4 in this file. ⚠️
|
|
46
|
+
#endif // def UNIFFI_SHARED_H
|
|
47
|
+
#ifndef UNIFFI_FFIDEF_RUST_FUTURE_CONTINUATION_CALLBACK
|
|
48
|
+
#define UNIFFI_FFIDEF_RUST_FUTURE_CONTINUATION_CALLBACK
|
|
49
|
+
typedef void (*UniffiRustFutureContinuationCallback)(uint64_t, int8_t
|
|
50
|
+
);
|
|
51
|
+
|
|
52
|
+
#endif
|
|
53
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_FREE
|
|
54
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_FREE
|
|
55
|
+
typedef void (*UniffiForeignFutureFree)(uint64_t
|
|
56
|
+
);
|
|
57
|
+
|
|
58
|
+
#endif
|
|
59
|
+
#ifndef UNIFFI_FFIDEF_CALLBACK_INTERFACE_FREE
|
|
60
|
+
#define UNIFFI_FFIDEF_CALLBACK_INTERFACE_FREE
|
|
61
|
+
typedef void (*UniffiCallbackInterfaceFree)(uint64_t
|
|
62
|
+
);
|
|
63
|
+
|
|
64
|
+
#endif
|
|
65
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE
|
|
66
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE
|
|
67
|
+
typedef struct UniffiForeignFuture {
|
|
68
|
+
uint64_t handle;
|
|
69
|
+
UniffiForeignFutureFree _Nonnull free;
|
|
70
|
+
} UniffiForeignFuture;
|
|
71
|
+
|
|
72
|
+
#endif
|
|
73
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U8
|
|
74
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U8
|
|
75
|
+
typedef struct UniffiForeignFutureStructU8 {
|
|
76
|
+
uint8_t returnValue;
|
|
77
|
+
RustCallStatus callStatus;
|
|
78
|
+
} UniffiForeignFutureStructU8;
|
|
79
|
+
|
|
80
|
+
#endif
|
|
81
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U8
|
|
82
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U8
|
|
83
|
+
typedef void (*UniffiForeignFutureCompleteU8)(uint64_t, UniffiForeignFutureStructU8
|
|
84
|
+
);
|
|
85
|
+
|
|
86
|
+
#endif
|
|
87
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I8
|
|
88
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I8
|
|
89
|
+
typedef struct UniffiForeignFutureStructI8 {
|
|
90
|
+
int8_t returnValue;
|
|
91
|
+
RustCallStatus callStatus;
|
|
92
|
+
} UniffiForeignFutureStructI8;
|
|
93
|
+
|
|
94
|
+
#endif
|
|
95
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I8
|
|
96
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I8
|
|
97
|
+
typedef void (*UniffiForeignFutureCompleteI8)(uint64_t, UniffiForeignFutureStructI8
|
|
98
|
+
);
|
|
99
|
+
|
|
100
|
+
#endif
|
|
101
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U16
|
|
102
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U16
|
|
103
|
+
typedef struct UniffiForeignFutureStructU16 {
|
|
104
|
+
uint16_t returnValue;
|
|
105
|
+
RustCallStatus callStatus;
|
|
106
|
+
} UniffiForeignFutureStructU16;
|
|
107
|
+
|
|
108
|
+
#endif
|
|
109
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U16
|
|
110
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U16
|
|
111
|
+
typedef void (*UniffiForeignFutureCompleteU16)(uint64_t, UniffiForeignFutureStructU16
|
|
112
|
+
);
|
|
113
|
+
|
|
114
|
+
#endif
|
|
115
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I16
|
|
116
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I16
|
|
117
|
+
typedef struct UniffiForeignFutureStructI16 {
|
|
118
|
+
int16_t returnValue;
|
|
119
|
+
RustCallStatus callStatus;
|
|
120
|
+
} UniffiForeignFutureStructI16;
|
|
121
|
+
|
|
122
|
+
#endif
|
|
123
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I16
|
|
124
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I16
|
|
125
|
+
typedef void (*UniffiForeignFutureCompleteI16)(uint64_t, UniffiForeignFutureStructI16
|
|
126
|
+
);
|
|
127
|
+
|
|
128
|
+
#endif
|
|
129
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U32
|
|
130
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U32
|
|
131
|
+
typedef struct UniffiForeignFutureStructU32 {
|
|
132
|
+
uint32_t returnValue;
|
|
133
|
+
RustCallStatus callStatus;
|
|
134
|
+
} UniffiForeignFutureStructU32;
|
|
135
|
+
|
|
136
|
+
#endif
|
|
137
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U32
|
|
138
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U32
|
|
139
|
+
typedef void (*UniffiForeignFutureCompleteU32)(uint64_t, UniffiForeignFutureStructU32
|
|
140
|
+
);
|
|
141
|
+
|
|
142
|
+
#endif
|
|
143
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I32
|
|
144
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I32
|
|
145
|
+
typedef struct UniffiForeignFutureStructI32 {
|
|
146
|
+
int32_t returnValue;
|
|
147
|
+
RustCallStatus callStatus;
|
|
148
|
+
} UniffiForeignFutureStructI32;
|
|
149
|
+
|
|
150
|
+
#endif
|
|
151
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I32
|
|
152
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I32
|
|
153
|
+
typedef void (*UniffiForeignFutureCompleteI32)(uint64_t, UniffiForeignFutureStructI32
|
|
154
|
+
);
|
|
155
|
+
|
|
156
|
+
#endif
|
|
157
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U64
|
|
158
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U64
|
|
159
|
+
typedef struct UniffiForeignFutureStructU64 {
|
|
160
|
+
uint64_t returnValue;
|
|
161
|
+
RustCallStatus callStatus;
|
|
162
|
+
} UniffiForeignFutureStructU64;
|
|
163
|
+
|
|
164
|
+
#endif
|
|
165
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U64
|
|
166
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U64
|
|
167
|
+
typedef void (*UniffiForeignFutureCompleteU64)(uint64_t, UniffiForeignFutureStructU64
|
|
168
|
+
);
|
|
169
|
+
|
|
170
|
+
#endif
|
|
171
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I64
|
|
172
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I64
|
|
173
|
+
typedef struct UniffiForeignFutureStructI64 {
|
|
174
|
+
int64_t returnValue;
|
|
175
|
+
RustCallStatus callStatus;
|
|
176
|
+
} UniffiForeignFutureStructI64;
|
|
177
|
+
|
|
178
|
+
#endif
|
|
179
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I64
|
|
180
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I64
|
|
181
|
+
typedef void (*UniffiForeignFutureCompleteI64)(uint64_t, UniffiForeignFutureStructI64
|
|
182
|
+
);
|
|
183
|
+
|
|
184
|
+
#endif
|
|
185
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_F32
|
|
186
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_F32
|
|
187
|
+
typedef struct UniffiForeignFutureStructF32 {
|
|
188
|
+
float returnValue;
|
|
189
|
+
RustCallStatus callStatus;
|
|
190
|
+
} UniffiForeignFutureStructF32;
|
|
191
|
+
|
|
192
|
+
#endif
|
|
193
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_F32
|
|
194
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_F32
|
|
195
|
+
typedef void (*UniffiForeignFutureCompleteF32)(uint64_t, UniffiForeignFutureStructF32
|
|
196
|
+
);
|
|
197
|
+
|
|
198
|
+
#endif
|
|
199
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_F64
|
|
200
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_F64
|
|
201
|
+
typedef struct UniffiForeignFutureStructF64 {
|
|
202
|
+
double returnValue;
|
|
203
|
+
RustCallStatus callStatus;
|
|
204
|
+
} UniffiForeignFutureStructF64;
|
|
205
|
+
|
|
206
|
+
#endif
|
|
207
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_F64
|
|
208
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_F64
|
|
209
|
+
typedef void (*UniffiForeignFutureCompleteF64)(uint64_t, UniffiForeignFutureStructF64
|
|
210
|
+
);
|
|
211
|
+
|
|
212
|
+
#endif
|
|
213
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_POINTER
|
|
214
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_POINTER
|
|
215
|
+
typedef struct UniffiForeignFutureStructPointer {
|
|
216
|
+
void*_Nonnull returnValue;
|
|
217
|
+
RustCallStatus callStatus;
|
|
218
|
+
} UniffiForeignFutureStructPointer;
|
|
219
|
+
|
|
220
|
+
#endif
|
|
221
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_POINTER
|
|
222
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_POINTER
|
|
223
|
+
typedef void (*UniffiForeignFutureCompletePointer)(uint64_t, UniffiForeignFutureStructPointer
|
|
224
|
+
);
|
|
225
|
+
|
|
226
|
+
#endif
|
|
227
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_RUST_BUFFER
|
|
228
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_RUST_BUFFER
|
|
229
|
+
typedef struct UniffiForeignFutureStructRustBuffer {
|
|
230
|
+
RustBuffer returnValue;
|
|
231
|
+
RustCallStatus callStatus;
|
|
232
|
+
} UniffiForeignFutureStructRustBuffer;
|
|
233
|
+
|
|
234
|
+
#endif
|
|
235
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_RUST_BUFFER
|
|
236
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_RUST_BUFFER
|
|
237
|
+
typedef void (*UniffiForeignFutureCompleteRustBuffer)(uint64_t, UniffiForeignFutureStructRustBuffer
|
|
238
|
+
);
|
|
239
|
+
|
|
240
|
+
#endif
|
|
241
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_VOID
|
|
242
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_VOID
|
|
243
|
+
typedef struct UniffiForeignFutureStructVoid {
|
|
244
|
+
RustCallStatus callStatus;
|
|
245
|
+
} UniffiForeignFutureStructVoid;
|
|
246
|
+
|
|
247
|
+
#endif
|
|
248
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_VOID
|
|
249
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_VOID
|
|
250
|
+
typedef void (*UniffiForeignFutureCompleteVoid)(uint64_t, UniffiForeignFutureStructVoid
|
|
251
|
+
);
|
|
252
|
+
|
|
253
|
+
#endif
|
|
254
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_CLONE_PCZT
|
|
255
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_CLONE_PCZT
|
|
256
|
+
void*_Nonnull uniffi_keystone_wallet_core_fn_clone_pczt(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
|
|
257
|
+
);
|
|
258
|
+
#endif
|
|
259
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FREE_PCZT
|
|
260
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FREE_PCZT
|
|
261
|
+
void uniffi_keystone_wallet_core_fn_free_pczt(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
|
|
262
|
+
);
|
|
263
|
+
#endif
|
|
264
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_METHOD_PCZT_SERIALIZE
|
|
265
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_METHOD_PCZT_SERIALIZE
|
|
266
|
+
RustBuffer uniffi_keystone_wallet_core_fn_method_pczt_serialize(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
|
|
267
|
+
);
|
|
268
|
+
#endif
|
|
269
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FUNC_ASSEMBLE_TRANSACTION_ADA
|
|
270
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FUNC_ASSEMBLE_TRANSACTION_ADA
|
|
271
|
+
RustBuffer uniffi_keystone_wallet_core_fn_func_assemble_transaction_ada(RustBuffer raw_tx_hex, RustBuffer witness_set_hex, RustCallStatus *_Nonnull out_status
|
|
272
|
+
);
|
|
273
|
+
#endif
|
|
274
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FUNC_COMPOSE_TRANSACTION_ADA
|
|
275
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FUNC_COMPOSE_TRANSACTION_ADA
|
|
276
|
+
RustBuffer uniffi_keystone_wallet_core_fn_func_compose_transaction_ada(RustBuffer inputs, RustBuffer outputs, RustBuffer change_address, uint64_t fee, uint64_t ttl, RustBuffer network, RustCallStatus *_Nonnull out_status
|
|
277
|
+
);
|
|
278
|
+
#endif
|
|
279
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FUNC_CREATE_PCZT
|
|
280
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FUNC_CREATE_PCZT
|
|
281
|
+
void*_Nonnull uniffi_keystone_wallet_core_fn_func_create_pczt(uint32_t consensus_branch_id, uint32_t expiry_height, uint32_t coin_type, RustCallStatus *_Nonnull out_status
|
|
282
|
+
);
|
|
283
|
+
#endif
|
|
284
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FUNC_CREATE_TRANSPARENT_PCZT
|
|
285
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FUNC_CREATE_TRANSPARENT_PCZT
|
|
286
|
+
RustBuffer uniffi_keystone_wallet_core_fn_func_create_transparent_pczt(RustBuffer inputs, RustBuffer outputs, uint32_t block_height, RustCallStatus *_Nonnull out_status
|
|
287
|
+
);
|
|
288
|
+
#endif
|
|
289
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FUNC_CREATE_TRANSPARENT_PCZT_FOR_SWAPKIT
|
|
290
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FUNC_CREATE_TRANSPARENT_PCZT_FOR_SWAPKIT
|
|
291
|
+
RustBuffer uniffi_keystone_wallet_core_fn_func_create_transparent_pczt_for_swapkit(RustBuffer pczt_hex, uint32_t block_height, RustBuffer pubkey_hex, RustBuffer fingerprint_hex, RustBuffer path_str, RustCallStatus *_Nonnull out_status
|
|
292
|
+
);
|
|
293
|
+
#endif
|
|
294
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FUNC_DERIVE_ADDRESS_BY_PATH_ADA
|
|
295
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FUNC_DERIVE_ADDRESS_BY_PATH_ADA
|
|
296
|
+
RustBuffer uniffi_keystone_wallet_core_fn_func_derive_address_by_path_ada(RustBuffer account_xpub_hex, RustBuffer path, RustBuffer network, RustCallStatus *_Nonnull out_status
|
|
297
|
+
);
|
|
298
|
+
#endif
|
|
299
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FUNC_DERIVE_ENTERPRISE_ADDRESS_BY_PATH_ADA
|
|
300
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FUNC_DERIVE_ENTERPRISE_ADDRESS_BY_PATH_ADA
|
|
301
|
+
RustBuffer uniffi_keystone_wallet_core_fn_func_derive_enterprise_address_by_path_ada(RustBuffer account_xpub_hex, RustBuffer path, RustBuffer network, RustCallStatus *_Nonnull out_status
|
|
302
|
+
);
|
|
303
|
+
#endif
|
|
304
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FUNC_DERIVE_PUBKEY_BY_PATH_ADA
|
|
305
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FUNC_DERIVE_PUBKEY_BY_PATH_ADA
|
|
306
|
+
RustBuffer uniffi_keystone_wallet_core_fn_func_derive_pubkey_by_path_ada(RustBuffer account_xpub_hex, RustBuffer path, RustCallStatus *_Nonnull out_status
|
|
307
|
+
);
|
|
308
|
+
#endif
|
|
309
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FUNC_DERIVE_STAKE_ADDRESS_ADA
|
|
310
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FUNC_DERIVE_STAKE_ADDRESS_ADA
|
|
311
|
+
RustBuffer uniffi_keystone_wallet_core_fn_func_derive_stake_address_ada(RustBuffer account_xpub_hex, RustBuffer network, RustCallStatus *_Nonnull out_status
|
|
312
|
+
);
|
|
313
|
+
#endif
|
|
314
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FUNC_EXTRACT_TRANSACTION_INPUTS_ADA
|
|
315
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FUNC_EXTRACT_TRANSACTION_INPUTS_ADA
|
|
316
|
+
RustBuffer uniffi_keystone_wallet_core_fn_func_extract_transaction_inputs_ada(RustBuffer tx_hex, RustCallStatus *_Nonnull out_status
|
|
317
|
+
);
|
|
318
|
+
#endif
|
|
319
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FUNC_FINALIZE_THEN_EXTRACT_PCZT_TRANSACTION
|
|
320
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_FN_FUNC_FINALIZE_THEN_EXTRACT_PCZT_TRANSACTION
|
|
321
|
+
RustBuffer uniffi_keystone_wallet_core_fn_func_finalize_then_extract_pczt_transaction(RustBuffer pczt_hex, RustCallStatus *_Nonnull out_status
|
|
322
|
+
);
|
|
323
|
+
#endif
|
|
324
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUSTBUFFER_ALLOC
|
|
325
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUSTBUFFER_ALLOC
|
|
326
|
+
RustBuffer ffi_keystone_wallet_core_rustbuffer_alloc(uint64_t size, RustCallStatus *_Nonnull out_status
|
|
327
|
+
);
|
|
328
|
+
#endif
|
|
329
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUSTBUFFER_FROM_BYTES
|
|
330
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUSTBUFFER_FROM_BYTES
|
|
331
|
+
RustBuffer ffi_keystone_wallet_core_rustbuffer_from_bytes(ForeignBytes bytes, RustCallStatus *_Nonnull out_status
|
|
332
|
+
);
|
|
333
|
+
#endif
|
|
334
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUSTBUFFER_FREE
|
|
335
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUSTBUFFER_FREE
|
|
336
|
+
void ffi_keystone_wallet_core_rustbuffer_free(RustBuffer buf, RustCallStatus *_Nonnull out_status
|
|
337
|
+
);
|
|
338
|
+
#endif
|
|
339
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUSTBUFFER_RESERVE
|
|
340
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUSTBUFFER_RESERVE
|
|
341
|
+
RustBuffer ffi_keystone_wallet_core_rustbuffer_reserve(RustBuffer buf, uint64_t additional, RustCallStatus *_Nonnull out_status
|
|
342
|
+
);
|
|
343
|
+
#endif
|
|
344
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_U8
|
|
345
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_U8
|
|
346
|
+
void ffi_keystone_wallet_core_rust_future_poll_u8(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
347
|
+
);
|
|
348
|
+
#endif
|
|
349
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_U8
|
|
350
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_U8
|
|
351
|
+
void ffi_keystone_wallet_core_rust_future_cancel_u8(uint64_t handle
|
|
352
|
+
);
|
|
353
|
+
#endif
|
|
354
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_U8
|
|
355
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_U8
|
|
356
|
+
void ffi_keystone_wallet_core_rust_future_free_u8(uint64_t handle
|
|
357
|
+
);
|
|
358
|
+
#endif
|
|
359
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_U8
|
|
360
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_U8
|
|
361
|
+
uint8_t ffi_keystone_wallet_core_rust_future_complete_u8(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
362
|
+
);
|
|
363
|
+
#endif
|
|
364
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_I8
|
|
365
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_I8
|
|
366
|
+
void ffi_keystone_wallet_core_rust_future_poll_i8(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
367
|
+
);
|
|
368
|
+
#endif
|
|
369
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_I8
|
|
370
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_I8
|
|
371
|
+
void ffi_keystone_wallet_core_rust_future_cancel_i8(uint64_t handle
|
|
372
|
+
);
|
|
373
|
+
#endif
|
|
374
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_I8
|
|
375
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_I8
|
|
376
|
+
void ffi_keystone_wallet_core_rust_future_free_i8(uint64_t handle
|
|
377
|
+
);
|
|
378
|
+
#endif
|
|
379
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_I8
|
|
380
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_I8
|
|
381
|
+
int8_t ffi_keystone_wallet_core_rust_future_complete_i8(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
382
|
+
);
|
|
383
|
+
#endif
|
|
384
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_U16
|
|
385
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_U16
|
|
386
|
+
void ffi_keystone_wallet_core_rust_future_poll_u16(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
387
|
+
);
|
|
388
|
+
#endif
|
|
389
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_U16
|
|
390
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_U16
|
|
391
|
+
void ffi_keystone_wallet_core_rust_future_cancel_u16(uint64_t handle
|
|
392
|
+
);
|
|
393
|
+
#endif
|
|
394
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_U16
|
|
395
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_U16
|
|
396
|
+
void ffi_keystone_wallet_core_rust_future_free_u16(uint64_t handle
|
|
397
|
+
);
|
|
398
|
+
#endif
|
|
399
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_U16
|
|
400
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_U16
|
|
401
|
+
uint16_t ffi_keystone_wallet_core_rust_future_complete_u16(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
402
|
+
);
|
|
403
|
+
#endif
|
|
404
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_I16
|
|
405
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_I16
|
|
406
|
+
void ffi_keystone_wallet_core_rust_future_poll_i16(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
407
|
+
);
|
|
408
|
+
#endif
|
|
409
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_I16
|
|
410
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_I16
|
|
411
|
+
void ffi_keystone_wallet_core_rust_future_cancel_i16(uint64_t handle
|
|
412
|
+
);
|
|
413
|
+
#endif
|
|
414
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_I16
|
|
415
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_I16
|
|
416
|
+
void ffi_keystone_wallet_core_rust_future_free_i16(uint64_t handle
|
|
417
|
+
);
|
|
418
|
+
#endif
|
|
419
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_I16
|
|
420
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_I16
|
|
421
|
+
int16_t ffi_keystone_wallet_core_rust_future_complete_i16(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
422
|
+
);
|
|
423
|
+
#endif
|
|
424
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_U32
|
|
425
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_U32
|
|
426
|
+
void ffi_keystone_wallet_core_rust_future_poll_u32(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
427
|
+
);
|
|
428
|
+
#endif
|
|
429
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_U32
|
|
430
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_U32
|
|
431
|
+
void ffi_keystone_wallet_core_rust_future_cancel_u32(uint64_t handle
|
|
432
|
+
);
|
|
433
|
+
#endif
|
|
434
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_U32
|
|
435
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_U32
|
|
436
|
+
void ffi_keystone_wallet_core_rust_future_free_u32(uint64_t handle
|
|
437
|
+
);
|
|
438
|
+
#endif
|
|
439
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_U32
|
|
440
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_U32
|
|
441
|
+
uint32_t ffi_keystone_wallet_core_rust_future_complete_u32(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
442
|
+
);
|
|
443
|
+
#endif
|
|
444
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_I32
|
|
445
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_I32
|
|
446
|
+
void ffi_keystone_wallet_core_rust_future_poll_i32(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
447
|
+
);
|
|
448
|
+
#endif
|
|
449
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_I32
|
|
450
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_I32
|
|
451
|
+
void ffi_keystone_wallet_core_rust_future_cancel_i32(uint64_t handle
|
|
452
|
+
);
|
|
453
|
+
#endif
|
|
454
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_I32
|
|
455
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_I32
|
|
456
|
+
void ffi_keystone_wallet_core_rust_future_free_i32(uint64_t handle
|
|
457
|
+
);
|
|
458
|
+
#endif
|
|
459
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_I32
|
|
460
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_I32
|
|
461
|
+
int32_t ffi_keystone_wallet_core_rust_future_complete_i32(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
462
|
+
);
|
|
463
|
+
#endif
|
|
464
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_U64
|
|
465
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_U64
|
|
466
|
+
void ffi_keystone_wallet_core_rust_future_poll_u64(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
467
|
+
);
|
|
468
|
+
#endif
|
|
469
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_U64
|
|
470
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_U64
|
|
471
|
+
void ffi_keystone_wallet_core_rust_future_cancel_u64(uint64_t handle
|
|
472
|
+
);
|
|
473
|
+
#endif
|
|
474
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_U64
|
|
475
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_U64
|
|
476
|
+
void ffi_keystone_wallet_core_rust_future_free_u64(uint64_t handle
|
|
477
|
+
);
|
|
478
|
+
#endif
|
|
479
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_U64
|
|
480
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_U64
|
|
481
|
+
uint64_t ffi_keystone_wallet_core_rust_future_complete_u64(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
482
|
+
);
|
|
483
|
+
#endif
|
|
484
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_I64
|
|
485
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_I64
|
|
486
|
+
void ffi_keystone_wallet_core_rust_future_poll_i64(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
487
|
+
);
|
|
488
|
+
#endif
|
|
489
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_I64
|
|
490
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_I64
|
|
491
|
+
void ffi_keystone_wallet_core_rust_future_cancel_i64(uint64_t handle
|
|
492
|
+
);
|
|
493
|
+
#endif
|
|
494
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_I64
|
|
495
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_I64
|
|
496
|
+
void ffi_keystone_wallet_core_rust_future_free_i64(uint64_t handle
|
|
497
|
+
);
|
|
498
|
+
#endif
|
|
499
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_I64
|
|
500
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_I64
|
|
501
|
+
int64_t ffi_keystone_wallet_core_rust_future_complete_i64(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
502
|
+
);
|
|
503
|
+
#endif
|
|
504
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_F32
|
|
505
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_F32
|
|
506
|
+
void ffi_keystone_wallet_core_rust_future_poll_f32(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
507
|
+
);
|
|
508
|
+
#endif
|
|
509
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_F32
|
|
510
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_F32
|
|
511
|
+
void ffi_keystone_wallet_core_rust_future_cancel_f32(uint64_t handle
|
|
512
|
+
);
|
|
513
|
+
#endif
|
|
514
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_F32
|
|
515
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_F32
|
|
516
|
+
void ffi_keystone_wallet_core_rust_future_free_f32(uint64_t handle
|
|
517
|
+
);
|
|
518
|
+
#endif
|
|
519
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_F32
|
|
520
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_F32
|
|
521
|
+
float ffi_keystone_wallet_core_rust_future_complete_f32(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
522
|
+
);
|
|
523
|
+
#endif
|
|
524
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_F64
|
|
525
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_F64
|
|
526
|
+
void ffi_keystone_wallet_core_rust_future_poll_f64(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
527
|
+
);
|
|
528
|
+
#endif
|
|
529
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_F64
|
|
530
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_F64
|
|
531
|
+
void ffi_keystone_wallet_core_rust_future_cancel_f64(uint64_t handle
|
|
532
|
+
);
|
|
533
|
+
#endif
|
|
534
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_F64
|
|
535
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_F64
|
|
536
|
+
void ffi_keystone_wallet_core_rust_future_free_f64(uint64_t handle
|
|
537
|
+
);
|
|
538
|
+
#endif
|
|
539
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_F64
|
|
540
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_F64
|
|
541
|
+
double ffi_keystone_wallet_core_rust_future_complete_f64(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
542
|
+
);
|
|
543
|
+
#endif
|
|
544
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_POINTER
|
|
545
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_POINTER
|
|
546
|
+
void ffi_keystone_wallet_core_rust_future_poll_pointer(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
547
|
+
);
|
|
548
|
+
#endif
|
|
549
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_POINTER
|
|
550
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_POINTER
|
|
551
|
+
void ffi_keystone_wallet_core_rust_future_cancel_pointer(uint64_t handle
|
|
552
|
+
);
|
|
553
|
+
#endif
|
|
554
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_POINTER
|
|
555
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_POINTER
|
|
556
|
+
void ffi_keystone_wallet_core_rust_future_free_pointer(uint64_t handle
|
|
557
|
+
);
|
|
558
|
+
#endif
|
|
559
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_POINTER
|
|
560
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_POINTER
|
|
561
|
+
void*_Nonnull ffi_keystone_wallet_core_rust_future_complete_pointer(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
562
|
+
);
|
|
563
|
+
#endif
|
|
564
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_RUST_BUFFER
|
|
565
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_RUST_BUFFER
|
|
566
|
+
void ffi_keystone_wallet_core_rust_future_poll_rust_buffer(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
567
|
+
);
|
|
568
|
+
#endif
|
|
569
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_RUST_BUFFER
|
|
570
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_RUST_BUFFER
|
|
571
|
+
void ffi_keystone_wallet_core_rust_future_cancel_rust_buffer(uint64_t handle
|
|
572
|
+
);
|
|
573
|
+
#endif
|
|
574
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_RUST_BUFFER
|
|
575
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_RUST_BUFFER
|
|
576
|
+
void ffi_keystone_wallet_core_rust_future_free_rust_buffer(uint64_t handle
|
|
577
|
+
);
|
|
578
|
+
#endif
|
|
579
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_RUST_BUFFER
|
|
580
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_RUST_BUFFER
|
|
581
|
+
RustBuffer ffi_keystone_wallet_core_rust_future_complete_rust_buffer(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
582
|
+
);
|
|
583
|
+
#endif
|
|
584
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_VOID
|
|
585
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_POLL_VOID
|
|
586
|
+
void ffi_keystone_wallet_core_rust_future_poll_void(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
587
|
+
);
|
|
588
|
+
#endif
|
|
589
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_VOID
|
|
590
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_CANCEL_VOID
|
|
591
|
+
void ffi_keystone_wallet_core_rust_future_cancel_void(uint64_t handle
|
|
592
|
+
);
|
|
593
|
+
#endif
|
|
594
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_VOID
|
|
595
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_FREE_VOID
|
|
596
|
+
void ffi_keystone_wallet_core_rust_future_free_void(uint64_t handle
|
|
597
|
+
);
|
|
598
|
+
#endif
|
|
599
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_VOID
|
|
600
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_RUST_FUTURE_COMPLETE_VOID
|
|
601
|
+
void ffi_keystone_wallet_core_rust_future_complete_void(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
602
|
+
);
|
|
603
|
+
#endif
|
|
604
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_FUNC_ASSEMBLE_TRANSACTION_ADA
|
|
605
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_FUNC_ASSEMBLE_TRANSACTION_ADA
|
|
606
|
+
uint16_t uniffi_keystone_wallet_core_checksum_func_assemble_transaction_ada(void
|
|
607
|
+
|
|
608
|
+
);
|
|
609
|
+
#endif
|
|
610
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_FUNC_COMPOSE_TRANSACTION_ADA
|
|
611
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_FUNC_COMPOSE_TRANSACTION_ADA
|
|
612
|
+
uint16_t uniffi_keystone_wallet_core_checksum_func_compose_transaction_ada(void
|
|
613
|
+
|
|
614
|
+
);
|
|
615
|
+
#endif
|
|
616
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_FUNC_CREATE_PCZT
|
|
617
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_FUNC_CREATE_PCZT
|
|
618
|
+
uint16_t uniffi_keystone_wallet_core_checksum_func_create_pczt(void
|
|
619
|
+
|
|
620
|
+
);
|
|
621
|
+
#endif
|
|
622
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_FUNC_CREATE_TRANSPARENT_PCZT
|
|
623
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_FUNC_CREATE_TRANSPARENT_PCZT
|
|
624
|
+
uint16_t uniffi_keystone_wallet_core_checksum_func_create_transparent_pczt(void
|
|
625
|
+
|
|
626
|
+
);
|
|
627
|
+
#endif
|
|
628
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_FUNC_CREATE_TRANSPARENT_PCZT_FOR_SWAPKIT
|
|
629
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_FUNC_CREATE_TRANSPARENT_PCZT_FOR_SWAPKIT
|
|
630
|
+
uint16_t uniffi_keystone_wallet_core_checksum_func_create_transparent_pczt_for_swapkit(void
|
|
631
|
+
|
|
632
|
+
);
|
|
633
|
+
#endif
|
|
634
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_FUNC_DERIVE_ADDRESS_BY_PATH_ADA
|
|
635
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_FUNC_DERIVE_ADDRESS_BY_PATH_ADA
|
|
636
|
+
uint16_t uniffi_keystone_wallet_core_checksum_func_derive_address_by_path_ada(void
|
|
637
|
+
|
|
638
|
+
);
|
|
639
|
+
#endif
|
|
640
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_FUNC_DERIVE_ENTERPRISE_ADDRESS_BY_PATH_ADA
|
|
641
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_FUNC_DERIVE_ENTERPRISE_ADDRESS_BY_PATH_ADA
|
|
642
|
+
uint16_t uniffi_keystone_wallet_core_checksum_func_derive_enterprise_address_by_path_ada(void
|
|
643
|
+
|
|
644
|
+
);
|
|
645
|
+
#endif
|
|
646
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_FUNC_DERIVE_PUBKEY_BY_PATH_ADA
|
|
647
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_FUNC_DERIVE_PUBKEY_BY_PATH_ADA
|
|
648
|
+
uint16_t uniffi_keystone_wallet_core_checksum_func_derive_pubkey_by_path_ada(void
|
|
649
|
+
|
|
650
|
+
);
|
|
651
|
+
#endif
|
|
652
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_FUNC_DERIVE_STAKE_ADDRESS_ADA
|
|
653
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_FUNC_DERIVE_STAKE_ADDRESS_ADA
|
|
654
|
+
uint16_t uniffi_keystone_wallet_core_checksum_func_derive_stake_address_ada(void
|
|
655
|
+
|
|
656
|
+
);
|
|
657
|
+
#endif
|
|
658
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_FUNC_EXTRACT_TRANSACTION_INPUTS_ADA
|
|
659
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_FUNC_EXTRACT_TRANSACTION_INPUTS_ADA
|
|
660
|
+
uint16_t uniffi_keystone_wallet_core_checksum_func_extract_transaction_inputs_ada(void
|
|
661
|
+
|
|
662
|
+
);
|
|
663
|
+
#endif
|
|
664
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_FUNC_FINALIZE_THEN_EXTRACT_PCZT_TRANSACTION
|
|
665
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_FUNC_FINALIZE_THEN_EXTRACT_PCZT_TRANSACTION
|
|
666
|
+
uint16_t uniffi_keystone_wallet_core_checksum_func_finalize_then_extract_pczt_transaction(void
|
|
667
|
+
|
|
668
|
+
);
|
|
669
|
+
#endif
|
|
670
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_METHOD_PCZT_SERIALIZE
|
|
671
|
+
#define UNIFFI_FFIDEF_UNIFFI_KEYSTONE_WALLET_CORE_CHECKSUM_METHOD_PCZT_SERIALIZE
|
|
672
|
+
uint16_t uniffi_keystone_wallet_core_checksum_method_pczt_serialize(void
|
|
673
|
+
|
|
674
|
+
);
|
|
675
|
+
#endif
|
|
676
|
+
#ifndef UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_UNIFFI_CONTRACT_VERSION
|
|
677
|
+
#define UNIFFI_FFIDEF_FFI_KEYSTONE_WALLET_CORE_UNIFFI_CONTRACT_VERSION
|
|
678
|
+
uint32_t ffi_keystone_wallet_core_uniffi_contract_version(void
|
|
679
|
+
|
|
680
|
+
);
|
|
681
|
+
#endif
|
|
682
|
+
|