File tree Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -663,6 +663,25 @@ components:
663
663
description : Maximum number of hashes allowed for a single request
664
664
type : integer
665
665
format : int64
666
+ cardano_transactions_signing_config :
667
+ description : |
668
+ Cardano transactions signing configuration
669
+
670
+ Mandatory if `signed_entity_types` contains `CardanoTransactions`.
671
+ type : object
672
+ additionalProperties : false
673
+ required :
674
+ - security_parameter
675
+ - step
676
+ properties :
677
+ security_parameter :
678
+ description : Number of blocks to discard from the tip of the chain when importing Cardano transactions
679
+ type : integer
680
+ format : int64
681
+ step :
682
+ description : Number of blocks between signature of Cardano transactions
683
+ type : integer
684
+ format : int64
666
685
example :
667
686
{
668
687
" open_api_version " : " 0.1.17" ,
@@ -676,7 +695,12 @@ components:
676
695
" CardanoTransactions"
677
696
],
678
697
" cardano_transactions_prover " :
679
- { "max_hashes_allowed_by_request": 100 }
698
+ { "max_hashes_allowed_by_request": 100 },
699
+ " cardano_transactions_signing_config " :
700
+ {
701
+ " security_parameter " : 100,
702
+ " step " : 10
703
+ }
680
704
}
681
705
}
682
706
You can’t perform that action at this time.
0 commit comments