-
Notifications
You must be signed in to change notification settings - Fork 277
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
feat(cli): add iroha transaction get
and other important commands
#5289
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Signed-off-by: Shunkichi Sato <49983831+s8sato@users.noreply.github.com>
Signed-off-by: Shunkichi Sato <49983831+s8sato@users.noreply.github.com>
This was referenced Jan 27, 2025
s8sato
commented
Jan 27, 2025
Signed-off-by: Shunkichi Sato <49983831+s8sato@users.noreply.github.com>
s8sato
commented
Jan 28, 2025
Signed-off-by: Shunkichi Sato <49983831+s8sato@users.noreply.github.com>
Signed-off-by: Shunkichi Sato <49983831+s8sato@users.noreply.github.com>
Signed-off-by: Shunkichi Sato <49983831+s8sato@users.noreply.github.com>
…mands Signed-off-by: Shunkichi Sato <49983831+s8sato@users.noreply.github.com>
4f5d6d5
to
1c5adf3
Compare
Signed-off-by: Shunkichi Sato <49983831+s8sato@users.noreply.github.com>
aoyako
previously approved these changes
Feb 5, 2025
…mands Signed-off-by: Shunkichi Sato <49983831+s8sato@users.noreply.github.com>
Signed-off-by: Shunkichi Sato <49983831+s8sato@users.noreply.github.com>
…mands Signed-off-by: Shunkichi Sato <49983831+s8sato@users.noreply.github.com>
0093bea
to
8bcdcac
Compare
…mands Signed-off-by: Shunkichi Sato <49983831+s8sato@users.noreply.github.com>
s8sato
commented
Feb 7, 2025
aoyako
previously approved these changes
Feb 12, 2025
mversic
previously approved these changes
Feb 12, 2025
…mands Signed-off-by: Shunkichi Sato <49983831+s8sato@users.noreply.github.com>
…iroha#5311) This reverts commit bdff4af. Signed-off-by: Shunkichi Sato <49983831+s8sato@users.noreply.github.com>
Signed-off-by: Shunkichi Sato <49983831+s8sato@users.noreply.github.com>
536f38a
to
a0b8b2f
Compare
aoyako
approved these changes
Feb 12, 2025
mversic
approved these changes
Feb 13, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Context
Implements essential but previously missing commands in the client CLI. See Command Line Help
Register<Trigger>
ExecuteTrigger
Custom
remain unimplementedFindAccountsWithAsset
FindBlocks
FindBlockHeaders
remain unimplementedLog
instruction fails to serialize due to non-sensical#[serde(flatten)]
on thelevel
field #5305Migration Guide
Some commands are changed in usage or behavior:
iroha json query
->iroha query stdin
iroha json transaction
->iroha transaction stdin
iroha wasm
->iroha transaction wasm
iroha * metadata
->iroha * meta
iroha asset
get-key-value
->getkv
set-key-value
->setkv
remove-key-value
->removekv
iroha events
data
->state
transaction-pipeline
->transaction
block-pipeline
->block
execute-trigger
->trigger-execute
trigger-completed
->trigger-complete
iroha * list all
->iroha * list all --verbose
iroha * list all
lists only IDs and is intended to be used in combination withiroha * get --id
, which retrieves the details of a single entry.Checklist
CONTRIBUTING.md
.