Tx Status Not Found

How to know tx status (SUCCESS/FAILED/RUNTIME_ERROR。。。。)?

I don’t find any fileds about tx status?

does txs all successful on block?

When you submit a tx using goal the call will not return until you get a success, failure or error. You can specify a flag to return instantly. You can look at pending txs using: https://developer.algorand.org/docs/goal-node#goal-node-pendingtxns

Additionally using the SDKs you can submit a tx and then get the txid. You can use this txid to check the status of the tx with API call. See https://developer.algorand.org/docs/using-sdks-and-rest-apis

For Java for example you can check the tx status like in this example:
https://developer.algorand.org/docs/java-sdk#examples-submit-file