Skip to content

Commit

Permalink
Add simapp using CometBFT from https://github.com/informalsystems/com…
Browse files Browse the repository at this point in the history
  • Loading branch information
romac committed Sep 9, 2024
1 parent d87f011 commit 1affe53
Show file tree
Hide file tree
Showing 4 changed files with 42 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.

8 changes: 8 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,14 @@
ibc-go-v9-src.url = "github:cosmos/ibc-go/v9.0.0-beta.1";
ibc-go-v9-src.flake = false;

ibc-go-v7-indexer-subs-src = {
type = "github";
owner = "informalsystems";
repo = "ibc-go";
ref = "cometbft/indexer-subs-cap-1";
flake = false;
};

ibc-go-v7-wasm-src = {
type = "github";
owner = "cosmos";
Expand Down
4 changes: 4 additions & 0 deletions modules/apps.nix
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,10 @@
type = "app";
program = "${packages.ibc-go-v9-simapp}/bin/simd";
};
ibc-go-v7-simapp-indexer-subs = {
type = "app";
program = "${packages.ibc-go-v7-simapp-indexer-subs}/bin/simd";
};
ibc-go-v7-wasm-simapp = {
type = "app";
program = "${packages.ibc-go-v7-wasm-simapp}/bin/simd";
Expand Down
12 changes: 12 additions & 0 deletions packages/ibc-go.nix
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,18 @@ with inputs;
buildInputs = [libwasmvm_2_1_0];
};

ibc-go-v7-indexer-subs-simapp = {
name = "simd";
version = "v7.8.0-indexer-subs";
src = ibc-go-v7-indexer-subs-src;
rev = ibc-go-v7-indexer-subs-src.rev;
vendorHash = "sha256-KLE/ewaP4eqyE9CMmFCUyBZriqmrqYPq3FfhsZyKKEY=";
tags = ["netgo"];
engine = "cometbft/cometbft";
excludedPackages = ["./e2e" "./modules/apps/callbacks"];
doCheck = false;
};

ibc-go-v7-wasm-simapp = {
name = "simd";
version = "v7.4.0-wasm";
Expand Down

0 comments on commit 1affe53

Please sign in to comment.