github.com/pokt-network/tendermint@v0.32.11-0.20230426215212-59310158d3e9/abci/tests/test_cli/ex1.abci.out (about) 1 > echo hello 2 -> code: OK 3 -> data: hello 4 -> data.hex: 0x68656C6C6F 5 6 > info 7 -> code: OK 8 -> data: {"size":0} 9 -> data.hex: 0x7B2273697A65223A307D 10 11 > commit 12 -> code: OK 13 -> data.hex: 0x0000000000000000 14 15 > deliver_tx "abc" 16 -> code: OK 17 18 > info 19 -> code: OK 20 -> data: {"size":1} 21 -> data.hex: 0x7B2273697A65223A317D 22 23 > commit 24 -> code: OK 25 -> data.hex: 0x0200000000000000 26 27 > query "abc" 28 -> code: OK 29 -> log: exists 30 -> height: 2 31 -> key: abc 32 -> key.hex: 616263 33 -> value: abc 34 -> value.hex: 616263 35 36 > deliver_tx "def=xyz" 37 -> code: OK 38 39 > commit 40 -> code: OK 41 -> data.hex: 0x0400000000000000 42 43 > query "def" 44 -> code: OK 45 -> log: exists 46 -> height: 3 47 -> key: def 48 -> key.hex: 646566 49 -> value: xyz 50 -> value.hex: 78797A 51