diff options
| author | cyan <cyjan@mrcyjanek.net> | 2024-09-19 10:59:07 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-19 10:59:07 +0200 |
| commit | d1940944943cd79ce1f2b2080456dd28bec5c36f (patch) | |
| tree | 8a2a29c5de6cec47ccefff3472f38a8ecb9fb8af /impls/monero.ts/mod.ts | |
| parent | 0b91e91d19d4a11d753f9bdda56398bcfcdb4260 (diff) | |
feat: deno ffi bindings (#40)
* initial ts commit
* monero.ts improvements
* test on latest, build on debian:bookworm
* feat: upstream changes to bindings
* chore: update checksums
* feat: allow manually loading dylib
* chore: add readme
* fix: free strings after being read to prevent potential memory leaks
* fix: load dylib
* fix: checksum checks segfaulting because of freeing const variables
---------
Co-authored-by: Mateusz Franik <47059999+Im-Beast@users.noreply.github.com>
Co-authored-by: Im-Beast <franik.mateusz@gmail.com>
Diffstat (limited to 'impls/monero.ts/mod.ts')
| -rw-r--r-- | impls/monero.ts/mod.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/impls/monero.ts/mod.ts b/impls/monero.ts/mod.ts new file mode 100644 index 0000000..1eca773 --- /dev/null +++ b/impls/monero.ts/mod.ts @@ -0,0 +1,6 @@ +export * from "./src/bindings.ts"; +export * from "./src/pending_transaction.ts"; +export * from "./src/transaction_history.ts"; +export * from "./src/transaction_info.ts"; +export * from "./src/wallet.ts"; +export * from "./src/wallet_manager.ts"; |
