Skip to content

Commit

Permalink
Add ibc-go v9 (#268)
Browse files Browse the repository at this point in the history
* Add ibc-go v9 beta.1

* Fix build

---------

Co-authored-by: Romain Ruetschi <[email protected]>
  • Loading branch information
ljoss17 and romac authored Aug 14, 2024
1 parent fbece4c commit b55dcfa
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 0 deletions.
18 changes: 18 additions & 0 deletions flake.lock

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

3 changes: 3 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,9 @@
ibc-go-v8-src.url = "github:cosmos/ibc-go/v8.3.1";
ibc-go-v8-src.flake = false;

ibc-go-v9-src.url = "github:cosmos/ibc-go/v9.0.0-beta.1";
ibc-go-v9-src.flake = false;

cosmos-sdk-src.url = "github:cosmos/cosmos-sdk/v0.46.0";
cosmos-sdk-src.flake = false;

Expand Down
4 changes: 4 additions & 0 deletions modules/apps.nix
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,10 @@
type = "app";
program = "${packages.ibc-go-v8-simapp}/bin/simd";
};
ibc-go-v9-simapp = {
type = "app";
program = "${packages.ibc-go-v9-simapp}/bin/simd";
};
ignite-cli = {
type = "app";
program = "${packages.ignite-cli}/bin/ignite";
Expand Down
12 changes: 12 additions & 0 deletions packages/ibc-go.nix
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,16 @@ with inputs;
engine = "cometbft/cometbft";
excludedPackages = ["./e2e" "./modules/apps/callbacks" "./modules/capability"];
};

ibc-go-v9-simapp = {
name = "simd";
version = "v9.0.0-beta.1";
src = ibc-go-v9-src;
rev = ibc-go-v9-src.rev;
sourceRoot = "source/simapp";
vendorHash = "sha256-gr5Wre8OoSVBR+JNNCvs9zr6T5TwCgSAnchENEgu9qM=";
goVersion = "1.22";
tags = ["netgo"];
engine = "cometbft/cometbft";
};
}

0 comments on commit b55dcfa

Please sign in to comment.