Skip to content

Commit

Permalink
Added Conway parameters to blockfrost
Browse files Browse the repository at this point in the history
  • Loading branch information
theeldermillenial committed Sep 1, 2024
1 parent 7555d03 commit 5e4b813
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pycardano/backend/blockfrost.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,13 @@ def protocol_param(self) -> ProtocolParameters:
cost_models={
k: v.to_dict() for k, v in params.cost_models.to_dict().items()
},
# TODO: Update these when tiered pricing is enabled in Conway
maximum_reference_scripts_size={"bytes": 200000},
min_fee_reference_scripts={
"base": params.min_fee_ref_script_cost_per_byte,
"range": 200000,
"multiplier": 1,
},
)
return self._protocol_param

Expand Down

0 comments on commit 5e4b813

Please sign in to comment.