var result = new TransactionResult( TransactionHash: "0xabc123...", IsConfirmed: true, BlockHeight: 1234567, Timestamp: DateTimeOffset.UtcNow);if (result.IsConfirmed){ Console.WriteLine($"Confirmed in block {result.BlockHeight}");}
This record contains all relevant information about a transaction after it has been
submitted to the Neo N3 blockchain, including its hash, confirmation status, and
the block height at which it was included.