Skip to content

Commit

Permalink
Update wasmd to v0.52.0 (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
ljoss17 authored Aug 7, 2024
1 parent 7f693a2 commit fbece4c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 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 @@ -185,7 +185,7 @@
composable-cosmos-src.url = "github:ComposableFi/composable-cosmos/v6.4.88";
composable-cosmos-src.flake = false;

wasmd-src.url = "github:CosmWasm/wasmd/v0.51.0";
wasmd-src.url = "github:CosmWasm/wasmd/v0.52.0";
wasmd-src.flake = false;

wasmvm_1-src.url = "github:CosmWasm/wasmvm/v1.0.0";
Expand Down
2 changes: 1 addition & 1 deletion modules/packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
};
wasmd = import ../packages/wasmd.nix {
inherit (inputs) wasmd-src;
inherit (self'.packages) libwasmvm_2_0_0;
inherit (self'.packages) libwasmvm_2_1_0;
inherit cosmosLib;
};
rollapp-evm = import ../packages/rollapp-evm.nix {
Expand Down
10 changes: 5 additions & 5 deletions packages/wasmd.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
wasmd-src,
cosmosLib,
libwasmvm_2_0_0,
libwasmvm_2_1_0,
}:
cosmosLib.mkCosmosGoApp {
name = "wasm";
version = "v0.51.0";
version = "v0.52.0";
goVersion = "1.21";
src = wasmd-src;
rev = wasmd-src.rev;
vendorHash = "sha256-hurRN9NUz5Lh1AOpsZNZEKPYAu+6U6GEsYz4ZUh1aAs=";
vendorHash = "sha256-G4SujfIKNlfGUr7mM9C/iXd0Xc0/wEl6tJB02TufeiI=";
tags = ["netgo"];
engine = "cometbft/cometbft";
preFixup = cosmosLib.wasmdPreFixupPhase libwasmvm_2_0_0 "wasmd";
preFixup = cosmosLib.wasmdPreFixupPhase libwasmvm_2_1_0 "wasmd";
dontStrip = true;
buildInputs = [libwasmvm_2_0_0];
buildInputs = [libwasmvm_2_1_0];

# main module (github.com/CosmWasm/wasmd) does not contain package github.com/CosmWasm/wasmd/tests/system
excludedPackages = ["tests/system"];
Expand Down

0 comments on commit fbece4c

Please sign in to comment.