@@ -14,24 +14,50 @@ flow transactions get <tx_id>
1414## Example Usage
1515
1616``` shell
17- > flow transactions get ff35821007322405608c0d3da79312617f8d16e118afe63e764b5e68edc96dd5 --host access.mainnet.nodes.onflow.org:9000
18-
19- ID ff35821007322405608c0d3da79312617f8d16e118afe63e764b5e68edc96dd5
20- Status SEALED
21- Payer 12e354a23e4f791d
22- Events
23- Index 0
24- Type flow.AccountCreated
25- Tx ID ff35821007322405608c0d3da79312617f8d16e118afe63e764b5e68edc96dd5
26- Values
27- address (Address) 18c4931b5f3c7151
28-
29- Index 1
30- Type flow.AccountKeyAdded
31- Tx ID ff35821007322405608c0d3da79312617f8d16e118afe63e764b5e68edc96dd5
32- Values
33- address (Address) 18c4931b5f3c7151
34- publicKey (Unknown) f847b8404c296679364d2...7b168678cc762bc08f342d8d92e0a36e6ecfdcf15850721821823e8
17+ > flow transactions get 40bc4b100c1930c61381c22e0f4c10a7f5827975ee25715527c1061b8d71e5aa --network mainnet
18+
19+ Status ✅ SEALED
20+ ID 40bc4b100c1930c61381c22e0f4c10a7f5827975ee25715527c1061b8d71e5aa
21+ Payer 18eb4ee6b3c026d2
22+ Authorizers [18eb4ee6b3c026d2]
23+
24+ Proposal Key:
25+ Address 18eb4ee6b3c026d2
26+ Index 11
27+ Sequence 17930
28+
29+ Payload Signature 0: 18eb4ee6b3c026d2
30+ Payload Signature 1: 18eb4ee6b3c026d2
31+ Envelope Signature 0: 18eb4ee6b3c026d2
32+ Signatures (minimized, use --include signatures)
33+
34+ Events:
35+ Index 0
36+ Type A.1654653399040a61.FlowToken.TokensWithdrawn
37+ Tx ID 40bc4b100c1930c61381c22e0f4c10a7f5827975ee25715527c1061b8d71e5aa
38+ Values
39+ - amount (UFix64): 0.00100000
40+ - from ({}? ): 18eb4ee6b3c026d2
41+
42+ Index 1
43+ Type A.1654653399040a61.FlowToken.TokensDeposited
44+ Tx ID 40bc4b100c1930c61381c22e0f4c10a7f5827975ee25715527c1061b8d71e5aa
45+ Values
46+ - amount (UFix64): 0.00100000
47+ - to ({}? ): 5068e27f275c546c
48+
49+ Index 2
50+ Type A.18eb4ee6b3c026d2.PrivateReceiverForwarder.PrivateDeposit
51+ Tx ID 40bc4b100c1930c61381c22e0f4c10a7f5827975ee25715527c1061b8d71e5aa
52+ Values
53+ - amount (UFix64): 0.00100000
54+ - to ({}? ): 5068e27f275c546c
55+
56+
57+
58+ Code (hidden, use --include code)
59+
60+ Payload (hidden, use --include payload)
3561```
3662
3763## Arguments
@@ -45,12 +71,18 @@ The first argument is the ID (hash) of the transaction.
4571
4672## Flags
4773
48- ### Display Transaction Code
74+ ### Include Fields
75+
76+ - Flag: ` --include `
77+ - Valid inputs: ` code ` , ` payload ` , ` signatures `
78+
79+ Specify fields to include in the result output. Applies only to the text output.
80+
81+ ### Code
4982
5083- Flag: ` --code `
51- - Default: ` false `
5284
53- Indicate whether to print the transaction Cadence code .
85+ ⚠️ Deprecated: use include flag .
5486
5587### Wait for Seal
5688
@@ -60,6 +92,13 @@ Indicate whether to print the transaction Cadence code.
6092Indicate whether to wait for the transaction to be sealed
6193before displaying the result.
6294
95+ ### Exclude Fields
96+
97+ - Flag: ` --exclude `
98+ - Valid inputs: ` events `
99+
100+ Specify fields to exclude from the result output. Applies only to the text output.
101+
63102### Host
64103
65104- Flag: ` --host `
0 commit comments