forked from crypto-org-chain/cronos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Problem: interchain-accounts module is not integrated (crypto-org-cha…
…in#541) * Problem: interchain-accounts module is not integrated Closes: crypto-org-chain#540 Solution: - integrate ica controller module add ica integration tests regen proto temp cleanup fix integration test Update integration_tests/test_ibc.py cleanup icaauth -> icactl gen proto fix integration test fix conflicts add v0.8.0 upgrade test and comment use flake-compat to build v0.7.0 binary for upgrade test fix integration test use flake-compat to build v0.7.0 binary for upgrade test fix integration test fix rebase fix key_name * update swagger ui
- Loading branch information
Showing
40 changed files
with
4,610 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ pkgs ? import ./default.nix { }, sources ? import ./sources.nix }: | ||
(import sources.chain-main { }).chain-maind | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
syntax = "proto3"; | ||
package cronos.icactl.v1; | ||
|
||
import "gogoproto/gogo.proto"; | ||
import "icactl/v1/params.proto"; | ||
|
||
option go_package = "github.com/crypto-org-chain/cronos/v2/x/icactl/types"; | ||
|
||
// GenesisState defines the icactl module's genesis state. | ||
message GenesisState { | ||
// params defines the genesis parameters | ||
Params params = 1 [ (gogoproto.nullable) = false ]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
syntax = "proto3"; | ||
package cronos.icactl.v1; | ||
|
||
import "google/protobuf/duration.proto"; | ||
import "gogoproto/gogo.proto"; | ||
|
||
option go_package = "github.com/crypto-org-chain/cronos/v2/x/icactl/types"; | ||
|
||
// Params defines the parameters for the module. | ||
message Params { | ||
option (gogoproto.goproto_stringer) = false; | ||
|
||
// minTimeoutDuration defines the minimum value of packet timeout when | ||
// submitting transactions to host chain on behalf of interchain account | ||
google.protobuf.Duration minTimeoutDuration = 1 [ | ||
(gogoproto.moretags) = "yaml:\"min_timeout_duration\"", | ||
(gogoproto.stdduration) = true, | ||
(gogoproto.nullable) = false | ||
]; | ||
} |
Oops, something went wrong.