Skip to content

Commit

Permalink
Update Juno from v17.1.1 to v21.0.0 (#247)
Browse files Browse the repository at this point in the history
  • Loading branch information
ljoss17 authored Apr 19, 2024
1 parent ffd8ab2 commit 17a1d0c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
7 changes: 4 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
evmos-src.url = "github:evmos/evmos/v16.0.0-rc4";
evmos-src.flake = false;

juno-src.url = "github:CosmosContracts/juno/v17.1.1";
juno-src.url = "github:CosmosContracts/juno/v21.0.0";
juno-src.flake = false;

osmosis-src.url = "github:osmosis-labs/osmosis/v24.0.1";
Expand Down
2 changes: 1 addition & 1 deletion modules/packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
};
juno = import ../packages/juno.nix {
inherit (inputs) juno-src;
inherit (self'.packages) libwasmvm_1_3_0;
inherit (self'.packages) libwasmvm_1_5_2;
inherit cosmosLib;
};
migaloo = import ../packages/migaloo.nix {
Expand Down
11 changes: 6 additions & 5 deletions packages/juno.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
{
cosmosLib,
juno-src,
libwasmvm_1_3_0,
libwasmvm_1_5_2,
}:
cosmosLib.mkCosmosGoApp {
name = "juno";
version = "v17.1.1";
version = "v21.0.0";
goVersion = "1.21";
src = juno-src;
rev = juno-src.rev;
vendorHash = "sha256-ftmNMjCFWq4XGM9+ad64dzzcgQJ1ApH4YmthldfrB54=";
vendorHash = "sha256-Z5I16c/qRTmJJzAjQp6vmUrSd2F+RV13UYHHnLnhFcE=";
tags = ["netgo"];
engine = "cometbft/cometbft";
excludedPackages = ["interchaintest"];
preFixup = ''
${cosmosLib.wasmdPreFixupPhase libwasmvm_1_3_0 "junod"}
${cosmosLib.wasmdPreFixupPhase libwasmvm_1_5_2 "junod"}
'';
dontStrip = true;
buildInputs = [libwasmvm_1_3_0];
buildInputs = [libwasmvm_1_5_2];
}

0 comments on commit 17a1d0c

Please sign in to comment.