You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The JavaScript client to daemon RPC already supports a number of binary calls. For example, getBlocksByHeight() uses the binary RPC call get_blocks_by_height.bin.
This issue requests support for the remaining unimplemented binary calls in MoneroDaemonRpc.js. Their implementation should follow the patterns of the already implemented binary calls, but may require additional processing like de-serializing some of the response fields which are also binary.
The remaining binary calls to be implemented are documented by the failing tests in TestMoneroDaemonRpc.js.
The text was updated successfully, but these errors were encountered:
Add typescript support
Change TestSampleCode.ts to TestSampleCode.js to apply patch
Apply patch for Haveno daemon config
Rename TestSampleCode.js back to TestSampleCode.ts.
Fix duplicate merge conflict resolutions.
Fix models: if(value) -> if(value !== undefined).
Disaster recovery commit #1.
(not so) stable check-in.
Sanity check (in).
Add tons of debug logs.
Test hang error solved (at least without worker).
Various debug logs added and set proxyToWorker back to "false
Remove unused "babel-plugin-root-import"
The JavaScript client to daemon RPC already supports a number of binary calls. For example,
getBlocksByHeight()
uses the binary RPC callget_blocks_by_height.bin
.This issue requests support for the remaining unimplemented binary calls in MoneroDaemonRpc.js. Their implementation should follow the patterns of the already implemented binary calls, but may require additional processing like de-serializing some of the response fields which are also binary.
The remaining binary calls to be implemented are documented by the failing tests in TestMoneroDaemonRpc.js.
The text was updated successfully, but these errors were encountered: