github.com/ari-anchor/sei-tendermint@v0.0.0-20230519144642-dc826b7b56bb/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  > finalize_block "abc"
    12  -> code: OK
    13  -> code: OK
    14  -> data.hex: 0x0200000000000000
    15  
    16  > commit 
    17  -> code: OK
    18  
    19  > info 
    20  -> code: OK
    21  -> data: {"size":1}
    22  -> data.hex: 0x7B2273697A65223A317D
    23  
    24  > query "abc"
    25  -> code: OK
    26  -> log: exists
    27  -> height: 1
    28  -> key: abc
    29  -> key.hex: 616263
    30  -> value: abc
    31  -> value.hex: 616263
    32  
    33  > finalize_block "def=xyz" "ghi=123"
    34  -> code: OK
    35  -> code: OK
    36  -> code: OK
    37  -> data.hex: 0x0600000000000000
    38  
    39  > commit 
    40  -> code: OK
    41  
    42  > query "def"
    43  -> code: OK
    44  -> log: exists
    45  -> height: 2
    46  -> key: def
    47  -> key.hex: 646566
    48  -> value: xyz
    49  -> value.hex: 78797A
    50