Print name of invoked method in transacation #2
Labels
No labels
good first issue
Infrastructure
blocked
bug
config
discussion
documentation
duplicate
enhancement
go
help wanted
internal
invalid
kludge
observability
perfomance
question
refactoring
wontfix
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: TrueCloudLab/monza#2
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
monza explore
command provides blockchain explorer to see through blocks, transactions and notifications they produce. Most transactions call some smart-contract methods and sometimes it can produce notifications. It would be nice to see details about invoked methods in the UI. For example, in the image above, add some transaction details to notification pane even if it did not produce any notification (e.g.Conrtact: xxx; Method: "some-method"
)To find method name and contract address, try to parse bytecode of the transaction. Bytecode can contain CALL opcode which calls a method in smart-contract.
Print names of invoked method in transacationto Print name of invoked method in transacation@AndrewDanilin
CALL
->SYSCALL "System.Contract.Call"
For testing, might be useful:
https://git.frostfs.info/TrueCloudLab/frostfs-dev-env
https://git.frostfs.info/TrueCloudLab/frostfs-aio/
AndrewDanilin referenced this issue2023-11-21 21:55:34 +00:00
Done in #3
explore
command #5