forked from Python-Cardano/pycardano
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update node version for integration tests
This commit made a few changes: 1. Upgrade cardano-node version to v8.x.x from v1.x.x. This will help with testing when entering Chang hardfork. 2. Upgrade ogmios to 6.x.x because of change 1. 3. Replace built-in ogmios chain context with https://gitlab.com/viperscience/ogmios-python because of change 2. 4. Temporarily disable Kupo in integration test because ogmios-python doesn't support kupo yet.
- Loading branch information
Showing
11 changed files
with
108 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"poolVotingThresholds": { | ||
"committeeNormal": 0.51, | ||
"committeeNoConfidence": 0.51, | ||
"hardForkInitiation": 0.51, | ||
"motionNoConfidence": 0.51, | ||
"ppSecurityGroup": 0.51 | ||
}, | ||
"dRepVotingThresholds": { | ||
"motionNoConfidence": 0.51, | ||
"committeeNormal": 0.51, | ||
"committeeNoConfidence": 0.51, | ||
"updateToConstitution": 0.51, | ||
"hardForkInitiation": 0.51, | ||
"ppNetworkGroup": 0.51, | ||
"ppEconomicGroup": 0.51, | ||
"ppTechnicalGroup": 0.51, | ||
"ppGovGroup": 0.51, | ||
"treasuryWithdrawal": 0.51 | ||
}, | ||
"committeeMinSize": 0, | ||
"committeeMaxTermLength": 200, | ||
"govActionLifetime": 10, | ||
"govActionDeposit": 1000000000, | ||
"dRepDeposit": 2000000, | ||
"dRepActivity": 20, | ||
"constitution": { | ||
"anchor": { | ||
"url": "", | ||
"dataHash": "0000000000000000000000000000000000000000000000000000000000000000" | ||
} | ||
}, | ||
"committee": { | ||
"members": { | ||
|
||
}, | ||
"quorum": 0 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"poolVotingThresholds": { | ||
"committeeNormal": 0.51, | ||
"committeeNoConfidence": 0.51, | ||
"hardForkInitiation": 0.51, | ||
"motionNoConfidence": 0.51, | ||
"ppSecurityGroup": 0.51 | ||
}, | ||
"dRepVotingThresholds": { | ||
"motionNoConfidence": 0.51, | ||
"committeeNormal": 0.51, | ||
"committeeNoConfidence": 0.51, | ||
"updateToConstitution": 0.51, | ||
"hardForkInitiation": 0.51, | ||
"ppNetworkGroup": 0.51, | ||
"ppEconomicGroup": 0.51, | ||
"ppTechnicalGroup": 0.51, | ||
"ppGovGroup": 0.51, | ||
"treasuryWithdrawal": 0.51 | ||
}, | ||
"committeeMinSize": 0, | ||
"committeeMaxTermLength": 200, | ||
"govActionLifetime": 10, | ||
"govActionDeposit": 1000000000, | ||
"dRepDeposit": 2000000, | ||
"dRepActivity": 20, | ||
"constitution": { | ||
"anchor": { | ||
"url": "", | ||
"dataHash": "0000000000000000000000000000000000000000000000000000000000000000" | ||
} | ||
}, | ||
"committee": { | ||
"members": { | ||
|
||
}, | ||
"quorum": 0 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ set -o pipefail | |
ROOT=$(pwd) | ||
|
||
poetry install | ||
poetry run pip install ogmios | ||
|
||
########## | ||
# Alonzo # | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters