We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently while passing Buffers and UInt8Arrays over json-rpc changes the type into an object as mentioned bellow For Buffers
Buffers
UInt8Arrays
{ type: "Buffer", data: [120, 32, 45] }
or For Uint8Arrays
{"0": 120, "1": 32, "2": 45}
This causes an issues when sending a zomeCall that expects a HoloHash/Uint8Array: #73
HoloHash
Uint8Array
The text was updated successfully, but these errors were encountered:
Updated the payload for zomeCall to be encoded on the web-sdk and decoded on holo-envoy.
zomeCall
Also, note that we still cannot pass buffers so update the UI to have Uint8Arrays instead
Update to use msgpack instead of json-rpc.
Sorry, something went wrong.
Development branch has updated to use msgpack instead of json-rpc
holo-envoy/src/index.ts
Line 16 in 7a8ad4c
I think we can close this issue.
No branches or pull requests
Currently while passing
Buffers
andUInt8Arrays
over json-rpc changes the type into an object as mentioned bellowFor Buffers
{ type: "Buffer", data: [120, 32, 45] }
or For Uint8Arrays
This causes an issues when sending a zomeCall that expects a
HoloHash
/Uint8Array
: #73The text was updated successfully, but these errors were encountered: