-
Notifications
You must be signed in to change notification settings - Fork 345
New issue
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
Consider kebab-casing PayForBlobs
in the CLI
#2901
Comments
We could do this in a non-breaking way if we retain the PascalCase names as aliases. In other words, these would all be valid and for the same command: celestia-appd tx blob pay-for-blobs
celestia-appd tx blob pay-for-blob
celestia-appd tx blob PayForBlobs
celestia-appd tx blob PayForBlob |
rootulp
added a commit
that referenced
this issue
Jan 8, 2024
Closes #2901 ## Testing The previous commands still work b/c they are aliases: ``` $ ./build/celestia-appd tx blob pay-for-blob Error: pay-for-blob requires two arguments: namespaceID and blob $ ./build/celestia-appd tx blob pay-for-blobs Error: pay-for-blob requires two arguments: namespaceID and blob $ ./build/celestia-appd tx blob PayForBlob Error: pay-for-blob requires two arguments: namespaceID and blob $ ./build/celestia-appd tx blob PayForBlobs Error: pay-for-blob requires two arguments: namespaceID and blob ```
0xchainlover
pushed a commit
to celestia-org/celestia-app
that referenced
this issue
Aug 1, 2024
Closes celestiaorg/celestia-app#2901 ## Testing The previous commands still work b/c they are aliases: ``` $ ./build/celestia-appd tx blob pay-for-blob Error: pay-for-blob requires two arguments: namespaceID and blob $ ./build/celestia-appd tx blob pay-for-blobs Error: pay-for-blob requires two arguments: namespaceID and blob $ ./build/celestia-appd tx blob PayForBlob Error: pay-for-blob requires two arguments: namespaceID and blob $ ./build/celestia-appd tx blob PayForBlobs Error: pay-for-blob requires two arguments: namespaceID and blob ```
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Context
Originally posted by @cmwaters in #2856 (comment)
Problem
All commands in the celestia-app CLI use kebab-casing. I.e.
celestia-appd tx ibc-transfer
.Proposal
Consider the breaking change of renaming
PayForBlobs
/PayForBlob
topay-for-blob
The text was updated successfully, but these errors were encountered: