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
For example, OpenAPI says there should be an endpoint /zeta-chain/emissions/params:
/zeta-chain/emissions/params
https://github.com/zeta-chain/node/blob/26a4abe19ea4d70534fb5113d00c77b901a6b682/docs/openapi/openapi.swagger.yaml#L27234
In reality, this endpoint doesn't exist and we have /zeta-chain/zetacore/emissions/params, instead:
/zeta-chain/zetacore/emissions/params
https://zetachain-athens.blockpi.network/lcd/v1/public/zeta-chain/zetacore/emissions/params
This is because we still have zetacore in proto and there is a mismatch between directories and proto package names:
zetacore
node/proto/emissions/params.proto
Line 2 in 26a4abe
Right now all ZetaChain's custom endpoints are not accessible from the OpenAPI browser.
The text was updated successfully, but these errors were encountered:
I propose we refactor this to:
package zetachain.emissions;
To keep things simple.
Sorry, something went wrong.
Ideally, instead of /zeta-chain/zetacore/emissions/... we have /zeta-chain/emissions/....
/zeta-chain/zetacore/emissions/...
/zeta-chain/emissions/...
No longer relevant: #1282
No branches or pull requests
For example, OpenAPI says there should be an endpoint
/zeta-chain/emissions/params
:https://github.com/zeta-chain/node/blob/26a4abe19ea4d70534fb5113d00c77b901a6b682/docs/openapi/openapi.swagger.yaml#L27234
In reality, this endpoint doesn't exist and we have
/zeta-chain/zetacore/emissions/params
, instead:https://zetachain-athens.blockpi.network/lcd/v1/public/zeta-chain/zetacore/emissions/params
This is because we still have
zetacore
in proto and there is a mismatch between directories and proto package names:node/proto/emissions/params.proto
Line 2 in 26a4abe
Right now all ZetaChain's custom endpoints are not accessible from the OpenAPI browser.
The text was updated successfully, but these errors were encountered: