tonos-cli -j decode body --abi 1_Accumulator.abi.json "$body"
{
"Error": "Failed to decode header: Deserialization error Not enough remaining bits in the cell: data: 258..288, references: 0..0, data slice:0000019c, cell:bits: 288 refs: 0 data: 6467ff100000000000000000000000000000000000000000000000000000000000000067\n"
}
Notes:
In previous script _add1 method of contract was called. It emits event TryEvent that produces an issue, if we try to decode the corresponding body of external out message. But if you call _add2 method instead (tonos-cli_newww/tonos-cli/target/release/tonos-cli -j call --abi 1_Accumulator.abi.json $addr add_2 '{"value":"101"}' --sign key.json), it will be ok in the end. And one gets the following output. So it looks like decode body command work is unstable?
Notes: