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: openrpc.json
+33Lines changed: 33 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -7045,6 +7045,22 @@
7045
7045
],
7046
7046
"title": "NonDelegateAction"
7047
7047
},
7048
+
"NonceMode": {
7049
+
"description": "Controls how the transaction nonce is validated against the access key nonce.",
7050
+
"oneOf": [
7051
+
{
7052
+
"const": "monotonic",
7053
+
"description": "Any nonce strictly greater than the current access key nonce (default behavior).",
7054
+
"type": "string"
7055
+
},
7056
+
{
7057
+
"const": "strict",
7058
+
"description": "Nonce must be exactly `ak_nonce + 1` (sequential ordering).",
7059
+
"type": "string"
7060
+
}
7061
+
],
7062
+
"title": "NonceMode"
7063
+
},
7048
7064
"PeerId": {
7049
7065
"allOf": [
7050
7066
{
@@ -8343,6 +8359,12 @@
8343
8359
"null"
8344
8360
]
8345
8361
},
8362
+
"transaction_pool_strict_nonce_ttl_blocks": {
8363
+
"description": "TTL in blocks for gapped strict-nonce transactions in the pool. Transactions with a\nnonce gap whose block_hash is older than this many blocks are evicted during\nprepare_transactions.",
8364
+
"format": "uint64",
8365
+
"minimum": 0,
8366
+
"type": "integer"
8367
+
},
8346
8368
"transaction_request_handler_threads": {
8347
8369
"format": "uint",
8348
8370
"minimum": 0,
@@ -8440,6 +8462,7 @@
8440
8462
"state_sync_enabled",
8441
8463
"state_sync",
8442
8464
"epoch_sync",
8465
+
"transaction_pool_strict_nonce_ttl_blocks",
8443
8466
"enable_multiline_logging",
8444
8467
"resharding_config",
8445
8468
"tx_routing_height_horizon",
@@ -10671,6 +10694,16 @@
10671
10694
"null"
10672
10695
]
10673
10696
},
10697
+
"nonce_mode": {
10698
+
"oneOf": [
10699
+
{
10700
+
"$ref": "#/components/schemas/NonceMode"
10701
+
},
10702
+
{
10703
+
"type": "null"
10704
+
}
10705
+
]
10706
+
},
10674
10707
"priority_fee": {
10675
10708
"default": 0,
10676
10709
"description": "Deprecated, retained for backward compatibility.",
0 commit comments