monero-ts
monero-ts copied to clipboard
TypeScript library for using Monero
Hi I don't know what is going on, but the code below works in 0.7.12: ```js import monerojs from 'monero-javascript'; // import monerojs from 'monero-ts'; // if you use newer...
`MoneroTx.getFullHex` is typed as `string`, but it sometimes also returns `undefined`, it should be typed as `string | undefined`. The code below is an example of `undefined` return: ```ts import...
Partially resolves https://github.com/woodser/monero-ts/issues/144
This PR adds support for running test suite using dockerized `monerod` and `monero-wallet-cli` Also this dockerized setup is used in GitHub Actions. Tests are ran upon any push onto `master`,...
`monero-ts` can benefit from GH Actions for CI, running tests on new commits in branches and PRs, detect changes to C++ code and rebuild emscription. Also package the release to...
* Eliminate synchronous fs calls * Allow for fs in browser
If I install a listener for wallet sync and try to save the wallet periodically while it syncing (so that the sync process is not lost between browser page reloads)...
This PR resolves https://github.com/woodser/monero-ts/issues/144
I've been trying to make MoneroWalletFull work in browser and have found out that html5-fs is not compatible with node:fs and it never worked for me in browser. I have...
This issue requests fixing `save()` so that it doesn't fail with concurrent calls. This could be fixed by protecting this file handling with a mutex from `async-mutex` package, or other...