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
When get account balance by node RPC API, the ABCIQuery's path "/store/acc/key" returns amino-encoded string. S9xMJwqZAQoU2h8pqmnHMwEZj0aev9+Dl6RdX/gSCwoDQk5CEMW8zopAEg4KCEJUQ0ItMURFELDqARIRCgdDT1MtMkU0EICS+6+G2QgSEAoHR0lWLTk0RRCAoLeH6QUSEAoJVVNEU0ItMUFDELC2wwEaJuta6YchAxtKZAZBHnTpu+kOOTEacbgw1TB14nwSIZIEBc40M+6xIIH5Aij2Pg==
after base-64 decode, I tried to decode the response to struct type ResponseQuery struct { Code uint32 Log string Info string Index int64 Key []byte Value []byte Proof *merkle.Proof Height int64 Codespace string }
but failed.
so how can I get the JSON result shown in document ?
The text was updated successfully, but these errors were encountered:
When get account balance by node RPC API, the ABCIQuery's path "/store/acc/key" returns amino-encoded string.
S9xMJwqZAQoU2h8pqmnHMwEZj0aev9+Dl6RdX/gSCwoDQk5CEMW8zopAEg4KCEJUQ0ItMURFELDqARIRCgdDT1MtMkU0EICS+6+G2QgSEAoHR0lWLTk0RRCAoLeH6QUSEAoJVVNEU0ItMUFDELC2wwEaJuta6YchAxtKZAZBHnTpu+kOOTEacbgw1TB14nwSIZIEBc40M+6xIIH5Aij2Pg==
after base-64 decode, I tried to decode the response to struct
type ResponseQuery struct { Code uint32 Log string Info string Index int64 Key []byte Value []byte Proof *merkle.Proof Height int64 Codespace string }
but failed.
so how can I get the JSON result shown in document ?
The text was updated successfully, but these errors were encountered: