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
The queries resolve to the same endpoint, making the one of them defunct.
// AddressBytesToString converts Account Address bytes to string rpc AddressBytesToString(AddressBytesToStringRequest) returns (AddressBytesToStringResponse) { option (cosmos_proto.method_added_in) = "cosmos-sdk 0.46"; option (google.api.http).get = "/cosmos/auth/v1beta1/bech32/{address_bytes}"; } // AddressStringToBytes converts Address string to bytes rpc AddressStringToBytes(AddressStringToBytesRequest) returns (AddressStringToBytesResponse) { option (cosmos_proto.method_added_in) = "cosmos-sdk 0.46"; option (google.api.http).get = "/cosmos/auth/v1beta1/bech32/{address_string}"; }
These both end up producing /cosmos/auth/v1beta1/bech32/:wildcard.
/cosmos/auth/v1beta1/bech32/:wildcard
Should probably change the string RPC annotation?
main
query the endpoint above. no way to get the string version. it always uses the bytes endpoint.
string
bytes
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is there an existing issue for this?
What happened?
The queries resolve to the same endpoint, making the one of them defunct.
These both end up producing
/cosmos/auth/v1beta1/bech32/:wildcard
.Should probably change the string RPC annotation?
Cosmos SDK Version
main
How to reproduce?
query the endpoint above. no way to get the
string
version. it always uses thebytes
endpoint.The text was updated successfully, but these errors were encountered: