You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/src/developing/clients/jsonrpc-api.md
+10-10
Original file line number
Diff line number
Diff line change
@@ -394,10 +394,10 @@ The result field will be an object with the following fields:
394
394
-`fee: <u64>` - fee this transaction was charged, as u64 integer
395
395
-`preBalances: <array>` - array of u64 account balances from before the transaction was processed
396
396
-`postBalances: <array>` - array of u64 account balances after the transaction was processed
397
-
-`innerInstructions: <array|undefined>` - List of [inner instructions](#inner-instructions-structure) or omitted if inner instruction recording was not yet enabled during this transaction
397
+
-`innerInstructions: <array|null>` - List of [inner instructions](#inner-instructions-structure) or `null` if inner instruction recording was not enabled during this transaction
398
398
-`preTokenBalances: <array|undefined>` - List of [token balances](#token-balances-structure) from before the transaction was processed or omitted if token balance recording was not yet enabled during this transaction
399
399
-`postTokenBalances: <array|undefined>` - List of [token balances](#token-balances-structure) from after the transaction was processed or omitted if token balance recording was not yet enabled during this transaction
400
-
-`logMessages: <array>` - array of string log messages or omitted if log message recording was not yet enabled during this transaction
400
+
-`logMessages: <array|null>` - array of string log messages or `null` if log message recording was not enabled during this transaction
401
401
- DEPRECATED: `status: <object>` - Transaction status
402
402
-`"Ok": <null>` - Transaction was successful
403
403
-`"Err": <ERR>` - Transaction failed with TransactionError
@@ -520,8 +520,8 @@ Result:
520
520
"meta": {
521
521
"err": null,
522
522
"fee": 5000,
523
-
"innerInstructions": [],
524
-
"logMessages": [],
523
+
"innerInstructions": null,
524
+
"logMessages": null,
525
525
"postBalances": [
526
526
499998932500,
527
527
26858640,
@@ -2752,10 +2752,10 @@ Returns transaction details for a confirmed transaction
2752
2752
-`fee: <u64>` - fee this transaction was charged, as u64 integer
2753
2753
-`preBalances: <array>` - array of u64 account balances from before the transaction was processed
2754
2754
-`postBalances: <array>` - array of u64 account balances after the transaction was processed
2755
-
-`innerInstructions: <array|undefined>` - List of [inner instructions](#inner-instructions-structure) or omitted if inner instruction recording was not yet enabled during this transaction
2755
+
-`innerInstructions: <array|null>` - List of [inner instructions](#inner-instructions-structure) or `null` if inner instruction recording was not enabled during this transaction
2756
2756
-`preTokenBalances: <array|undefined>` - List of [token balances](#token-balances-structure) from before the transaction was processed or omitted if token balance recording was not yet enabled during this transaction
2757
2757
-`postTokenBalances: <array|undefined>` - List of [token balances](#token-balances-structure) from after the transaction was processed or omitted if token balance recording was not yet enabled during this transaction
2758
-
-`logMessages: <array>` - array of string log messages or omitted if log message recording was not yet enabled during this transaction
2758
+
-`logMessages: <array|null>` - array of string log messages or `null` if log message recording was not enabled during this transaction
2759
2759
- DEPRECATED: `status: <object>` - Transaction status
2760
2760
-`"Ok": <null>` - Transaction was successful
2761
2761
-`"Err": <ERR>` - Transaction failed with TransactionError
@@ -4144,10 +4144,10 @@ The result field will be an object with the following fields:
4144
4144
-`fee: <u64>` - fee this transaction was charged, as u64 integer
4145
4145
-`preBalances: <array>` - array of u64 account balances from before the transaction was processed
4146
4146
-`postBalances: <array>` - array of u64 account balances after the transaction was processed
4147
-
-`innerInstructions: <array|undefined>` - List of [inner instructions](#inner-instructions-structure) or omitted if inner instruction recording was not yet enabled during this transaction
4147
+
-`innerInstructions: <array|null>` - List of [inner instructions](#inner-instructions-structure) or `null` if inner instruction recording was not enabled during this transaction
4148
4148
-`preTokenBalances: <array|undefined>` - List of [token balances](#token-balances-structure) from before the transaction was processed or omitted if token balance recording was not yet enabled during this transaction
4149
4149
-`postTokenBalances: <array|undefined>` - List of [token balances](#token-balances-structure) from after the transaction was processed or omitted if token balance recording was not yet enabled during this transaction
4150
-
-`logMessages: <array>` - array of string log messages or omitted if log message recording was not yet enabled during this transaction
4150
+
-`logMessages: <array|null>` - array of string log messages or `null` if log message recording was not enabled during this transaction
4151
4151
- DEPRECATED: `status: <object>` - Transaction status
4152
4152
-`"Ok": <null>` - Transaction was successful
4153
4153
-`"Err": <ERR>` - Transaction failed with TransactionError
@@ -4460,10 +4460,10 @@ Returns transaction details for a confirmed transaction
4460
4460
-`fee: <u64>` - fee this transaction was charged, as u64 integer
4461
4461
-`preBalances: <array>` - array of u64 account balances from before the transaction was processed
4462
4462
-`postBalances: <array>` - array of u64 account balances after the transaction was processed
4463
-
-`innerInstructions: <array|undefined>` - List of [inner instructions](#inner-instructions-structure) or omitted if inner instruction recording was not yet enabled during this transaction
4463
+
-`innerInstructions: <array|null>` - List of [inner instructions](#inner-instructions-structure) or `null` if inner instruction recording was not enabled during this transaction
4464
4464
-`preTokenBalances: <array|undefined>` - List of [token balances](#token-balances-structure) from before the transaction was processed or omitted if token balance recording was not yet enabled during this transaction
4465
4465
-`postTokenBalances: <array|undefined>` - List of [token balances](#token-balances-structure) from after the transaction was processed or omitted if token balance recording was not yet enabled during this transaction
4466
-
-`logMessages: <array>` - array of string log messages or omitted if log message recording was not yet enabled during this transaction
4466
+
-`logMessages: <array|null>` - array of string log messages or `null` if log message recording was not enabled during this transaction
4467
4467
- DEPRECATED: `status: <object>` - Transaction status
4468
4468
-`"Ok": <null>` - Transaction was successful
4469
4469
-`"Err": <ERR>` - Transaction failed with TransactionError
0 commit comments