Skip to content

Commit

Permalink
Merge pull request #70 from bloxbean/node_9.1.1
Browse files Browse the repository at this point in the history
Node 9.1.1, Ogmios 6.6.1 and genesis config change
  • Loading branch information
satran004 committed Sep 9, 2024
2 parents f5b31e8 + 2b8e3c8 commit 2e040e3
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions applications/cli/config/download.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Please specify either the version or the full url for the following components
node.version=9.1.0
ogmios.version=6.6.0
node.version=9.1.1
ogmios.version=6.6.1
kupo.version=2.9.0
yaci.store.version=0.1.0-rc5

Expand Down
4 changes: 2 additions & 2 deletions applications/cli/docker/download-amd64.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
file=cardano-node-9.1.0-linux.tar.gz
wget https://github.com/IntersectMBO/cardano-node/releases/download/9.1.0/cardano-node-9.1.0-linux.tar.gz
file=cardano-node-9.1.1-linux.tar.gz
wget https://github.com/IntersectMBO/cardano-node/releases/download/9.1.1/cardano-node-9.1.1-linux.tar.gz

mkdir /app/cardano-bin

Expand Down
4 changes: 2 additions & 2 deletions applications/cli/docker/download-arm64.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
file=cardano-9_1_0-aarch64-static-musl-ghc_966.tar.zst
dir=cardano-9_1_0-aarch64-static-musl-ghc_966
file=cardano-9_1_1-aarch64-static-musl-ghc_966.tar.zst
dir=cardano-9_1_1-aarch64-static-musl-ghc_966
wget https://github.com/armada-alliance/cardano-node-binaries/raw/main/static-binaries/$file?raw=true -O - | tar -I zstd -xv

#unzip $file
Expand Down
2 changes: 1 addition & 1 deletion applications/cli/docker/download-ogmios.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ case $1 in
esac


version=v6.6.0
version=v6.6.1
file=ogmios-${version}-${SUFFIX}-linux.zip
wget https://github.com/CardanoSolutions/ogmios/releases/download/${version}/$file

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ public class GenesisConfig {
private BigDecimal decentralisationParam = BigDecimal.ZERO;
private int eMax =18;
private BigInteger keyDeposit = BigInteger.valueOf(2000000);
private long maxBlockBodySize = 65536;
private long maxBlockBodySize = 90112;
private long maxBlockHeaderSize = 1100;
private long maxTxSize = 16384;
private long minFeeA = 44;
private long minFeeB = 155381;
private BigInteger minPoolCost = BigInteger.valueOf(340000000);
private BigInteger minPoolCost = BigInteger.valueOf(170000000);
private BigInteger minUTxOValue = BigInteger.valueOf(1000000);
private int nOpt = 100;
private BigInteger poolDeposit = BigInteger.valueOf(500000000);
Expand Down Expand Up @@ -93,7 +93,7 @@ public class GenesisConfig {
private int committeeMaxTermLength = 146;
private int govActionLifetime = 6;
private BigInteger govActionDeposit = BigInteger.valueOf(1000000000);
private BigInteger dRepDeposit = BigInteger.valueOf(2000000);
private BigInteger dRepDeposit = BigInteger.valueOf(500000000);
private int dRepActivity = 20;
private BigDecimal minFeeRefScriptCostPerByte = BigDecimal.valueOf(15);

Expand Down
2 changes: 1 addition & 1 deletion config/version
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
tag=0.9.2-beta
tag=0.9.3-beta
revision=
4 changes: 2 additions & 2 deletions docs/pages/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ This version improves readability and consistency in terminology.
To install latest stable version of Yaci DevKit, run:

```bash
curl --proto '=https' --tlsv1.2 -LsSf https://devkit.yaci.xyz/install.sh | sh
curl --proto '=https' --tlsv1.2 -LsSf https://devkit.yaci.xyz/install.sh | bash
```

To install a specific version of Yaci DevKit, run:

```bash
curl --proto '=https' --tlsv1.2 -LsSf https://devkit.yaci.xyz/install.sh | sh -s -- <version>
curl --proto '=https' --tlsv1.2 -LsSf https://devkit.yaci.xyz/install.sh | bash -s -- <version>
```

**Note:** Replace `<version>` with the desired version number without the `v` prefix.
Expand Down

0 comments on commit 2e040e3

Please sign in to comment.