RPC base query failed
Code
RPC/BASE/QUERY_FAILED
What it means
This is a catch-all wrapper used when RPCBase.query() fails and the original error does not
cleanly map to a more specific query code.
When it happens
- A catch-all wrapper code for failures during
RPCBase.query()when the original error is unknown or heterogeneous.
Typical scenarios:
- Node query endpoint errors or timeouts
- Network connectivity issues
- Unexpected response shape or decoding failures
How to handle
- Inspect
meta.viaand query params to narrow down the failing call.
Recommended meta keys:
meta.via: include both the wrapper (rpc.base.query) and the contract signature (<pkg>.<func>)meta.params: safe query parameters (path,func,args,height,prove,id)
Last updated on