-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
query protocol parameters: use ledger instances #455
query protocol parameters: use ledger instances #455
Conversation
7620690
to
450a0a6
Compare
Before this PR, {
"collateralPercentage": 150,
"costModels": {},
"decentralization": null,
"executionUnitPrices": {
"priceMemory": 0.0577,
"priceSteps": 7.21e-05
},
"extraPraosEntropy": null,
"maxBlockBodySize": 90112,
"maxBlockExecutionUnits": {
"memory": 62000000,
"steps": 20000000000
},
"maxBlockHeaderSize": 1100,
"maxCollateralInputs": 3,
"maxTxExecutionUnits": {
"memory": 14000000,
"steps": 10000000000
},
"maxTxSize": 16384,
"maxValueSize": 5000,
"minPoolCost": 340000000,
"minUTxOValue": null,
"monetaryExpansion": 0.003,
"poolPledgeInfluence": 0.3,
"poolRetireMaxEpoch": 18,
"protocolVersion": {
"major": 9,
"minor": 0
},
"stakeAddressDeposit": 2000000,
"stakePoolDeposit": 500000000,
"stakePoolTargetNum": 500,
"treasuryCut": 0.2,
"txFeeFixed": 155381,
"txFeePerByte": 44,
"utxoCostPerByte": 4310
} |
As of the tip of this branch when I'm writing this (450a0a6), {
"a0": 0.3,
"coinsPerUTxOByte": 4310,
"collateralPercentage": 150,
"committeeMaxTermLength": 200,
"committeeMinSize": 0,
"costmdls": {},
"dRepActivity": 20,
"dRepDeposit": 2000000,
"dRepVotingThresholds": {
"dvtCommitteeNoConfidence": 0.51,
"dvtCommitteeNormal": 0.51,
"dvtHardForkInitiation": 0.51,
"dvtMotionNoConfidence": 0.51,
"dvtPPEconomicGroup": 0.51,
"dvtPPGovGroup": 0.51,
"dvtPPNetworkGroup": 0.51,
"dvtPPTechnicalGroup": 0.51,
"dvtTreasuryWithdrawal": 0.51,
"dvtUpdateToConstitution": 0.51
},
"eMax": 18,
"govActionDeposit": 1000000000,
"govActionLifetime": 10,
"keyDeposit": 2000000,
"maxBlockBodySize": 90112,
"maxBlockExUnits": {
"exUnitsMem": 62000000,
"exUnitsSteps": 20000000000
},
"maxBlockHeaderSize": 1100,
"maxCollateralInputs": 3,
"maxTxExUnits": {
"exUnitsMem": 14000000,
"exUnitsSteps": 10000000000
},
"maxTxSize": 16384,
"maxValSize": 5000,
"minFeeA": 44,
"minFeeB": 155381,
"minPoolCost": 340000000,
"nOpt": 500,
"poolDeposit": 500000000,
"poolVotingThresholds": {
"pvtCommitteeNoConfidence": 0.51,
"pvtCommitteeNormal": 0.51,
"pvtHardForkInitiation": 0.51,
"pvtMotionNoConfidence": 0.51
},
"prices": {
"prMem": 0.0577,
"prSteps": 7.21e-05
},
"rho": 0.003,
"tau": 0.2
} which is exactly what |
@CarlosLopezDeLara> Is that all you wanted for #438? Or do I need to do something else? cc @gitmachtl |
This is exactly it, thank you!! Confirmed |
@smelc So to be clear, do we now also have the same naming for protocol-parameters query using other eras? That was one of the goals too. To make it consistent with same names in babbage and conway era. |
Changelog
Context
Fixes #438
How to trust this PR
See the comments
Checklist