-
Notifications
You must be signed in to change notification settings - Fork 716
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update interchain-security.md #1071
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reading through in some detail and learning quite a bit. LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have a lot more changes I want to make but the Github PR UI isn't the best place to make them. I will make a new PR after this one is merged, with my additional suggested changes
|
||
The final piece of information relevant to the Chain Registry is the Time Til Launch (TTL) for each child chain. The TTL designates the point of no return for Validators to join or leave the Chain Registry. At that point the list of validators contained within the registry for a specific network can be exported to an initial genesis file for that network. If this network is transitioning to use Interchain Security from a sovereign validator set, this will be seen as a network upgrade where the validator set gets completely redefined. | ||
Once V1 has been finalized the next milestone would be to create a version of the Chain Registry where Provider Chain validators opt-in to participating as a validator on the Consumer Chain. It is expected that the candidates for Opt-In Interchain Security are not considered part of the Cosmos Hub itself, but independent networks. It is up to each Consumer Chain to advertise the benefits that Provider Chain validators receive for their participation. This could be purely the chance to receive fees on a new network, it could be paired with some genesis distribution of tokens, it could be paired with some off chain legal agreement to pay for the staking services, or any other kind of benefit. This benefit is not enforced by Interchain Security, but able to be facilitated in a number of ways. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could be purely the chance to receive fees on a new network, it could be paired with some genesis distribution of tokens
It's true that all of these things are viable and will be tried, but I think for the sake of clarity in this paper, I would emphasize the basic mechanism that we are likely to build into the protocol: the ability for consumer chains to offer a percentage of their staking rewards to the validators/delegators staked on the provider chain. This will keep the message focused and understandable.
it could be paired with some off chain legal agreement to pay for the staking services
I removed this because while it is indeed possible, and will probably happen, I don't know why we emphasize it. Makes things sounds kinda centralized.
Once V1 has been finalized the next milestone would be to create a version of the Chain Registry where Provider Chain validators opt-in to participating as a validator on the Consumer Chain. It is expected that the candidates for Opt-In Interchain Security are not considered part of the Cosmos Hub itself, but independent networks. It is up to each Consumer Chain to advertise the benefits that Provider Chain validators receive for their participation. This could be purely the chance to receive fees on a new network, it could be paired with some genesis distribution of tokens, it could be paired with some off chain legal agreement to pay for the staking services, or any other kind of benefit. This benefit is not enforced by Interchain Security, but able to be facilitated in a number of ways. | |
Once V1 has been finalized the next milestone would be to create a version of the Chain Registry where Provider Chain validators opt-in to participating as a validator on the Consumer Chain. It is expected that the candidates for Opt-In Interchain Security are not considered part of the Cosmos Hub itself, but independent networks. It is up to each Consumer Chain to advertise the benefits that Provider Chain validators receive for their participation. Consumer chains will be able to offer a certain percentage of their fees and staking rewards to provider chain validators (and their delegators) that validate on them. Chains will also be able to launch as consumer chains, in which case they could offer starting validators and delegators on the provider chain a percentage of their genesis tokens. |
|
||
The final piece of information relevant to the Chain Registry is the Time Til Launch (TTL) for each Consumer Chain. The TTL designates the point of no return for Validators to join or leave the Chain Registry. At that point the list of validators contained within the registry for a specific network can be exported to an initial genesis file for that network. If this network is transitioning to use Interchain Security from a sovereign validator set, this will be seen as a network upgrade where the validator set gets completely redefined. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I kind of want the "base case" of interchain security to be that an already running chain starts consuming security from the provider chain.
I agree that having interchain security as part of a chain's launch will be a very important use case but it should be a special case (after v1).
The final piece of information relevant to the Chain Registry is the Time Til Launch (TTL) for each Consumer Chain. The TTL designates the point of no return for Validators to join or leave the Chain Registry. At that point the list of validators contained within the registry for a specific network can be exported to an initial genesis file for that network. If this network is transitioning to use Interchain Security from a sovereign validator set, this will be seen as a network upgrade where the validator set gets completely redefined. | |
The Chain Registry will also include tooling to allow chains to launch as consumer chains. Launching as a consumer chain is great, because the new blockchain gets full security from day one, and is able to get its tokens into the hands of a lot of users. When launching as a consumer chain, projects will set a Time Til Launch (TTL) for their prospective chain in the Chain Registry. The TTL designates the point of no return for Validators to join or leave the Chain Registry. At that point the list of validators contained within the registry for a specific network can be exported to an initial genesis file for that network. |
|
||
## Parent Chain Staking Module | ||
It will be possible for a Validator to join an already running Interchain Secured network but if they intend to be part of the original genesis validator set they should join before the TTL. A chain within the registry may not produce a TTL until there is a threshold number of validators or amount of stake reached. Future versions of Interchain Security may help automate these thresholds but an initial version will be manually controlled. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It will be possible for a Validator to join an already running Interchain Secured network but if they intend to be part of the original genesis validator set they should join before the TTL. A chain within the registry may not produce a TTL until there is a threshold number of validators or amount of stake reached. Future versions of Interchain Security may help automate these thresholds but an initial version will be manually controlled. |
See comment on the line above
@@ -16,7 +16,7 @@ Interchain Security has been referred to in many different ways: Shared Security | |||
|
|||
While there are many ways that Interchain Security could take place, this document will focus on one instance of Interchain Security that has particularly valuable attributes for the ATOM token and the Cosmos Hub. The resulting technology may be applied to other scenarios with little to no modification, but I will leave those out for now (or only dedicate a small section) since the current priority is to implement this feature for the Cosmos Hub. | |||
|
|||
At a very high level, Interchain Security is the ability for staking tokens that have been delegated to validators on a parent chain to inform the composition of a validator set on a child chain. Inter-Blockchain Communication is utilized to relay updates of validator stake delegations from the parent chain to the child chain so that the child chain will have an up-to-date model of which validators can produce blocks on the child chain. The inclusion of parent chain validators can be mandatory or opt-in depending on the requirements of the child chain. The parent chain will honor any proof of validator misbehavior produced by the child chain as evidence that results in slashing the stake of misbehaving validators on the parent chain. In this way the security gained from the value of the stake locked on the parent chain will be shared with the child chain. | |||
At a very high level, Interchain Security is the ability for staking tokens that have been delegated to validators on a Provider Chain to inform the composition of a validator set on a Consumer Chain. Inter-Blockchain Communication is utilized to relay updates of validator stake delegations from the Provider Chain to the Consumer Chain so that the Consumer Chain will have an up-to-date model of which validators can produce blocks on the Consumer Chain. The inclusion of Provider Chain validators can be mandatory or opt-in depending on the requirements of the Consumer Chain. The Provider Chain will honor any proof of validator misbehavior produced by the Consumer Chain as evidence that results in slashing the stake of misbehaving validators on the Provider Chain. In this way the security gained from the value of the stake locked on the Provider Chain will be shared with the Consumer Chain. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My preference would be not to uppercase Consumer Chain and Provider Chain. It might be appropriate in a more technical spec, but in this explanatory document I think it gives the wrong impression, like being a Consumer Chain or a Provider Chain is binary, final choice. In fact, consuming or providing security will be an option for any chain at any time, simply by passing a governance proposal.
@@ -40,61 +40,65 @@ The Cost of Corruption calculation doesn't account for the availability of any s | |||
|
|||
# The Interchain Security Stack | |||
|
|||
How Interchain Security works at a technical level is still in the process of development but the stack at a high level is well mapped out. It requires new functionality and modifications to current functionality on both parent and child chains. The technology can be developed progressively so that a minimum viable set of functionality can be launched as a V1 before an extended set of functionality is launched as a V2. | |||
How Interchain Security works at a technical level is still in the process of development but the stack at a high level is well mapped out. It requires new functionality and modifications to current functionality on both Provider Chain and Consumer Chains. The technology can be developed progressively so that a minimum viable set of functionality can be launched as a V1 before an extended set of functionality is launched at a later date. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How Interchain Security works at a technical level is still in the process of development but the stack at a high level is well mapped out. It requires new functionality and modifications to current functionality on both Provider Chain and Consumer Chains. The technology can be developed progressively so that a minimum viable set of functionality can be launched as a V1 before an extended set of functionality is launched at a later date. | |
How Interchain Security works at a technical level is still in the process of development but the stack at a high level is well mapped out. It requires new functionality and modifications to current functionality in the Cosmos SDK. The technology can be developed progressively so that a minimum viable set of functionality can be launched as a V1 before an extended set of functionality is launched at a later date. |
|
||
In order for the Provider Chain to relay validator sets and voting powers to the Consumer Chain, it needs to be able to distinguish between validator sets relevant to different networks. In V2, not all validators within a Provider Chain staking module will have opted-in to being part of each Consumer Chain set. In order to support Interchain Security, the Provider Chain will need to be extended to differentiate between sets of validators and their voting powers with respect to various chains as designated within the Chain Registry. | ||
|
||
To provide the necessary functionality on the Provider Chain, a wrapper module may need to be implemented that will collate staking module validators with regard to their inclusion in sets stored within the Chain Registry. A module like this will need to import both the Chain Registry Keeper and the Staking Keeper in order to make chain specific staking queries. These queries will be requested periodically by the Cross Chain Validation module and relayed to the Consumer Chain via IBC. This module can be referred to as the "xStaking Module". |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To provide the necessary functionality on the Provider Chain, a wrapper module may need to be implemented that will collate staking module validators with regard to their inclusion in sets stored within the Chain Registry. A module like this will need to import both the Chain Registry Keeper and the Staking Keeper in order to make chain specific staking queries. These queries will be requested periodically by the Cross Chain Validation module and relayed to the Consumer Chain via IBC. This module can be referred to as the "xStaking Module". |
Too technical for this paper, IMO, and this also isn't how we're doing it AFAIK
To provide the necessary functionality on the parent chain, a wrapper module may need to be implemented that will collate staking module validators with regard to their inclusion in sets stored within the Chain Registry. A module like this will need to import both the Chain Registry Keeper and the Staking Keeper in order to make chain specific staking queries. These queries will be requested periodically by the Cross Chain Validation module and relayed to the child chain via IBC. This module can be referred to as the "xStaking Module". | ||
Tendermint uses ABCI to get a set of validators and voting powers from the state machine in order to perform consensus on block production. This information is stored within the staking module of the Cosmos SDK application. In the configuration of Interchain Security, the Consumer Chain also has an instance of Tendermint that uses ABCI to ask for a set of validators and their voting powers. However instead of coming directly from the staking module of the Consumer Chain, in a sense it needs to come from the staking module of the Provider Chain. Practically speaking the state of the staking module of the Provider Chain is relayed periodically via IBC to the Consumer Chain, where it is stored in the Consumer Chain staking module and accessible to Tendermint via ABCI. | ||
|
||
In order for the Provider Chain to relay validator sets and voting powers to the Consumer Chain, it needs to be able to distinguish between validator sets relevant to different networks. In V2, not all validators within a Provider Chain staking module will have opted-in to being part of each Consumer Chain set. In order to support Interchain Security, the Provider Chain will need to be extended to differentiate between sets of validators and their voting powers with respect to various chains as designated within the Chain Registry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In order for the Provider Chain to relay validator sets and voting powers to the Consumer Chain, it needs to be able to distinguish between validator sets relevant to different networks. In V2, not all validators within a Provider Chain staking module will have opted-in to being part of each Consumer Chain set. In order to support Interchain Security, the Provider Chain will need to be extended to differentiate between sets of validators and their voting powers with respect to various chains as designated within the Chain Registry. |
Too technical for this paper, IMO, and this also isn't how we're doing it AFAIK
|
||
Initially the cost to validators to operate a new node instance on a new network may prohibit smaller validators from participating. It could be imagined that validating is a business of scale and the larger the operation the easier it is to scale further. This may result in only the largest validators from participating in Interchain Security. In order to ensure that delegators don't all redelegate their ATOMs to these super validators, it's important to build out the ability to delegate to validators on a per-chain basis. This would allow a delegator to delegate ATOMs to a small but well run validator on the Hub while also delegating the same ATOMs to a larger and less risk averse validator for a child chain at the same time. Should the larger validator misbehave and be slashed on the parent chain, the stake of that specific delegator would also be slashed. This would decrease the amount of stake the original small validator has delegated, but only with regard to that one delegator. | ||
Initially the cost to validators to operate a new node instance on a new network may prohibit smaller validators from participating. It could be imagined that validating is a business of scale and the larger the operation the easier it is to scale further. This may result in only the largest validators from participating in Interchain Security. In order to ensure that delegators don't all redelegate their ATOMs to these super validators, it's important to build out the ability to delegate to validators on a per-chain basis. This would allow a delegator to delegate ATOMs to a small but well run validator on the Hub while also delegating the same ATOMs to a larger and less risk averse validator for a Consumer Chain at the same time. Should the larger validator misbehave and be slashed on the Provider Chain, the stake of that specific delegator would also be slashed. This would decrease the amount of stake the original small validator has delegated, but only with regard to that one delegator. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Initially the cost to validators to operate a new node instance on a new network may prohibit smaller validators from participating. It could be imagined that validating is a business of scale and the larger the operation the easier it is to scale further. This may result in only the largest validators from participating in Interchain Security. In order to ensure that delegators don't all redelegate their ATOMs to these super validators, it's important to build out the ability to delegate to validators on a per-chain basis. This would allow a delegator to delegate ATOMs to a small but well run validator on the Hub while also delegating the same ATOMs to a larger and less risk averse validator for a Consumer Chain at the same time. Should the larger validator misbehave and be slashed on the Provider Chain, the stake of that specific delegator would also be slashed. This would decrease the amount of stake the original small validator has delegated, but only with regard to that one delegator. |
Initially the cost to validators to operate a new node instance on a new network may prohibit smaller validators from participating.
So many small validators run all kinds of stuff. Big validators will not be able to just run everything that comes along because the software poses a risk to their systems. An ecosystem naturally will develop where small validators take bigger risks starting out to get established.
This whole Chain-Specific Delegations section needs to be taken out of this paper for now IMO. It's a second-generation feature. It's very hard to understand for someone who is not familiar with interchain security (or steeped in the Cosmos core dev bubble) and it is not on our near-term roadmap.
* Evidence | ||
|
||
|
||
### Validator Set Updates | ||
|
||
The primary duty of Cross Chain Validation is to relay the set of validators and their voting power. The inclusion of a validator within a set relevant to a specific child chain is designated within the Chain Registry. The voting power denominated in parent chain staking token is designated within the staking module. The xStaking module allows for the collation of validators and their delegations on a chain specific designation. This collation is what must be relayed to the child chain via Cross Chain Validation. | ||
The primary duty of Cross Chain Validation is to relay the set of validators and their voting power. The inclusion of a validator within a set relevant to a specific Consumer Chain is designated within the Chain Registry. The voting power denominated in Provider Chain staking token is designated within the staking module. The xStaking module allows for the collation of validators and their delegations on a chain specific designation. This collation is what must be relayed to the Consumer Chain via Cross Chain Validation. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The xStaking module
inaccurate and not especially interesting from a high level perspective
|
||
Consideration should be made to the incentives around submitting evidence in order to ensure that punishable offenses do not go unnoticed. This is a similar issue to Relayer Incentivization, where currently it costs some fee to relay IBC packets but there is no reward or payment possible as part of the core IBC logic. As a result IBC packets are currently relayed in an altruistic manner. It's important to ensure that for integrity of the operation of the child and Provider Chain that slashable offenses are always submitted. It may be that the slashable amounts of tokens are used as rewards for submitting the evidence (assuming it's possible to ensure it is not the culprit submitting their own evidence and regaining their stake). Maybe some flat fee to at least pay for the transactions are required, although this may become redundant with the addition of any Relayer incentivizations into core IBC. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree with this section but I think it is way too long. In short, here's how I think things will look:
Downtime slashing will be initiated by the consumer chain, while double signing slashing is reported directly to the provider chain. This is because double signing is trivially verifiable, while downtime is not verifiable at all.
Consider: If malicious validators on a consumer chain wanted to falsely slash another validator for downtime, they could simply censor all of the target validator's messages with 1/3 of the power, forcing real downtime. Meanwhile, sending some kind of fake downtime slash request packet to the provider would take 2/3 of the power.
* chore: update changelog (#1060) * add changelog for backport release v5.0.8 (#1061) * Change golangci-lint version to the latest version of golangci-lint (v1.42.1) (#1043) Co-authored-by: yaruwangway <[email protected]> * Update DOCS_README with switch to GH Actions (#1049) * Update DOCS_README with switch to GH Actions * update to repo makefile Co-authored-by: billy rennekamp <[email protected]> * Merge pull request #1051: reenable displying params in gov docs * Update cosmos-hub-roadmap-2.0.md (#1065) * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md (#1066) * Update cosmos-hub-roadmap-2.0.md (#1068) * Update CODEOWNERS (#1031) * Update CODEOWNERS * Update .github/CODEOWNERS Co-authored-by: Marko <[email protected]> * Update CODEOWNERS Co-authored-by: Marko <[email protected]> * Update README.md (#1063) * hide top banner (#1062) Co-authored-by: billy rennekamp <[email protected]> * Update Readme.md (#1046) * Update Readme.md Added a 'How to Use' section and a line on learning more about the Cosmos Hub. * Update README.md Co-authored-by: billy rennekamp <[email protected]> * Update README.md (#1069) * Create statesync.bash (#1027) * Create statesync.bash Co-authored-by: billy rennekamp <[email protected]> * Update interchain-security.md (#1071) * Update cosmos-hub-roadmap-2.0.md (#1076) * Vega 6.0.0 (#1077) * fix: delete new modules from fromVM map to not skip init genesis * fix: migrate auth module after staking * gaia: add NewSetUpContextDecorator to antedecorator (#1078) * Update upgrade-node.md (#1080) add more info * Add IOBScan to Cosmos Hub Explorers list (#1075) * Update Readme (#1083) * Update Readme * Update README.md * Update README.md * Update README.md Co-authored-by: billy rennekamp <[email protected]> * Update Dockerfile.test (#1026) Co-authored-by: billy rennekamp <[email protected]> * Update cosmos-hub-roadmap-2.0.md (#1085) * Update cosmos-hub-roadmap-2.0.md (#1088) * Merge pull request #1050: Create Governance proposal template * add first draft proposal templates * add new PR template for governance * edit for small fixes (#1086) * Update validator-faq.md (#1087) more editorial love for this essential content * docs: fix links in governance section (#1089) * rm dev discord links * update and relativize links * align with link style elsewhere in docs * docs: vega upgrade instruction (#1096) * docs: vega upgrade instruction * chore: change upgrade time * Update cosmoshub-4-vega-upgrade.md chore: formatting * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: yaruwangway <[email protected]> * Update docs/migration/cosmoshub-4-vega-upgrade.md * Update docs/migration/cosmoshub-4-vega-upgrade.md * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: billy rennekamp <[email protected]> * doc: change doc for vega upgrade instruction (#1098) * doc: change doc for vega upgrade instruction * Update cosmoshub-4-vega-upgrade.md typo fix * docs minor typo fix (#1104) Cross Chain Validator (CCV) relay validator set composition * add dependabot (#1103) Co-authored-by: Marko Baricevic <[email protected]> * Update interchain-security.md (#1105) Co-authored-by: billy rennekamp <[email protected]> * Update gaiad installation docs, update docs install/run instructions, and clean up left menu ordering (#1095) Make requested changes Make ordering consistent * Fix broken installation links (#1120) * Bump technote-space/get-diff-action from 4 to 5.0.2 (#1108) Bumps [technote-space/get-diff-action](https://github.com/technote-space/get-diff-action) from 4 to 5.0.2. - [Release notes](https://github.com/technote-space/get-diff-action/releases) - [Changelog](https://github.com/technote-space/get-diff-action/blob/main/.releasegarc) - [Commits](technote-space/get-diff-action@v4...v5.0.2) --- updated-dependencies: - dependency-name: technote-space/get-diff-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump github.com/spf13/cobra from 1.2.1 to 1.3.0 (#1119) Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.2.1 to 1.3.0. - [Release notes](https://github.com/spf13/cobra/releases) - [Changelog](https://github.com/spf13/cobra/blob/master/CHANGELOG.md) - [Commits](spf13/cobra@v1.2.1...v1.3.0) --- updated-dependencies: - dependency-name: github.com/spf13/cobra dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump codecov/codecov-action from 1 to 2.1.0 (#1114) Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 1 to 2.1.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md) - [Commits](codecov/codecov-action@v1...v2.1.0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump JamesIves/github-pages-deploy-action from 3.7.1 to 4.1.8 (#1128) Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 3.7.1 to 4.1.8. - [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases) - [Commits](JamesIves/github-pages-deploy-action@3.7.1...4.1.8) --- updated-dependencies: - dependency-name: JamesIves/github-pages-deploy-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump github.com/cosmos/ibc-go/v2 from 2.0.0 to 2.0.2 (#1124) Bumps [github.com/cosmos/ibc-go/v2](https://github.com/cosmos/ibc-go) from 2.0.0 to 2.0.2. - [Release notes](https://github.com/cosmos/ibc-go/releases) - [Changelog](https://github.com/cosmos/ibc-go/blob/v2.0.2/CHANGELOG.md) - [Commits](cosmos/ibc-go@v2.0.0...v2.0.2) --- updated-dependencies: - dependency-name: github.com/cosmos/ibc-go/v2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump github.com/tendermint/tm-db from 0.6.4 to 0.6.6 (#1116) Bumps [github.com/tendermint/tm-db](https://github.com/tendermint/tm-db) from 0.6.4 to 0.6.6. - [Release notes](https://github.com/tendermint/tm-db/releases) - [Changelog](https://github.com/tendermint/tm-db/blob/master/CHANGELOG.md) - [Commits](tendermint/tm-db@v0.6.4...v0.6.6) --- updated-dependencies: - dependency-name: github.com/tendermint/tm-db dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump gaurav-nelson/github-action-markdown-link-check (#1112) Bumps [gaurav-nelson/github-action-markdown-link-check](https://github.com/gaurav-nelson/github-action-markdown-link-check) from 0.6.0 to 1.0.13. - [Release notes](https://github.com/gaurav-nelson/github-action-markdown-link-check/releases) - [Commits](gaurav-nelson/github-action-markdown-link-check@0.6.0...1.0.13) --- updated-dependencies: - dependency-name: gaurav-nelson/github-action-markdown-link-check dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/setup-go from 2.1.3 to 2.1.5 (#1130) Bumps [actions/setup-go](https://github.com/actions/setup-go) from 2.1.3 to 2.1.5. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v2.1.3...v2.1.5) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update broken links in docs (#1131) * update links in docs * cleanup * Bump actions/stale from 3 to 4.1.0 (#1113) Bumps [actions/stale](https://github.com/actions/stale) from 3 to 4.1.0. - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](actions/stale@v3...v4.1.0) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/checkout from 2.3.1 to 2.4.0 (#1110) Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.1 to 2.4.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2.3.1...v2.4.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/cache from 1 to 2.1.7 (#1107) Bumps [actions/cache](https://github.com/actions/cache) from 1 to 2.1.7. - [Release notes](https://github.com/actions/cache/releases) - [Commits](actions/cache@v1...v2.1.7) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Fix links to hub-tutorials (#1132) * Fix links to hub-tutorials Some of the links are broken due to the change of the gaia-tutorials folder. This should fix them. * Update installation.md * Update stale.yml to exclude issues (#1138) Taken from https://github.com/cosmos/cosmos-sdk/blob/master/.github/workflows/stale.yml * Update the upgrade time (#1102) * Update cosmoshub-4-vega-upgrade.md update the upgrade time * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: Noam <[email protected]> * docs: add system requirement Co-authored-by: Noam <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * Update Roadmap to mention Vega is completed (#1140) * Update Roadmap to mention Vega is completed And some little things to make sure the page is parsed well for the new cosmos hub roadmap page. * Updates to gravity bridge mentions Updated to signal Gravity Bridge is an external chain that was released around Vega. * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: billy rennekamp <[email protected]> * Added instructions on depositing to a proposal (#1142) * Added instructions on depositing to a proposal Also replaced the Hubble instructions with Mintscan. * Update docs/governance/submitting.md * Update docs/governance/submitting.md * Update docs/governance/submitting.md * Update docs/governance/submitting.md Co-authored-by: billy rennekamp <[email protected]> * Merge pull request #1090: docs: Set up locales for existing translations * set up locales for translations * remove es translations from gov section * update links in locale readmes * add initial instruction on locales in DOCS_README * add labels and selectText * remove frontmatter in es README * Module Readiness Github Issue & Docs (#1172) * add tempalte and dir * Update template.md * add issue template * Add module readiness template * Add readiness readme and adr template * Edit adr template * Update ADR template Co-authored-by: billy rennekamp <[email protected]> * Update module-readiness.md * Docs: Restructure governance section (#1126) * rm gov gaiad page use getting started * restructure proposal type readmes and formatting * rename files to use - vs _ * update links and order pages * move all best practices into a single doc * Apply suggestions from code review Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * Bump vuepress-theme-cosmos from 1.0.182 to 1.0.183 in /docs (#1161) Bumps [vuepress-theme-cosmos](https://github.com/cosmos/vuepress-theme-cosmos) from 1.0.182 to 1.0.183. - [Release notes](https://github.com/cosmos/vuepress-theme-cosmos/releases) - [Commits](https://github.com/cosmos/vuepress-theme-cosmos/commits) --- updated-dependencies: - dependency-name: vuepress-theme-cosmos dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump JamesIves/github-pages-deploy-action from 4.1.8 to 4.2.2 (#1152) Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.1.8 to 4.2.2. - [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases) - [Commits](JamesIves/github-pages-deploy-action@4.1.8...v4.2.2) --- updated-dependencies: - dependency-name: JamesIves/github-pages-deploy-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * 1159 update state sync configs (#1160) * Update default snapshot configs * Refactor * Fix override to include default template Co-authored-by: billy rennekamp <[email protected]> * Add tabbing for markdown docs (#1217) * Add tabbing for markdown docs * Add package-lock * Theta update (#1211) * Update cosmos-hub-roadmap-2.0.md * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update Ledger doc with Keplr (#1205) * Update Ledger doc with Keplr Replaced Lunie instructions with Keplr * Removed leftover Lunie content * Update ledger.md Co-authored-by: billy rennekamp <[email protected]> * Update joining mainnet documentation (#1146) * Update joining mainnet documentation * Minor fixes for updated joining mainnet documentation * Update menu order * Make requested changes * Additional updates * Make requested changes for hardware config * Update config header * Fix tabbing header * Update joining mainnet documentation * Minor fixes for updated joining mainnet documentation * Update menu order * Make requested changes * Additional updates * Make requested changes for hardware config * Update config header * Fix tabbing header Co-authored-by: billy rennekamp <[email protected]> * Updates to Validator Docs (#1207) * Updated validator documentation. * Small updates * fixes from yaru feedback * Update docs/validators/validator-setup.md Co-authored-by: lg <[email protected]> * Update docs/validators/validator-setup.md Co-authored-by: lg <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * bump cosmsos-sdk v0.44.5 to v0.45.0, ibc-go v2 to v3-alpha2, fix in-place migration ordering * fix: panic when forget to add modules to SetOrder{BeginBlocker, EndBlocker, InitGenesis, ExportGenesis} functions * fix: store.StoreUpgrades{} * bump: replace dependencies to depend on sdk 0.45.0 * bump: liquidity module to v1.4.5 * bump: cosmos-sdk to v0.45.1 * fix: server.Generate* is deprecated, it is moved to testutil * fix: upgrade module should run first in SetOrderBeginBlockers * fix: client.ReadFromClientConfig -> client.ReadPersistentCommandFlags * bump: gaia module: v6 -> v7 * bump: ibc-go to v3.0.0-beta1 * fix: router module * style: adjust package import order * fix: SetOrderEndBlockers * fix: adjust capability module's beginblocker position * Update app.go style: remove extra print * fix: SetOrderInitGenesis * fix: lint * add migration logs * feat: add ica * fix: lint * bump: ibc-to to v3.0.0-rc0 * fix: ica init * fix: fromVersionMap * set ica params * bump: liquidity to v1.5.0 * update upgrade name * bump: packet-forward-module * fix: ica in upgrade * bump: packet-forward module to v1.0.2 * bump: ibc-go to v3.0.0-rc1 * chore: add log * fix: upgrade add store * block all module acct to receive tokens by MsgSend * bump: ibc-go to v3.0.0-rc2 * remove unused function GetMaccPerms * bump: liquidity module to v1.5.0 * chore: rename ibcmodule to transferIBCModule * fix: delete ica controller module and allow more msg types in ica * fix: add icacontroller store to avoid panic * bump: ibc-go to v3.0.0 and remove ica controller * bump: packet-forward module to v2.1.1 Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]>
* Theta prepare merge to theta main (#1337) * chore: update changelog (#1060) * add changelog for backport release v5.0.8 (#1061) * Change golangci-lint version to the latest version of golangci-lint (v1.42.1) (#1043) Co-authored-by: yaruwangway <[email protected]> * Update DOCS_README with switch to GH Actions (#1049) * Update DOCS_README with switch to GH Actions * update to repo makefile Co-authored-by: billy rennekamp <[email protected]> * Merge pull request #1051: reenable displying params in gov docs * Update cosmos-hub-roadmap-2.0.md (#1065) * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md (#1066) * Update cosmos-hub-roadmap-2.0.md (#1068) * Update CODEOWNERS (#1031) * Update CODEOWNERS * Update .github/CODEOWNERS Co-authored-by: Marko <[email protected]> * Update CODEOWNERS Co-authored-by: Marko <[email protected]> * Update README.md (#1063) * hide top banner (#1062) Co-authored-by: billy rennekamp <[email protected]> * Update Readme.md (#1046) * Update Readme.md Added a 'How to Use' section and a line on learning more about the Cosmos Hub. * Update README.md Co-authored-by: billy rennekamp <[email protected]> * Update README.md (#1069) * Create statesync.bash (#1027) * Create statesync.bash Co-authored-by: billy rennekamp <[email protected]> * Update interchain-security.md (#1071) * Update cosmos-hub-roadmap-2.0.md (#1076) * Vega 6.0.0 (#1077) * fix: delete new modules from fromVM map to not skip init genesis * fix: migrate auth module after staking * gaia: add NewSetUpContextDecorator to antedecorator (#1078) * Update upgrade-node.md (#1080) add more info * Add IOBScan to Cosmos Hub Explorers list (#1075) * Update Readme (#1083) * Update Readme * Update README.md * Update README.md * Update README.md Co-authored-by: billy rennekamp <[email protected]> * Update Dockerfile.test (#1026) Co-authored-by: billy rennekamp <[email protected]> * Update cosmos-hub-roadmap-2.0.md (#1085) * Update cosmos-hub-roadmap-2.0.md (#1088) * Merge pull request #1050: Create Governance proposal template * add first draft proposal templates * add new PR template for governance * edit for small fixes (#1086) * Update validator-faq.md (#1087) more editorial love for this essential content * docs: fix links in governance section (#1089) * rm dev discord links * update and relativize links * align with link style elsewhere in docs * docs: vega upgrade instruction (#1096) * docs: vega upgrade instruction * chore: change upgrade time * Update cosmoshub-4-vega-upgrade.md chore: formatting * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: yaruwangway <[email protected]> * Update docs/migration/cosmoshub-4-vega-upgrade.md * Update docs/migration/cosmoshub-4-vega-upgrade.md * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: billy rennekamp <[email protected]> * doc: change doc for vega upgrade instruction (#1098) * doc: change doc for vega upgrade instruction * Update cosmoshub-4-vega-upgrade.md typo fix * docs minor typo fix (#1104) Cross Chain Validator (CCV) relay validator set composition * add dependabot (#1103) Co-authored-by: Marko Baricevic <[email protected]> * Update interchain-security.md (#1105) Co-authored-by: billy rennekamp <[email protected]> * Update gaiad installation docs, update docs install/run instructions, and clean up left menu ordering (#1095) Make requested changes Make ordering consistent * Fix broken installation links (#1120) * Bump technote-space/get-diff-action from 4 to 5.0.2 (#1108) Bumps [technote-space/get-diff-action](https://github.com/technote-space/get-diff-action) from 4 to 5.0.2. - [Release notes](https://github.com/technote-space/get-diff-action/releases) - [Changelog](https://github.com/technote-space/get-diff-action/blob/main/.releasegarc) - [Commits](technote-space/get-diff-action@v4...v5.0.2) --- updated-dependencies: - dependency-name: technote-space/get-diff-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump github.com/spf13/cobra from 1.2.1 to 1.3.0 (#1119) Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.2.1 to 1.3.0. - [Release notes](https://github.com/spf13/cobra/releases) - [Changelog](https://github.com/spf13/cobra/blob/master/CHANGELOG.md) - [Commits](spf13/cobra@v1.2.1...v1.3.0) --- updated-dependencies: - dependency-name: github.com/spf13/cobra dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump codecov/codecov-action from 1 to 2.1.0 (#1114) Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 1 to 2.1.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md) - [Commits](codecov/codecov-action@v1...v2.1.0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump JamesIves/github-pages-deploy-action from 3.7.1 to 4.1.8 (#1128) Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 3.7.1 to 4.1.8. - [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases) - [Commits](JamesIves/github-pages-deploy-action@3.7.1...4.1.8) --- updated-dependencies: - dependency-name: JamesIves/github-pages-deploy-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump github.com/cosmos/ibc-go/v2 from 2.0.0 to 2.0.2 (#1124) Bumps [github.com/cosmos/ibc-go/v2](https://github.com/cosmos/ibc-go) from 2.0.0 to 2.0.2. - [Release notes](https://github.com/cosmos/ibc-go/releases) - [Changelog](https://github.com/cosmos/ibc-go/blob/v2.0.2/CHANGELOG.md) - [Commits](cosmos/ibc-go@v2.0.0...v2.0.2) --- updated-dependencies: - dependency-name: github.com/cosmos/ibc-go/v2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump github.com/tendermint/tm-db from 0.6.4 to 0.6.6 (#1116) Bumps [github.com/tendermint/tm-db](https://github.com/tendermint/tm-db) from 0.6.4 to 0.6.6. - [Release notes](https://github.com/tendermint/tm-db/releases) - [Changelog](https://github.com/tendermint/tm-db/blob/master/CHANGELOG.md) - [Commits](tendermint/tm-db@v0.6.4...v0.6.6) --- updated-dependencies: - dependency-name: github.com/tendermint/tm-db dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump gaurav-nelson/github-action-markdown-link-check (#1112) Bumps [gaurav-nelson/github-action-markdown-link-check](https://github.com/gaurav-nelson/github-action-markdown-link-check) from 0.6.0 to 1.0.13. - [Release notes](https://github.com/gaurav-nelson/github-action-markdown-link-check/releases) - [Commits](gaurav-nelson/github-action-markdown-link-check@0.6.0...1.0.13) --- updated-dependencies: - dependency-name: gaurav-nelson/github-action-markdown-link-check dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/setup-go from 2.1.3 to 2.1.5 (#1130) Bumps [actions/setup-go](https://github.com/actions/setup-go) from 2.1.3 to 2.1.5. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v2.1.3...v2.1.5) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update broken links in docs (#1131) * update links in docs * cleanup * Bump actions/stale from 3 to 4.1.0 (#1113) Bumps [actions/stale](https://github.com/actions/stale) from 3 to 4.1.0. - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](actions/stale@v3...v4.1.0) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/checkout from 2.3.1 to 2.4.0 (#1110) Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.1 to 2.4.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2.3.1...v2.4.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/cache from 1 to 2.1.7 (#1107) Bumps [actions/cache](https://github.com/actions/cache) from 1 to 2.1.7. - [Release notes](https://github.com/actions/cache/releases) - [Commits](actions/cache@v1...v2.1.7) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Fix links to hub-tutorials (#1132) * Fix links to hub-tutorials Some of the links are broken due to the change of the gaia-tutorials folder. This should fix them. * Update installation.md * Update stale.yml to exclude issues (#1138) Taken from https://github.com/cosmos/cosmos-sdk/blob/master/.github/workflows/stale.yml * Update the upgrade time (#1102) * Update cosmoshub-4-vega-upgrade.md update the upgrade time * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: Noam <[email protected]> * docs: add system requirement Co-authored-by: Noam <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * Update Roadmap to mention Vega is completed (#1140) * Update Roadmap to mention Vega is completed And some little things to make sure the page is parsed well for the new cosmos hub roadmap page. * Updates to gravity bridge mentions Updated to signal Gravity Bridge is an external chain that was released around Vega. * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: billy rennekamp <[email protected]> * Added instructions on depositing to a proposal (#1142) * Added instructions on depositing to a proposal Also replaced the Hubble instructions with Mintscan. * Update docs/governance/submitting.md * Update docs/governance/submitting.md * Update docs/governance/submitting.md * Update docs/governance/submitting.md Co-authored-by: billy rennekamp <[email protected]> * Merge pull request #1090: docs: Set up locales for existing translations * set up locales for translations * remove es translations from gov section * update links in locale readmes * add initial instruction on locales in DOCS_README * add labels and selectText * remove frontmatter in es README * Module Readiness Github Issue & Docs (#1172) * add tempalte and dir * Update template.md * add issue template * Add module readiness template * Add readiness readme and adr template * Edit adr template * Update ADR template Co-authored-by: billy rennekamp <[email protected]> * Update module-readiness.md * Docs: Restructure governance section (#1126) * rm gov gaiad page use getting started * restructure proposal type readmes and formatting * rename files to use - vs _ * update links and order pages * move all best practices into a single doc * Apply suggestions from code review Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * Bump vuepress-theme-cosmos from 1.0.182 to 1.0.183 in /docs (#1161) Bumps [vuepress-theme-cosmos](https://github.com/cosmos/vuepress-theme-cosmos) from 1.0.182 to 1.0.183. - [Release notes](https://github.com/cosmos/vuepress-theme-cosmos/releases) - [Commits](https://github.com/cosmos/vuepress-theme-cosmos/commits) --- updated-dependencies: - dependency-name: vuepress-theme-cosmos dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump JamesIves/github-pages-deploy-action from 4.1.8 to 4.2.2 (#1152) Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.1.8 to 4.2.2. - [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases) - [Commits](JamesIves/github-pages-deploy-action@4.1.8...v4.2.2) --- updated-dependencies: - dependency-name: JamesIves/github-pages-deploy-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * 1159 update state sync configs (#1160) * Update default snapshot configs * Refactor * Fix override to include default template Co-authored-by: billy rennekamp <[email protected]> * Add tabbing for markdown docs (#1217) * Add tabbing for markdown docs * Add package-lock * Theta update (#1211) * Update cosmos-hub-roadmap-2.0.md * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update Ledger doc with Keplr (#1205) * Update Ledger doc with Keplr Replaced Lunie instructions with Keplr * Removed leftover Lunie content * Update ledger.md Co-authored-by: billy rennekamp <[email protected]> * Update joining mainnet documentation (#1146) * Update joining mainnet documentation * Minor fixes for updated joining mainnet documentation * Update menu order * Make requested changes * Additional updates * Make requested changes for hardware config * Update config header * Fix tabbing header * Update joining mainnet documentation * Minor fixes for updated joining mainnet documentation * Update menu order * Make requested changes * Additional updates * Make requested changes for hardware config * Update config header * Fix tabbing header Co-authored-by: billy rennekamp <[email protected]> * Updates to Validator Docs (#1207) * Updated validator documentation. * Small updates * fixes from yaru feedback * Update docs/validators/validator-setup.md Co-authored-by: lg <[email protected]> * Update docs/validators/validator-setup.md Co-authored-by: lg <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * bump cosmsos-sdk v0.44.5 to v0.45.0, ibc-go v2 to v3-alpha2, fix in-place migration ordering * fix: panic when forget to add modules to SetOrder{BeginBlocker, EndBlocker, InitGenesis, ExportGenesis} functions * fix: store.StoreUpgrades{} * bump: replace dependencies to depend on sdk 0.45.0 * bump: liquidity module to v1.4.5 * bump: cosmos-sdk to v0.45.1 * fix: server.Generate* is deprecated, it is moved to testutil * fix: upgrade module should run first in SetOrderBeginBlockers * fix: client.ReadFromClientConfig -> client.ReadPersistentCommandFlags * bump: gaia module: v6 -> v7 * bump: ibc-go to v3.0.0-beta1 * fix: router module * style: adjust package import order * fix: SetOrderEndBlockers * fix: adjust capability module's beginblocker position * Update app.go style: remove extra print * fix: SetOrderInitGenesis * fix: lint * add migration logs * feat: add ica * fix: lint * bump: ibc-to to v3.0.0-rc0 * fix: ica init * fix: fromVersionMap * set ica params * bump: liquidity to v1.5.0 * update upgrade name * bump: packet-forward-module * fix: ica in upgrade * bump: packet-forward module to v1.0.2 * bump: ibc-go to v3.0.0-rc1 * chore: add log * fix: upgrade add store * block all module acct to receive tokens by MsgSend * bump: ibc-go to v3.0.0-rc2 * remove unused function GetMaccPerms * bump: liquidity module to v1.5.0 * chore: rename ibcmodule to transferIBCModule * fix: delete ica controller module and allow more msg types in ica * fix: add icacontroller store to avoid panic * bump: ibc-go to v3.0.0 and remove ica controller * bump: packet-forward module to v2.1.1 Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> * fix: fromVM * chore: correct docs, comments, go.sum Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]>
* merge theta-main to release/v7.0.0-rc0 (#1339) * Theta prepare merge to theta main (#1337) * chore: update changelog (#1060) * add changelog for backport release v5.0.8 (#1061) * Change golangci-lint version to the latest version of golangci-lint (v1.42.1) (#1043) Co-authored-by: yaruwangway <[email protected]> * Update DOCS_README with switch to GH Actions (#1049) * Update DOCS_README with switch to GH Actions * update to repo makefile Co-authored-by: billy rennekamp <[email protected]> * Merge pull request #1051: reenable displying params in gov docs * Update cosmos-hub-roadmap-2.0.md (#1065) * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md (#1066) * Update cosmos-hub-roadmap-2.0.md (#1068) * Update CODEOWNERS (#1031) * Update CODEOWNERS * Update .github/CODEOWNERS Co-authored-by: Marko <[email protected]> * Update CODEOWNERS Co-authored-by: Marko <[email protected]> * Update README.md (#1063) * hide top banner (#1062) Co-authored-by: billy rennekamp <[email protected]> * Update Readme.md (#1046) * Update Readme.md Added a 'How to Use' section and a line on learning more about the Cosmos Hub. * Update README.md Co-authored-by: billy rennekamp <[email protected]> * Update README.md (#1069) * Create statesync.bash (#1027) * Create statesync.bash Co-authored-by: billy rennekamp <[email protected]> * Update interchain-security.md (#1071) * Update cosmos-hub-roadmap-2.0.md (#1076) * Vega 6.0.0 (#1077) * fix: delete new modules from fromVM map to not skip init genesis * fix: migrate auth module after staking * gaia: add NewSetUpContextDecorator to antedecorator (#1078) * Update upgrade-node.md (#1080) add more info * Add IOBScan to Cosmos Hub Explorers list (#1075) * Update Readme (#1083) * Update Readme * Update README.md * Update README.md * Update README.md Co-authored-by: billy rennekamp <[email protected]> * Update Dockerfile.test (#1026) Co-authored-by: billy rennekamp <[email protected]> * Update cosmos-hub-roadmap-2.0.md (#1085) * Update cosmos-hub-roadmap-2.0.md (#1088) * Merge pull request #1050: Create Governance proposal template * add first draft proposal templates * add new PR template for governance * edit for small fixes (#1086) * Update validator-faq.md (#1087) more editorial love for this essential content * docs: fix links in governance section (#1089) * rm dev discord links * update and relativize links * align with link style elsewhere in docs * docs: vega upgrade instruction (#1096) * docs: vega upgrade instruction * chore: change upgrade time * Update cosmoshub-4-vega-upgrade.md chore: formatting * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: yaruwangway <[email protected]> * Update docs/migration/cosmoshub-4-vega-upgrade.md * Update docs/migration/cosmoshub-4-vega-upgrade.md * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: billy rennekamp <[email protected]> * doc: change doc for vega upgrade instruction (#1098) * doc: change doc for vega upgrade instruction * Update cosmoshub-4-vega-upgrade.md typo fix * docs minor typo fix (#1104) Cross Chain Validator (CCV) relay validator set composition * add dependabot (#1103) Co-authored-by: Marko Baricevic <[email protected]> * Update interchain-security.md (#1105) Co-authored-by: billy rennekamp <[email protected]> * Update gaiad installation docs, update docs install/run instructions, and clean up left menu ordering (#1095) Make requested changes Make ordering consistent * Fix broken installation links (#1120) * Bump technote-space/get-diff-action from 4 to 5.0.2 (#1108) Bumps [technote-space/get-diff-action](https://github.com/technote-space/get-diff-action) from 4 to 5.0.2. - [Release notes](https://github.com/technote-space/get-diff-action/releases) - [Changelog](https://github.com/technote-space/get-diff-action/blob/main/.releasegarc) - [Commits](technote-space/get-diff-action@v4...v5.0.2) --- updated-dependencies: - dependency-name: technote-space/get-diff-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump github.com/spf13/cobra from 1.2.1 to 1.3.0 (#1119) Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.2.1 to 1.3.0. - [Release notes](https://github.com/spf13/cobra/releases) - [Changelog](https://github.com/spf13/cobra/blob/master/CHANGELOG.md) - [Commits](spf13/cobra@v1.2.1...v1.3.0) --- updated-dependencies: - dependency-name: github.com/spf13/cobra dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump codecov/codecov-action from 1 to 2.1.0 (#1114) Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 1 to 2.1.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md) - [Commits](codecov/codecov-action@v1...v2.1.0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump JamesIves/github-pages-deploy-action from 3.7.1 to 4.1.8 (#1128) Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 3.7.1 to 4.1.8. - [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases) - [Commits](JamesIves/github-pages-deploy-action@3.7.1...4.1.8) --- updated-dependencies: - dependency-name: JamesIves/github-pages-deploy-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump github.com/cosmos/ibc-go/v2 from 2.0.0 to 2.0.2 (#1124) Bumps [github.com/cosmos/ibc-go/v2](https://github.com/cosmos/ibc-go) from 2.0.0 to 2.0.2. - [Release notes](https://github.com/cosmos/ibc-go/releases) - [Changelog](https://github.com/cosmos/ibc-go/blob/v2.0.2/CHANGELOG.md) - [Commits](cosmos/ibc-go@v2.0.0...v2.0.2) --- updated-dependencies: - dependency-name: github.com/cosmos/ibc-go/v2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump github.com/tendermint/tm-db from 0.6.4 to 0.6.6 (#1116) Bumps [github.com/tendermint/tm-db](https://github.com/tendermint/tm-db) from 0.6.4 to 0.6.6. - [Release notes](https://github.com/tendermint/tm-db/releases) - [Changelog](https://github.com/tendermint/tm-db/blob/master/CHANGELOG.md) - [Commits](tendermint/tm-db@v0.6.4...v0.6.6) --- updated-dependencies: - dependency-name: github.com/tendermint/tm-db dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump gaurav-nelson/github-action-markdown-link-check (#1112) Bumps [gaurav-nelson/github-action-markdown-link-check](https://github.com/gaurav-nelson/github-action-markdown-link-check) from 0.6.0 to 1.0.13. - [Release notes](https://github.com/gaurav-nelson/github-action-markdown-link-check/releases) - [Commits](gaurav-nelson/github-action-markdown-link-check@0.6.0...1.0.13) --- updated-dependencies: - dependency-name: gaurav-nelson/github-action-markdown-link-check dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/setup-go from 2.1.3 to 2.1.5 (#1130) Bumps [actions/setup-go](https://github.com/actions/setup-go) from 2.1.3 to 2.1.5. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v2.1.3...v2.1.5) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update broken links in docs (#1131) * update links in docs * cleanup * Bump actions/stale from 3 to 4.1.0 (#1113) Bumps [actions/stale](https://github.com/actions/stale) from 3 to 4.1.0. - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](actions/stale@v3...v4.1.0) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/checkout from 2.3.1 to 2.4.0 (#1110) Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.1 to 2.4.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2.3.1...v2.4.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/cache from 1 to 2.1.7 (#1107) Bumps [actions/cache](https://github.com/actions/cache) from 1 to 2.1.7. - [Release notes](https://github.com/actions/cache/releases) - [Commits](actions/cache@v1...v2.1.7) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Fix links to hub-tutorials (#1132) * Fix links to hub-tutorials Some of the links are broken due to the change of the gaia-tutorials folder. This should fix them. * Update installation.md * Update stale.yml to exclude issues (#1138) Taken from https://github.com/cosmos/cosmos-sdk/blob/master/.github/workflows/stale.yml * Update the upgrade time (#1102) * Update cosmoshub-4-vega-upgrade.md update the upgrade time * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: Noam <[email protected]> * docs: add system requirement Co-authored-by: Noam <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * Update Roadmap to mention Vega is completed (#1140) * Update Roadmap to mention Vega is completed And some little things to make sure the page is parsed well for the new cosmos hub roadmap page. * Updates to gravity bridge mentions Updated to signal Gravity Bridge is an external chain that was released around Vega. * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: billy rennekamp <[email protected]> * Added instructions on depositing to a proposal (#1142) * Added instructions on depositing to a proposal Also replaced the Hubble instructions with Mintscan. * Update docs/governance/submitting.md * Update docs/governance/submitting.md * Update docs/governance/submitting.md * Update docs/governance/submitting.md Co-authored-by: billy rennekamp <[email protected]> * Merge pull request #1090: docs: Set up locales for existing translations * set up locales for translations * remove es translations from gov section * update links in locale readmes * add initial instruction on locales in DOCS_README * add labels and selectText * remove frontmatter in es README * Module Readiness Github Issue & Docs (#1172) * add tempalte and dir * Update template.md * add issue template * Add module readiness template * Add readiness readme and adr template * Edit adr template * Update ADR template Co-authored-by: billy rennekamp <[email protected]> * Update module-readiness.md * Docs: Restructure governance section (#1126) * rm gov gaiad page use getting started * restructure proposal type readmes and formatting * rename files to use - vs _ * update links and order pages * move all best practices into a single doc * Apply suggestions from code review Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * Bump vuepress-theme-cosmos from 1.0.182 to 1.0.183 in /docs (#1161) Bumps [vuepress-theme-cosmos](https://github.com/cosmos/vuepress-theme-cosmos) from 1.0.182 to 1.0.183. - [Release notes](https://github.com/cosmos/vuepress-theme-cosmos/releases) - [Commits](https://github.com/cosmos/vuepress-theme-cosmos/commits) --- updated-dependencies: - dependency-name: vuepress-theme-cosmos dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump JamesIves/github-pages-deploy-action from 4.1.8 to 4.2.2 (#1152) Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.1.8 to 4.2.2. - [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases) - [Commits](JamesIves/github-pages-deploy-action@4.1.8...v4.2.2) --- updated-dependencies: - dependency-name: JamesIves/github-pages-deploy-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * 1159 update state sync configs (#1160) * Update default snapshot configs * Refactor * Fix override to include default template Co-authored-by: billy rennekamp <[email protected]> * Add tabbing for markdown docs (#1217) * Add tabbing for markdown docs * Add package-lock * Theta update (#1211) * Update cosmos-hub-roadmap-2.0.md * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update Ledger doc with Keplr (#1205) * Update Ledger doc with Keplr Replaced Lunie instructions with Keplr * Removed leftover Lunie content * Update ledger.md Co-authored-by: billy rennekamp <[email protected]> * Update joining mainnet documentation (#1146) * Update joining mainnet documentation * Minor fixes for updated joining mainnet documentation * Update menu order * Make requested changes * Additional updates * Make requested changes for hardware config * Update config header * Fix tabbing header * Update joining mainnet documentation * Minor fixes for updated joining mainnet documentation * Update menu order * Make requested changes * Additional updates * Make requested changes for hardware config * Update config header * Fix tabbing header Co-authored-by: billy rennekamp <[email protected]> * Updates to Validator Docs (#1207) * Updated validator documentation. * Small updates * fixes from yaru feedback * Update docs/validators/validator-setup.md Co-authored-by: lg <[email protected]> * Update docs/validators/validator-setup.md Co-authored-by: lg <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * bump cosmsos-sdk v0.44.5 to v0.45.0, ibc-go v2 to v3-alpha2, fix in-place migration ordering * fix: panic when forget to add modules to SetOrder{BeginBlocker, EndBlocker, InitGenesis, ExportGenesis} functions * fix: store.StoreUpgrades{} * bump: replace dependencies to depend on sdk 0.45.0 * bump: liquidity module to v1.4.5 * bump: cosmos-sdk to v0.45.1 * fix: server.Generate* is deprecated, it is moved to testutil * fix: upgrade module should run first in SetOrderBeginBlockers * fix: client.ReadFromClientConfig -> client.ReadPersistentCommandFlags * bump: gaia module: v6 -> v7 * bump: ibc-go to v3.0.0-beta1 * fix: router module * style: adjust package import order * fix: SetOrderEndBlockers * fix: adjust capability module's beginblocker position * Update app.go style: remove extra print * fix: SetOrderInitGenesis * fix: lint * add migration logs * feat: add ica * fix: lint * bump: ibc-to to v3.0.0-rc0 * fix: ica init * fix: fromVersionMap * set ica params * bump: liquidity to v1.5.0 * update upgrade name * bump: packet-forward-module * fix: ica in upgrade * bump: packet-forward module to v1.0.2 * bump: ibc-go to v3.0.0-rc1 * chore: add log * fix: upgrade add store * block all module acct to receive tokens by MsgSend * bump: ibc-go to v3.0.0-rc2 * remove unused function GetMaccPerms * bump: liquidity module to v1.5.0 * chore: rename ibcmodule to transferIBCModule * fix: delete ica controller module and allow more msg types in ica * fix: add icacontroller store to avoid panic * bump: ibc-go to v3.0.0 and remove ica controller * bump: packet-forward module to v2.1.1 Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> * fix: fromVM * chore: correct docs, comments, go.sum Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> * chore: add CHANGELOG Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]>
* merge theta-main to release/v7.0.0-rc0 (#1339) * Theta prepare merge to theta main (#1337) * chore: update changelog (#1060) * add changelog for backport release v5.0.8 (#1061) * Change golangci-lint version to the latest version of golangci-lint (v1.42.1) (#1043) Co-authored-by: yaruwangway <[email protected]> * Update DOCS_README with switch to GH Actions (#1049) * Update DOCS_README with switch to GH Actions * update to repo makefile Co-authored-by: billy rennekamp <[email protected]> * Merge pull request #1051: reenable displying params in gov docs * Update cosmos-hub-roadmap-2.0.md (#1065) * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md (#1066) * Update cosmos-hub-roadmap-2.0.md (#1068) * Update CODEOWNERS (#1031) * Update CODEOWNERS * Update .github/CODEOWNERS Co-authored-by: Marko <[email protected]> * Update CODEOWNERS Co-authored-by: Marko <[email protected]> * Update README.md (#1063) * hide top banner (#1062) Co-authored-by: billy rennekamp <[email protected]> * Update Readme.md (#1046) * Update Readme.md Added a 'How to Use' section and a line on learning more about the Cosmos Hub. * Update README.md Co-authored-by: billy rennekamp <[email protected]> * Update README.md (#1069) * Create statesync.bash (#1027) * Create statesync.bash Co-authored-by: billy rennekamp <[email protected]> * Update interchain-security.md (#1071) * Update cosmos-hub-roadmap-2.0.md (#1076) * Vega 6.0.0 (#1077) * fix: delete new modules from fromVM map to not skip init genesis * fix: migrate auth module after staking * gaia: add NewSetUpContextDecorator to antedecorator (#1078) * Update upgrade-node.md (#1080) add more info * Add IOBScan to Cosmos Hub Explorers list (#1075) * Update Readme (#1083) * Update Readme * Update README.md * Update README.md * Update README.md Co-authored-by: billy rennekamp <[email protected]> * Update Dockerfile.test (#1026) Co-authored-by: billy rennekamp <[email protected]> * Update cosmos-hub-roadmap-2.0.md (#1085) * Update cosmos-hub-roadmap-2.0.md (#1088) * Merge pull request #1050: Create Governance proposal template * add first draft proposal templates * add new PR template for governance * edit for small fixes (#1086) * Update validator-faq.md (#1087) more editorial love for this essential content * docs: fix links in governance section (#1089) * rm dev discord links * update and relativize links * align with link style elsewhere in docs * docs: vega upgrade instruction (#1096) * docs: vega upgrade instruction * chore: change upgrade time * Update cosmoshub-4-vega-upgrade.md chore: formatting * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: yaruwangway <[email protected]> * Update docs/migration/cosmoshub-4-vega-upgrade.md * Update docs/migration/cosmoshub-4-vega-upgrade.md * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: billy rennekamp <[email protected]> * doc: change doc for vega upgrade instruction (#1098) * doc: change doc for vega upgrade instruction * Update cosmoshub-4-vega-upgrade.md typo fix * docs minor typo fix (#1104) Cross Chain Validator (CCV) relay validator set composition * add dependabot (#1103) Co-authored-by: Marko Baricevic <[email protected]> * Update interchain-security.md (#1105) Co-authored-by: billy rennekamp <[email protected]> * Update gaiad installation docs, update docs install/run instructions, and clean up left menu ordering (#1095) Make requested changes Make ordering consistent * Fix broken installation links (#1120) * Bump technote-space/get-diff-action from 4 to 5.0.2 (#1108) Bumps [technote-space/get-diff-action](https://github.com/technote-space/get-diff-action) from 4 to 5.0.2. - [Release notes](https://github.com/technote-space/get-diff-action/releases) - [Changelog](https://github.com/technote-space/get-diff-action/blob/main/.releasegarc) - [Commits](technote-space/get-diff-action@v4...v5.0.2) --- updated-dependencies: - dependency-name: technote-space/get-diff-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump github.com/spf13/cobra from 1.2.1 to 1.3.0 (#1119) Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.2.1 to 1.3.0. - [Release notes](https://github.com/spf13/cobra/releases) - [Changelog](https://github.com/spf13/cobra/blob/master/CHANGELOG.md) - [Commits](spf13/cobra@v1.2.1...v1.3.0) --- updated-dependencies: - dependency-name: github.com/spf13/cobra dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump codecov/codecov-action from 1 to 2.1.0 (#1114) Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 1 to 2.1.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md) - [Commits](codecov/codecov-action@v1...v2.1.0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump JamesIves/github-pages-deploy-action from 3.7.1 to 4.1.8 (#1128) Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 3.7.1 to 4.1.8. - [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases) - [Commits](JamesIves/github-pages-deploy-action@3.7.1...4.1.8) --- updated-dependencies: - dependency-name: JamesIves/github-pages-deploy-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump github.com/cosmos/ibc-go/v2 from 2.0.0 to 2.0.2 (#1124) Bumps [github.com/cosmos/ibc-go/v2](https://github.com/cosmos/ibc-go) from 2.0.0 to 2.0.2. - [Release notes](https://github.com/cosmos/ibc-go/releases) - [Changelog](https://github.com/cosmos/ibc-go/blob/v2.0.2/CHANGELOG.md) - [Commits](cosmos/ibc-go@v2.0.0...v2.0.2) --- updated-dependencies: - dependency-name: github.com/cosmos/ibc-go/v2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump github.com/tendermint/tm-db from 0.6.4 to 0.6.6 (#1116) Bumps [github.com/tendermint/tm-db](https://github.com/tendermint/tm-db) from 0.6.4 to 0.6.6. - [Release notes](https://github.com/tendermint/tm-db/releases) - [Changelog](https://github.com/tendermint/tm-db/blob/master/CHANGELOG.md) - [Commits](tendermint/tm-db@v0.6.4...v0.6.6) --- updated-dependencies: - dependency-name: github.com/tendermint/tm-db dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump gaurav-nelson/github-action-markdown-link-check (#1112) Bumps [gaurav-nelson/github-action-markdown-link-check](https://github.com/gaurav-nelson/github-action-markdown-link-check) from 0.6.0 to 1.0.13. - [Release notes](https://github.com/gaurav-nelson/github-action-markdown-link-check/releases) - [Commits](gaurav-nelson/github-action-markdown-link-check@0.6.0...1.0.13) --- updated-dependencies: - dependency-name: gaurav-nelson/github-action-markdown-link-check dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/setup-go from 2.1.3 to 2.1.5 (#1130) Bumps [actions/setup-go](https://github.com/actions/setup-go) from 2.1.3 to 2.1.5. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v2.1.3...v2.1.5) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update broken links in docs (#1131) * update links in docs * cleanup * Bump actions/stale from 3 to 4.1.0 (#1113) Bumps [actions/stale](https://github.com/actions/stale) from 3 to 4.1.0. - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](actions/stale@v3...v4.1.0) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/checkout from 2.3.1 to 2.4.0 (#1110) Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.1 to 2.4.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2.3.1...v2.4.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/cache from 1 to 2.1.7 (#1107) Bumps [actions/cache](https://github.com/actions/cache) from 1 to 2.1.7. - [Release notes](https://github.com/actions/cache/releases) - [Commits](actions/cache@v1...v2.1.7) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Fix links to hub-tutorials (#1132) * Fix links to hub-tutorials Some of the links are broken due to the change of the gaia-tutorials folder. This should fix them. * Update installation.md * Update stale.yml to exclude issues (#1138) Taken from https://github.com/cosmos/cosmos-sdk/blob/master/.github/workflows/stale.yml * Update the upgrade time (#1102) * Update cosmoshub-4-vega-upgrade.md update the upgrade time * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: Noam <[email protected]> * docs: add system requirement Co-authored-by: Noam <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * Update Roadmap to mention Vega is completed (#1140) * Update Roadmap to mention Vega is completed And some little things to make sure the page is parsed well for the new cosmos hub roadmap page. * Updates to gravity bridge mentions Updated to signal Gravity Bridge is an external chain that was released around Vega. * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: billy rennekamp <[email protected]> * Added instructions on depositing to a proposal (#1142) * Added instructions on depositing to a proposal Also replaced the Hubble instructions with Mintscan. * Update docs/governance/submitting.md * Update docs/governance/submitting.md * Update docs/governance/submitting.md * Update docs/governance/submitting.md Co-authored-by: billy rennekamp <[email protected]> * Merge pull request #1090: docs: Set up locales for existing translations * set up locales for translations * remove es translations from gov section * update links in locale readmes * add initial instruction on locales in DOCS_README * add labels and selectText * remove frontmatter in es README * Module Readiness Github Issue & Docs (#1172) * add tempalte and dir * Update template.md * add issue template * Add module readiness template * Add readiness readme and adr template * Edit adr template * Update ADR template Co-authored-by: billy rennekamp <[email protected]> * Update module-readiness.md * Docs: Restructure governance section (#1126) * rm gov gaiad page use getting started * restructure proposal type readmes and formatting * rename files to use - vs _ * update links and order pages * move all best practices into a single doc * Apply suggestions from code review Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * Bump vuepress-theme-cosmos from 1.0.182 to 1.0.183 in /docs (#1161) Bumps [vuepress-theme-cosmos](https://github.com/cosmos/vuepress-theme-cosmos) from 1.0.182 to 1.0.183. - [Release notes](https://github.com/cosmos/vuepress-theme-cosmos/releases) - [Commits](https://github.com/cosmos/vuepress-theme-cosmos/commits) --- updated-dependencies: - dependency-name: vuepress-theme-cosmos dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump JamesIves/github-pages-deploy-action from 4.1.8 to 4.2.2 (#1152) Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.1.8 to 4.2.2. - [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases) - [Commits](JamesIves/github-pages-deploy-action@4.1.8...v4.2.2) --- updated-dependencies: - dependency-name: JamesIves/github-pages-deploy-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * 1159 update state sync configs (#1160) * Update default snapshot configs * Refactor * Fix override to include default template Co-authored-by: billy rennekamp <[email protected]> * Add tabbing for markdown docs (#1217) * Add tabbing for markdown docs * Add package-lock * Theta update (#1211) * Update cosmos-hub-roadmap-2.0.md * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update Ledger doc with Keplr (#1205) * Update Ledger doc with Keplr Replaced Lunie instructions with Keplr * Removed leftover Lunie content * Update ledger.md Co-authored-by: billy rennekamp <[email protected]> * Update joining mainnet documentation (#1146) * Update joining mainnet documentation * Minor fixes for updated joining mainnet documentation * Update menu order * Make requested changes * Additional updates * Make requested changes for hardware config * Update config header * Fix tabbing header * Update joining mainnet documentation * Minor fixes for updated joining mainnet documentation * Update menu order * Make requested changes * Additional updates * Make requested changes for hardware config * Update config header * Fix tabbing header Co-authored-by: billy rennekamp <[email protected]> * Updates to Validator Docs (#1207) * Updated validator documentation. * Small updates * fixes from yaru feedback * Update docs/validators/validator-setup.md Co-authored-by: lg <[email protected]> * Update docs/validators/validator-setup.md Co-authored-by: lg <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * bump cosmsos-sdk v0.44.5 to v0.45.0, ibc-go v2 to v3-alpha2, fix in-place migration ordering * fix: panic when forget to add modules to SetOrder{BeginBlocker, EndBlocker, InitGenesis, ExportGenesis} functions * fix: store.StoreUpgrades{} * bump: replace dependencies to depend on sdk 0.45.0 * bump: liquidity module to v1.4.5 * bump: cosmos-sdk to v0.45.1 * fix: server.Generate* is deprecated, it is moved to testutil * fix: upgrade module should run first in SetOrderBeginBlockers * fix: client.ReadFromClientConfig -> client.ReadPersistentCommandFlags * bump: gaia module: v6 -> v7 * bump: ibc-go to v3.0.0-beta1 * fix: router module * style: adjust package import order * fix: SetOrderEndBlockers * fix: adjust capability module's beginblocker position * Update app.go style: remove extra print * fix: SetOrderInitGenesis * fix: lint * add migration logs * feat: add ica * fix: lint * bump: ibc-to to v3.0.0-rc0 * fix: ica init * fix: fromVersionMap * set ica params * bump: liquidity to v1.5.0 * update upgrade name * bump: packet-forward-module * fix: ica in upgrade * bump: packet-forward module to v1.0.2 * bump: ibc-go to v3.0.0-rc1 * chore: add log * fix: upgrade add store * block all module acct to receive tokens by MsgSend * bump: ibc-go to v3.0.0-rc2 * remove unused function GetMaccPerms * bump: liquidity module to v1.5.0 * chore: rename ibcmodule to transferIBCModule * fix: delete ica controller module and allow more msg types in ica * fix: add icacontroller store to avoid panic * bump: ibc-go to v3.0.0 and remove ica controller * bump: packet-forward module to v2.1.1 Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> * fix: fromVM * chore: correct docs, comments, go.sum Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> * chore: add CHANGELOG Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]>
* merge theta-main to release/v7.0.0-rc0 (#1339) * Theta prepare merge to theta main (#1337) * chore: update changelog (#1060) * add changelog for backport release v5.0.8 (#1061) * Change golangci-lint version to the latest version of golangci-lint (v1.42.1) (#1043) Co-authored-by: yaruwangway <[email protected]> * Update DOCS_README with switch to GH Actions (#1049) * Update DOCS_README with switch to GH Actions * update to repo makefile Co-authored-by: billy rennekamp <[email protected]> * Merge pull request #1051: reenable displying params in gov docs * Update cosmos-hub-roadmap-2.0.md (#1065) * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md (#1066) * Update cosmos-hub-roadmap-2.0.md (#1068) * Update CODEOWNERS (#1031) * Update CODEOWNERS * Update .github/CODEOWNERS Co-authored-by: Marko <[email protected]> * Update CODEOWNERS Co-authored-by: Marko <[email protected]> * Update README.md (#1063) * hide top banner (#1062) Co-authored-by: billy rennekamp <[email protected]> * Update Readme.md (#1046) * Update Readme.md Added a 'How to Use' section and a line on learning more about the Cosmos Hub. * Update README.md Co-authored-by: billy rennekamp <[email protected]> * Update README.md (#1069) * Create statesync.bash (#1027) * Create statesync.bash Co-authored-by: billy rennekamp <[email protected]> * Update interchain-security.md (#1071) * Update cosmos-hub-roadmap-2.0.md (#1076) * Vega 6.0.0 (#1077) * fix: delete new modules from fromVM map to not skip init genesis * fix: migrate auth module after staking * gaia: add NewSetUpContextDecorator to antedecorator (#1078) * Update upgrade-node.md (#1080) add more info * Add IOBScan to Cosmos Hub Explorers list (#1075) * Update Readme (#1083) * Update Readme * Update README.md * Update README.md * Update README.md Co-authored-by: billy rennekamp <[email protected]> * Update Dockerfile.test (#1026) Co-authored-by: billy rennekamp <[email protected]> * Update cosmos-hub-roadmap-2.0.md (#1085) * Update cosmos-hub-roadmap-2.0.md (#1088) * Merge pull request #1050: Create Governance proposal template * add first draft proposal templates * add new PR template for governance * edit for small fixes (#1086) * Update validator-faq.md (#1087) more editorial love for this essential content * docs: fix links in governance section (#1089) * rm dev discord links * update and relativize links * align with link style elsewhere in docs * docs: vega upgrade instruction (#1096) * docs: vega upgrade instruction * chore: change upgrade time * Update cosmoshub-4-vega-upgrade.md chore: formatting * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: yaruwangway <[email protected]> * Update docs/migration/cosmoshub-4-vega-upgrade.md * Update docs/migration/cosmoshub-4-vega-upgrade.md * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: billy rennekamp <[email protected]> * doc: change doc for vega upgrade instruction (#1098) * doc: change doc for vega upgrade instruction * Update cosmoshub-4-vega-upgrade.md typo fix * docs minor typo fix (#1104) Cross Chain Validator (CCV) relay validator set composition * add dependabot (#1103) Co-authored-by: Marko Baricevic <[email protected]> * Update interchain-security.md (#1105) Co-authored-by: billy rennekamp <[email protected]> * Update gaiad installation docs, update docs install/run instructions, and clean up left menu ordering (#1095) Make requested changes Make ordering consistent * Fix broken installation links (#1120) * Bump technote-space/get-diff-action from 4 to 5.0.2 (#1108) Bumps [technote-space/get-diff-action](https://github.com/technote-space/get-diff-action) from 4 to 5.0.2. - [Release notes](https://github.com/technote-space/get-diff-action/releases) - [Changelog](https://github.com/technote-space/get-diff-action/blob/main/.releasegarc) - [Commits](technote-space/get-diff-action@v4...v5.0.2) --- updated-dependencies: - dependency-name: technote-space/get-diff-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump github.com/spf13/cobra from 1.2.1 to 1.3.0 (#1119) Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.2.1 to 1.3.0. - [Release notes](https://github.com/spf13/cobra/releases) - [Changelog](https://github.com/spf13/cobra/blob/master/CHANGELOG.md) - [Commits](spf13/cobra@v1.2.1...v1.3.0) --- updated-dependencies: - dependency-name: github.com/spf13/cobra dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump codecov/codecov-action from 1 to 2.1.0 (#1114) Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 1 to 2.1.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md) - [Commits](codecov/codecov-action@v1...v2.1.0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump JamesIves/github-pages-deploy-action from 3.7.1 to 4.1.8 (#1128) Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 3.7.1 to 4.1.8. - [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases) - [Commits](JamesIves/github-pages-deploy-action@3.7.1...4.1.8) --- updated-dependencies: - dependency-name: JamesIves/github-pages-deploy-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump github.com/cosmos/ibc-go/v2 from 2.0.0 to 2.0.2 (#1124) Bumps [github.com/cosmos/ibc-go/v2](https://github.com/cosmos/ibc-go) from 2.0.0 to 2.0.2. - [Release notes](https://github.com/cosmos/ibc-go/releases) - [Changelog](https://github.com/cosmos/ibc-go/blob/v2.0.2/CHANGELOG.md) - [Commits](cosmos/ibc-go@v2.0.0...v2.0.2) --- updated-dependencies: - dependency-name: github.com/cosmos/ibc-go/v2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump github.com/tendermint/tm-db from 0.6.4 to 0.6.6 (#1116) Bumps [github.com/tendermint/tm-db](https://github.com/tendermint/tm-db) from 0.6.4 to 0.6.6. - [Release notes](https://github.com/tendermint/tm-db/releases) - [Changelog](https://github.com/tendermint/tm-db/blob/master/CHANGELOG.md) - [Commits](tendermint/tm-db@v0.6.4...v0.6.6) --- updated-dependencies: - dependency-name: github.com/tendermint/tm-db dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump gaurav-nelson/github-action-markdown-link-check (#1112) Bumps [gaurav-nelson/github-action-markdown-link-check](https://github.com/gaurav-nelson/github-action-markdown-link-check) from 0.6.0 to 1.0.13. - [Release notes](https://github.com/gaurav-nelson/github-action-markdown-link-check/releases) - [Commits](gaurav-nelson/github-action-markdown-link-check@0.6.0...1.0.13) --- updated-dependencies: - dependency-name: gaurav-nelson/github-action-markdown-link-check dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/setup-go from 2.1.3 to 2.1.5 (#1130) Bumps [actions/setup-go](https://github.com/actions/setup-go) from 2.1.3 to 2.1.5. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v2.1.3...v2.1.5) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update broken links in docs (#1131) * update links in docs * cleanup * Bump actions/stale from 3 to 4.1.0 (#1113) Bumps [actions/stale](https://github.com/actions/stale) from 3 to 4.1.0. - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](actions/stale@v3...v4.1.0) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/checkout from 2.3.1 to 2.4.0 (#1110) Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.1 to 2.4.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2.3.1...v2.4.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/cache from 1 to 2.1.7 (#1107) Bumps [actions/cache](https://github.com/actions/cache) from 1 to 2.1.7. - [Release notes](https://github.com/actions/cache/releases) - [Commits](actions/cache@v1...v2.1.7) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Fix links to hub-tutorials (#1132) * Fix links to hub-tutorials Some of the links are broken due to the change of the gaia-tutorials folder. This should fix them. * Update installation.md * Update stale.yml to exclude issues (#1138) Taken from https://github.com/cosmos/cosmos-sdk/blob/master/.github/workflows/stale.yml * Update the upgrade time (#1102) * Update cosmoshub-4-vega-upgrade.md update the upgrade time * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: Noam <[email protected]> * docs: add system requirement Co-authored-by: Noam <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * Update Roadmap to mention Vega is completed (#1140) * Update Roadmap to mention Vega is completed And some little things to make sure the page is parsed well for the new cosmos hub roadmap page. * Updates to gravity bridge mentions Updated to signal Gravity Bridge is an external chain that was released around Vega. * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: billy rennekamp <[email protected]> * Added instructions on depositing to a proposal (#1142) * Added instructions on depositing to a proposal Also replaced the Hubble instructions with Mintscan. * Update docs/governance/submitting.md * Update docs/governance/submitting.md * Update docs/governance/submitting.md * Update docs/governance/submitting.md Co-authored-by: billy rennekamp <[email protected]> * Merge pull request #1090: docs: Set up locales for existing translations * set up locales for translations * remove es translations from gov section * update links in locale readmes * add initial instruction on locales in DOCS_README * add labels and selectText * remove frontmatter in es README * Module Readiness Github Issue & Docs (#1172) * add tempalte and dir * Update template.md * add issue template * Add module readiness template * Add readiness readme and adr template * Edit adr template * Update ADR template Co-authored-by: billy rennekamp <[email protected]> * Update module-readiness.md * Docs: Restructure governance section (#1126) * rm gov gaiad page use getting started * restructure proposal type readmes and formatting * rename files to use - vs _ * update links and order pages * move all best practices into a single doc * Apply suggestions from code review Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * Bump vuepress-theme-cosmos from 1.0.182 to 1.0.183 in /docs (#1161) Bumps [vuepress-theme-cosmos](https://github.com/cosmos/vuepress-theme-cosmos) from 1.0.182 to 1.0.183. - [Release notes](https://github.com/cosmos/vuepress-theme-cosmos/releases) - [Commits](https://github.com/cosmos/vuepress-theme-cosmos/commits) --- updated-dependencies: - dependency-name: vuepress-theme-cosmos dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump JamesIves/github-pages-deploy-action from 4.1.8 to 4.2.2 (#1152) Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.1.8 to 4.2.2. - [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases) - [Commits](JamesIves/github-pages-deploy-action@4.1.8...v4.2.2) --- updated-dependencies: - dependency-name: JamesIves/github-pages-deploy-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * 1159 update state sync configs (#1160) * Update default snapshot configs * Refactor * Fix override to include default template Co-authored-by: billy rennekamp <[email protected]> * Add tabbing for markdown docs (#1217) * Add tabbing for markdown docs * Add package-lock * Theta update (#1211) * Update cosmos-hub-roadmap-2.0.md * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update Ledger doc with Keplr (#1205) * Update Ledger doc with Keplr Replaced Lunie instructions with Keplr * Removed leftover Lunie content * Update ledger.md Co-authored-by: billy rennekamp <[email protected]> * Update joining mainnet documentation (#1146) * Update joining mainnet documentation * Minor fixes for updated joining mainnet documentation * Update menu order * Make requested changes * Additional updates * Make requested changes for hardware config * Update config header * Fix tabbing header * Update joining mainnet documentation * Minor fixes for updated joining mainnet documentation * Update menu order * Make requested changes * Additional updates * Make requested changes for hardware config * Update config header * Fix tabbing header Co-authored-by: billy rennekamp <[email protected]> * Updates to Validator Docs (#1207) * Updated validator documentation. * Small updates * fixes from yaru feedback * Update docs/validators/validator-setup.md Co-authored-by: lg <[email protected]> * Update docs/validators/validator-setup.md Co-authored-by: lg <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * bump cosmsos-sdk v0.44.5 to v0.45.0, ibc-go v2 to v3-alpha2, fix in-place migration ordering * fix: panic when forget to add modules to SetOrder{BeginBlocker, EndBlocker, InitGenesis, ExportGenesis} functions * fix: store.StoreUpgrades{} * bump: replace dependencies to depend on sdk 0.45.0 * bump: liquidity module to v1.4.5 * bump: cosmos-sdk to v0.45.1 * fix: server.Generate* is deprecated, it is moved to testutil * fix: upgrade module should run first in SetOrderBeginBlockers * fix: client.ReadFromClientConfig -> client.ReadPersistentCommandFlags * bump: gaia module: v6 -> v7 * bump: ibc-go to v3.0.0-beta1 * fix: router module * style: adjust package import order * fix: SetOrderEndBlockers * fix: adjust capability module's beginblocker position * Update app.go style: remove extra print * fix: SetOrderInitGenesis * fix: lint * add migration logs * feat: add ica * fix: lint * bump: ibc-to to v3.0.0-rc0 * fix: ica init * fix: fromVersionMap * set ica params * bump: liquidity to v1.5.0 * update upgrade name * bump: packet-forward-module * fix: ica in upgrade * bump: packet-forward module to v1.0.2 * bump: ibc-go to v3.0.0-rc1 * chore: add log * fix: upgrade add store * block all module acct to receive tokens by MsgSend * bump: ibc-go to v3.0.0-rc2 * remove unused function GetMaccPerms * bump: liquidity module to v1.5.0 * chore: rename ibcmodule to transferIBCModule * fix: delete ica controller module and allow more msg types in ica * fix: add icacontroller store to avoid panic * bump: ibc-go to v3.0.0 and remove ica controller * bump: packet-forward module to v2.1.1 Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> * fix: fromVM * chore: correct docs, comments, go.sum Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> * chore: add CHANGELOG Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]>
* update changelog * make ica host allow msg types const * merge Release/v7.0.0 rc0 to release/v7.0.x (#1340) (#1351) * merge theta-main to release/v7.0.0-rc0 (#1339) * Theta prepare merge to theta main (#1337) * chore: update changelog (#1060) * add changelog for backport release v5.0.8 (#1061) * Change golangci-lint version to the latest version of golangci-lint (v1.42.1) (#1043) Co-authored-by: yaruwangway <[email protected]> * Update DOCS_README with switch to GH Actions (#1049) * Update DOCS_README with switch to GH Actions * update to repo makefile Co-authored-by: billy rennekamp <[email protected]> * Merge pull request #1051: reenable displying params in gov docs * Update cosmos-hub-roadmap-2.0.md (#1065) * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md (#1066) * Update cosmos-hub-roadmap-2.0.md (#1068) * Update CODEOWNERS (#1031) * Update CODEOWNERS * Update .github/CODEOWNERS Co-authored-by: Marko <[email protected]> * Update CODEOWNERS Co-authored-by: Marko <[email protected]> * Update README.md (#1063) * hide top banner (#1062) Co-authored-by: billy rennekamp <[email protected]> * Update Readme.md (#1046) * Update Readme.md Added a 'How to Use' section and a line on learning more about the Cosmos Hub. * Update README.md Co-authored-by: billy rennekamp <[email protected]> * Update README.md (#1069) * Create statesync.bash (#1027) * Create statesync.bash Co-authored-by: billy rennekamp <[email protected]> * Update interchain-security.md (#1071) * Update cosmos-hub-roadmap-2.0.md (#1076) * Vega 6.0.0 (#1077) * fix: delete new modules from fromVM map to not skip init genesis * fix: migrate auth module after staking * gaia: add NewSetUpContextDecorator to antedecorator (#1078) * Update upgrade-node.md (#1080) add more info * Add IOBScan to Cosmos Hub Explorers list (#1075) * Update Readme (#1083) * Update Readme * Update README.md * Update README.md * Update README.md Co-authored-by: billy rennekamp <[email protected]> * Update Dockerfile.test (#1026) Co-authored-by: billy rennekamp <[email protected]> * Update cosmos-hub-roadmap-2.0.md (#1085) * Update cosmos-hub-roadmap-2.0.md (#1088) * Merge pull request #1050: Create Governance proposal template * add first draft proposal templates * add new PR template for governance * edit for small fixes (#1086) * Update validator-faq.md (#1087) more editorial love for this essential content * docs: fix links in governance section (#1089) * rm dev discord links * update and relativize links * align with link style elsewhere in docs * docs: vega upgrade instruction (#1096) * docs: vega upgrade instruction * chore: change upgrade time * Update cosmoshub-4-vega-upgrade.md chore: formatting * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: yaruwangway <[email protected]> * Update docs/migration/cosmoshub-4-vega-upgrade.md * Update docs/migration/cosmoshub-4-vega-upgrade.md * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: billy rennekamp <[email protected]> * doc: change doc for vega upgrade instruction (#1098) * doc: change doc for vega upgrade instruction * Update cosmoshub-4-vega-upgrade.md typo fix * docs minor typo fix (#1104) Cross Chain Validator (CCV) relay validator set composition * add dependabot (#1103) Co-authored-by: Marko Baricevic <[email protected]> * Update interchain-security.md (#1105) Co-authored-by: billy rennekamp <[email protected]> * Update gaiad installation docs, update docs install/run instructions, and clean up left menu ordering (#1095) Make requested changes Make ordering consistent * Fix broken installation links (#1120) * Bump technote-space/get-diff-action from 4 to 5.0.2 (#1108) Bumps [technote-space/get-diff-action](https://github.com/technote-space/get-diff-action) from 4 to 5.0.2. - [Release notes](https://github.com/technote-space/get-diff-action/releases) - [Changelog](https://github.com/technote-space/get-diff-action/blob/main/.releasegarc) - [Commits](technote-space/get-diff-action@v4...v5.0.2) --- updated-dependencies: - dependency-name: technote-space/get-diff-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump github.com/spf13/cobra from 1.2.1 to 1.3.0 (#1119) Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.2.1 to 1.3.0. - [Release notes](https://github.com/spf13/cobra/releases) - [Changelog](https://github.com/spf13/cobra/blob/master/CHANGELOG.md) - [Commits](spf13/cobra@v1.2.1...v1.3.0) --- updated-dependencies: - dependency-name: github.com/spf13/cobra dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump codecov/codecov-action from 1 to 2.1.0 (#1114) Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 1 to 2.1.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md) - [Commits](codecov/codecov-action@v1...v2.1.0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump JamesIves/github-pages-deploy-action from 3.7.1 to 4.1.8 (#1128) Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 3.7.1 to 4.1.8. - [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases) - [Commits](JamesIves/github-pages-deploy-action@3.7.1...4.1.8) --- updated-dependencies: - dependency-name: JamesIves/github-pages-deploy-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump github.com/cosmos/ibc-go/v2 from 2.0.0 to 2.0.2 (#1124) Bumps [github.com/cosmos/ibc-go/v2](https://github.com/cosmos/ibc-go) from 2.0.0 to 2.0.2. - [Release notes](https://github.com/cosmos/ibc-go/releases) - [Changelog](https://github.com/cosmos/ibc-go/blob/v2.0.2/CHANGELOG.md) - [Commits](cosmos/ibc-go@v2.0.0...v2.0.2) --- updated-dependencies: - dependency-name: github.com/cosmos/ibc-go/v2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump github.com/tendermint/tm-db from 0.6.4 to 0.6.6 (#1116) Bumps [github.com/tendermint/tm-db](https://github.com/tendermint/tm-db) from 0.6.4 to 0.6.6. - [Release notes](https://github.com/tendermint/tm-db/releases) - [Changelog](https://github.com/tendermint/tm-db/blob/master/CHANGELOG.md) - [Commits](tendermint/tm-db@v0.6.4...v0.6.6) --- updated-dependencies: - dependency-name: github.com/tendermint/tm-db dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump gaurav-nelson/github-action-markdown-link-check (#1112) Bumps [gaurav-nelson/github-action-markdown-link-check](https://github.com/gaurav-nelson/github-action-markdown-link-check) from 0.6.0 to 1.0.13. - [Release notes](https://github.com/gaurav-nelson/github-action-markdown-link-check/releases) - [Commits](gaurav-nelson/github-action-markdown-link-check@0.6.0...1.0.13) --- updated-dependencies: - dependency-name: gaurav-nelson/github-action-markdown-link-check dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/setup-go from 2.1.3 to 2.1.5 (#1130) Bumps [actions/setup-go](https://github.com/actions/setup-go) from 2.1.3 to 2.1.5. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v2.1.3...v2.1.5) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update broken links in docs (#1131) * update links in docs * cleanup * Bump actions/stale from 3 to 4.1.0 (#1113) Bumps [actions/stale](https://github.com/actions/stale) from 3 to 4.1.0. - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](actions/stale@v3...v4.1.0) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/checkout from 2.3.1 to 2.4.0 (#1110) Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.1 to 2.4.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2.3.1...v2.4.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/cache from 1 to 2.1.7 (#1107) Bumps [actions/cache](https://github.com/actions/cache) from 1 to 2.1.7. - [Release notes](https://github.com/actions/cache/releases) - [Commits](actions/cache@v1...v2.1.7) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Fix links to hub-tutorials (#1132) * Fix links to hub-tutorials Some of the links are broken due to the change of the gaia-tutorials folder. This should fix them. * Update installation.md * Update stale.yml to exclude issues (#1138) Taken from https://github.com/cosmos/cosmos-sdk/blob/master/.github/workflows/stale.yml * Update the upgrade time (#1102) * Update cosmoshub-4-vega-upgrade.md update the upgrade time * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: Noam <[email protected]> * docs: add system requirement Co-authored-by: Noam <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * Update Roadmap to mention Vega is completed (#1140) * Update Roadmap to mention Vega is completed And some little things to make sure the page is parsed well for the new cosmos hub roadmap page. * Updates to gravity bridge mentions Updated to signal Gravity Bridge is an external chain that was released around Vega. * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: billy rennekamp <[email protected]> * Added instructions on depositing to a proposal (#1142) * Added instructions on depositing to a proposal Also replaced the Hubble instructions with Mintscan. * Update docs/governance/submitting.md * Update docs/governance/submitting.md * Update docs/governance/submitting.md * Update docs/governance/submitting.md Co-authored-by: billy rennekamp <[email protected]> * Merge pull request #1090: docs: Set up locales for existing translations * set up locales for translations * remove es translations from gov section * update links in locale readmes * add initial instruction on locales in DOCS_README * add labels and selectText * remove frontmatter in es README * Module Readiness Github Issue & Docs (#1172) * add tempalte and dir * Update template.md * add issue template * Add module readiness template * Add readiness readme and adr template * Edit adr template * Update ADR template Co-authored-by: billy rennekamp <[email protected]> * Update module-readiness.md * Docs: Restructure governance section (#1126) * rm gov gaiad page use getting started * restructure proposal type readmes and formatting * rename files to use - vs _ * update links and order pages * move all best practices into a single doc * Apply suggestions from code review Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * Bump vuepress-theme-cosmos from 1.0.182 to 1.0.183 in /docs (#1161) Bumps [vuepress-theme-cosmos](https://github.com/cosmos/vuepress-theme-cosmos) from 1.0.182 to 1.0.183. - [Release notes](https://github.com/cosmos/vuepress-theme-cosmos/releases) - [Commits](https://github.com/cosmos/vuepress-theme-cosmos/commits) --- updated-dependencies: - dependency-name: vuepress-theme-cosmos dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump JamesIves/github-pages-deploy-action from 4.1.8 to 4.2.2 (#1152) Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.1.8 to 4.2.2. - [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases) - [Commits](JamesIves/github-pages-deploy-action@4.1.8...v4.2.2) --- updated-dependencies: - dependency-name: JamesIves/github-pages-deploy-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * 1159 update state sync configs (#1160) * Update default snapshot configs * Refactor * Fix override to include default template Co-authored-by: billy rennekamp <[email protected]> * Add tabbing for markdown docs (#1217) * Add tabbing for markdown docs * Add package-lock * Theta update (#1211) * Update cosmos-hub-roadmap-2.0.md * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update Ledger doc with Keplr (#1205) * Update Ledger doc with Keplr Replaced Lunie instructions with Keplr * Removed leftover Lunie content * Update ledger.md Co-authored-by: billy rennekamp <[email protected]> * Update joining mainnet documentation (#1146) * Update joining mainnet documentation * Minor fixes for updated joining mainnet documentation * Update menu order * Make requested changes * Additional updates * Make requested changes for hardware config * Update config header * Fix tabbing header * Update joining mainnet documentation * Minor fixes for updated joining mainnet documentation * Update menu order * Make requested changes * Additional updates * Make requested changes for hardware config * Update config header * Fix tabbing header Co-authored-by: billy rennekamp <[email protected]> * Updates to Validator Docs (#1207) * Updated validator documentation. * Small updates * fixes from yaru feedback * Update docs/validators/validator-setup.md Co-authored-by: lg <[email protected]> * Update docs/validators/validator-setup.md Co-authored-by: lg <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * bump cosmsos-sdk v0.44.5 to v0.45.0, ibc-go v2 to v3-alpha2, fix in-place migration ordering * fix: panic when forget to add modules to SetOrder{BeginBlocker, EndBlocker, InitGenesis, ExportGenesis} functions * fix: store.StoreUpgrades{} * bump: replace dependencies to depend on sdk 0.45.0 * bump: liquidity module to v1.4.5 * bump: cosmos-sdk to v0.45.1 * fix: server.Generate* is deprecated, it is moved to testutil * fix: upgrade module should run first in SetOrderBeginBlockers * fix: client.ReadFromClientConfig -> client.ReadPersistentCommandFlags * bump: gaia module: v6 -> v7 * bump: ibc-go to v3.0.0-beta1 * fix: router module * style: adjust package import order * fix: SetOrderEndBlockers * fix: adjust capability module's beginblocker position * Update app.go style: remove extra print * fix: SetOrderInitGenesis * fix: lint * add migration logs * feat: add ica * fix: lint * bump: ibc-to to v3.0.0-rc0 * fix: ica init * fix: fromVersionMap * set ica params * bump: liquidity to v1.5.0 * update upgrade name * bump: packet-forward-module * fix: ica in upgrade * bump: packet-forward module to v1.0.2 * bump: ibc-go to v3.0.0-rc1 * chore: add log * fix: upgrade add store * block all module acct to receive tokens by MsgSend * bump: ibc-go to v3.0.0-rc2 * remove unused function GetMaccPerms * bump: liquidity module to v1.5.0 * chore: rename ibcmodule to transferIBCModule * fix: delete ica controller module and allow more msg types in ica * fix: add icacontroller store to avoid panic * bump: ibc-go to v3.0.0 and remove ica controller * bump: packet-forward module to v2.1.1 Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> * fix: fromVM * chore: correct docs, comments, go.sum Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> * chore: add CHANGELOG Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> * resolve conflict from cherrry pick 04b0191 * resolve conflit from cherry pick 611e338 * resolve conflit from cherry pick 1722cf8 * resolve conflit from cherry pick d6f7b57 * fix e2e gaia package version * chore: fix lint Co-authored-by: Yaru Wang <[email protected]> Co-authored-by: yaruwangway <[email protected]> Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> Co-authored-by: Aleksandr Bezobchuk <[email protected]>
* Theta main (#1356) * update changelog * make ica host allow msg types const * merge Release/v7.0.0 rc0 to release/v7.0.x (#1340) (#1351) * merge theta-main to release/v7.0.0-rc0 (#1339) * Theta prepare merge to theta main (#1337) * chore: update changelog (#1060) * add changelog for backport release v5.0.8 (#1061) * Change golangci-lint version to the latest version of golangci-lint (v1.42.1) (#1043) Co-authored-by: yaruwangway <[email protected]> * Update DOCS_README with switch to GH Actions (#1049) * Update DOCS_README with switch to GH Actions * update to repo makefile Co-authored-by: billy rennekamp <[email protected]> * Merge pull request #1051: reenable displying params in gov docs * Update cosmos-hub-roadmap-2.0.md (#1065) * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md (#1066) * Update cosmos-hub-roadmap-2.0.md (#1068) * Update CODEOWNERS (#1031) * Update CODEOWNERS * Update .github/CODEOWNERS Co-authored-by: Marko <[email protected]> * Update CODEOWNERS Co-authored-by: Marko <[email protected]> * Update README.md (#1063) * hide top banner (#1062) Co-authored-by: billy rennekamp <[email protected]> * Update Readme.md (#1046) * Update Readme.md Added a 'How to Use' section and a line on learning more about the Cosmos Hub. * Update README.md Co-authored-by: billy rennekamp <[email protected]> * Update README.md (#1069) * Create statesync.bash (#1027) * Create statesync.bash Co-authored-by: billy rennekamp <[email protected]> * Update interchain-security.md (#1071) * Update cosmos-hub-roadmap-2.0.md (#1076) * Vega 6.0.0 (#1077) * fix: delete new modules from fromVM map to not skip init genesis * fix: migrate auth module after staking * gaia: add NewSetUpContextDecorator to antedecorator (#1078) * Update upgrade-node.md (#1080) add more info * Add IOBScan to Cosmos Hub Explorers list (#1075) * Update Readme (#1083) * Update Readme * Update README.md * Update README.md * Update README.md Co-authored-by: billy rennekamp <[email protected]> * Update Dockerfile.test (#1026) Co-authored-by: billy rennekamp <[email protected]> * Update cosmos-hub-roadmap-2.0.md (#1085) * Update cosmos-hub-roadmap-2.0.md (#1088) * Merge pull request #1050: Create Governance proposal template * add first draft proposal templates * add new PR template for governance * edit for small fixes (#1086) * Update validator-faq.md (#1087) more editorial love for this essential content * docs: fix links in governance section (#1089) * rm dev discord links * update and relativize links * align with link style elsewhere in docs * docs: vega upgrade instruction (#1096) * docs: vega upgrade instruction * chore: change upgrade time * Update cosmoshub-4-vega-upgrade.md chore: formatting * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: yaruwangway <[email protected]> * Update docs/migration/cosmoshub-4-vega-upgrade.md * Update docs/migration/cosmoshub-4-vega-upgrade.md * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: billy rennekamp <[email protected]> * doc: change doc for vega upgrade instruction (#1098) * doc: change doc for vega upgrade instruction * Update cosmoshub-4-vega-upgrade.md typo fix * docs minor typo fix (#1104) Cross Chain Validator (CCV) relay validator set composition * add dependabot (#1103) Co-authored-by: Marko Baricevic <[email protected]> * Update interchain-security.md (#1105) Co-authored-by: billy rennekamp <[email protected]> * Update gaiad installation docs, update docs install/run instructions, and clean up left menu ordering (#1095) Make requested changes Make ordering consistent * Fix broken installation links (#1120) * Bump technote-space/get-diff-action from 4 to 5.0.2 (#1108) Bumps [technote-space/get-diff-action](https://github.com/technote-space/get-diff-action) from 4 to 5.0.2. - [Release notes](https://github.com/technote-space/get-diff-action/releases) - [Changelog](https://github.com/technote-space/get-diff-action/blob/main/.releasegarc) - [Commits](technote-space/get-diff-action@v4...v5.0.2) --- updated-dependencies: - dependency-name: technote-space/get-diff-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump github.com/spf13/cobra from 1.2.1 to 1.3.0 (#1119) Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.2.1 to 1.3.0. - [Release notes](https://github.com/spf13/cobra/releases) - [Changelog](https://github.com/spf13/cobra/blob/master/CHANGELOG.md) - [Commits](spf13/cobra@v1.2.1...v1.3.0) --- updated-dependencies: - dependency-name: github.com/spf13/cobra dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump codecov/codecov-action from 1 to 2.1.0 (#1114) Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 1 to 2.1.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md) - [Commits](codecov/codecov-action@v1...v2.1.0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump JamesIves/github-pages-deploy-action from 3.7.1 to 4.1.8 (#1128) Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 3.7.1 to 4.1.8. - [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases) - [Commits](JamesIves/github-pages-deploy-action@3.7.1...4.1.8) --- updated-dependencies: - dependency-name: JamesIves/github-pages-deploy-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump github.com/cosmos/ibc-go/v2 from 2.0.0 to 2.0.2 (#1124) Bumps [github.com/cosmos/ibc-go/v2](https://github.com/cosmos/ibc-go) from 2.0.0 to 2.0.2. - [Release notes](https://github.com/cosmos/ibc-go/releases) - [Changelog](https://github.com/cosmos/ibc-go/blob/v2.0.2/CHANGELOG.md) - [Commits](cosmos/ibc-go@v2.0.0...v2.0.2) --- updated-dependencies: - dependency-name: github.com/cosmos/ibc-go/v2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump github.com/tendermint/tm-db from 0.6.4 to 0.6.6 (#1116) Bumps [github.com/tendermint/tm-db](https://github.com/tendermint/tm-db) from 0.6.4 to 0.6.6. - [Release notes](https://github.com/tendermint/tm-db/releases) - [Changelog](https://github.com/tendermint/tm-db/blob/master/CHANGELOG.md) - [Commits](tendermint/tm-db@v0.6.4...v0.6.6) --- updated-dependencies: - dependency-name: github.com/tendermint/tm-db dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump gaurav-nelson/github-action-markdown-link-check (#1112) Bumps [gaurav-nelson/github-action-markdown-link-check](https://github.com/gaurav-nelson/github-action-markdown-link-check) from 0.6.0 to 1.0.13. - [Release notes](https://github.com/gaurav-nelson/github-action-markdown-link-check/releases) - [Commits](gaurav-nelson/github-action-markdown-link-check@0.6.0...1.0.13) --- updated-dependencies: - dependency-name: gaurav-nelson/github-action-markdown-link-check dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/setup-go from 2.1.3 to 2.1.5 (#1130) Bumps [actions/setup-go](https://github.com/actions/setup-go) from 2.1.3 to 2.1.5. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v2.1.3...v2.1.5) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update broken links in docs (#1131) * update links in docs * cleanup * Bump actions/stale from 3 to 4.1.0 (#1113) Bumps [actions/stale](https://github.com/actions/stale) from 3 to 4.1.0. - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](actions/stale@v3...v4.1.0) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/checkout from 2.3.1 to 2.4.0 (#1110) Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.1 to 2.4.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2.3.1...v2.4.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/cache from 1 to 2.1.7 (#1107) Bumps [actions/cache](https://github.com/actions/cache) from 1 to 2.1.7. - [Release notes](https://github.com/actions/cache/releases) - [Commits](actions/cache@v1...v2.1.7) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Fix links to hub-tutorials (#1132) * Fix links to hub-tutorials Some of the links are broken due to the change of the gaia-tutorials folder. This should fix them. * Update installation.md * Update stale.yml to exclude issues (#1138) Taken from https://github.com/cosmos/cosmos-sdk/blob/master/.github/workflows/stale.yml * Update the upgrade time (#1102) * Update cosmoshub-4-vega-upgrade.md update the upgrade time * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: Noam <[email protected]> * docs: add system requirement Co-authored-by: Noam <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * Update Roadmap to mention Vega is completed (#1140) * Update Roadmap to mention Vega is completed And some little things to make sure the page is parsed well for the new cosmos hub roadmap page. * Updates to gravity bridge mentions Updated to signal Gravity Bridge is an external chain that was released around Vega. * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: billy rennekamp <[email protected]> * Added instructions on depositing to a proposal (#1142) * Added instructions on depositing to a proposal Also replaced the Hubble instructions with Mintscan. * Update docs/governance/submitting.md * Update docs/governance/submitting.md * Update docs/governance/submitting.md * Update docs/governance/submitting.md Co-authored-by: billy rennekamp <[email protected]> * Merge pull request #1090: docs: Set up locales for existing translations * set up locales for translations * remove es translations from gov section * update links in locale readmes * add initial instruction on locales in DOCS_README * add labels and selectText * remove frontmatter in es README * Module Readiness Github Issue & Docs (#1172) * add tempalte and dir * Update template.md * add issue template * Add module readiness template * Add readiness readme and adr template * Edit adr template * Update ADR template Co-authored-by: billy rennekamp <[email protected]> * Update module-readiness.md * Docs: Restructure governance section (#1126) * rm gov gaiad page use getting started * restructure proposal type readmes and formatting * rename files to use - vs _ * update links and order pages * move all best practices into a single doc * Apply suggestions from code review Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * Bump vuepress-theme-cosmos from 1.0.182 to 1.0.183 in /docs (#1161) Bumps [vuepress-theme-cosmos](https://github.com/cosmos/vuepress-theme-cosmos) from 1.0.182 to 1.0.183. - [Release notes](https://github.com/cosmos/vuepress-theme-cosmos/releases) - [Commits](https://github.com/cosmos/vuepress-theme-cosmos/commits) --- updated-dependencies: - dependency-name: vuepress-theme-cosmos dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump JamesIves/github-pages-deploy-action from 4.1.8 to 4.2.2 (#1152) Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.1.8 to 4.2.2. - [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases) - [Commits](JamesIves/github-pages-deploy-action@4.1.8...v4.2.2) --- updated-dependencies: - dependency-name: JamesIves/github-pages-deploy-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * 1159 update state sync configs (#1160) * Update default snapshot configs * Refactor * Fix override to include default template Co-authored-by: billy rennekamp <[email protected]> * Add tabbing for markdown docs (#1217) * Add tabbing for markdown docs * Add package-lock * Theta update (#1211) * Update cosmos-hub-roadmap-2.0.md * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update Ledger doc with Keplr (#1205) * Update Ledger doc with Keplr Replaced Lunie instructions with Keplr * Removed leftover Lunie content * Update ledger.md Co-authored-by: billy rennekamp <[email protected]> * Update joining mainnet documentation (#1146) * Update joining mainnet documentation * Minor fixes for updated joining mainnet documentation * Update menu order * Make requested changes * Additional updates * Make requested changes for hardware config * Update config header * Fix tabbing header * Update joining mainnet documentation * Minor fixes for updated joining mainnet documentation * Update menu order * Make requested changes * Additional updates * Make requested changes for hardware config * Update config header * Fix tabbing header Co-authored-by: billy rennekamp <[email protected]> * Updates to Validator Docs (#1207) * Updated validator documentation. * Small updates * fixes from yaru feedback * Update docs/validators/validator-setup.md Co-authored-by: lg <[email protected]> * Update docs/validators/validator-setup.md Co-authored-by: lg <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * bump cosmsos-sdk v0.44.5 to v0.45.0, ibc-go v2 to v3-alpha2, fix in-place migration ordering * fix: panic when forget to add modules to SetOrder{BeginBlocker, EndBlocker, InitGenesis, ExportGenesis} functions * fix: store.StoreUpgrades{} * bump: replace dependencies to depend on sdk 0.45.0 * bump: liquidity module to v1.4.5 * bump: cosmos-sdk to v0.45.1 * fix: server.Generate* is deprecated, it is moved to testutil * fix: upgrade module should run first in SetOrderBeginBlockers * fix: client.ReadFromClientConfig -> client.ReadPersistentCommandFlags * bump: gaia module: v6 -> v7 * bump: ibc-go to v3.0.0-beta1 * fix: router module * style: adjust package import order * fix: SetOrderEndBlockers * fix: adjust capability module's beginblocker position * Update app.go style: remove extra print * fix: SetOrderInitGenesis * fix: lint * add migration logs * feat: add ica * fix: lint * bump: ibc-to to v3.0.0-rc0 * fix: ica init * fix: fromVersionMap * set ica params * bump: liquidity to v1.5.0 * update upgrade name * bump: packet-forward-module * fix: ica in upgrade * bump: packet-forward module to v1.0.2 * bump: ibc-go to v3.0.0-rc1 * chore: add log * fix: upgrade add store * block all module acct to receive tokens by MsgSend * bump: ibc-go to v3.0.0-rc2 * remove unused function GetMaccPerms * bump: liquidity module to v1.5.0 * chore: rename ibcmodule to transferIBCModule * fix: delete ica controller module and allow more msg types in ica * fix: add icacontroller store to avoid panic * bump: ibc-go to v3.0.0 and remove ica controller * bump: packet-forward module to v2.1.1 Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> * fix: fromVM * chore: correct docs, comments, go.sum Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> * chore: add CHANGELOG Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> * resolve conflict from cherrry pick 04b0191 * resolve conflit from cherry pick 611e338 * resolve conflit from cherry pick 1722cf8 * resolve conflit from cherry pick d6f7b57 * fix e2e gaia package version * chore: fix lint Co-authored-by: Yaru Wang <[email protected]> Co-authored-by: yaruwangway <[email protected]> Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> Co-authored-by: Aleksandr Bezobchuk <[email protected]> * update CHANGELOG Co-authored-by: Gaurav Raghuvanshy <[email protected]> Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> Co-authored-by: Aleksandr Bezobchuk <[email protected]>
* Theta main (#1356) * update changelog * make ica host allow msg types const * merge Release/v7.0.0 rc0 to release/v7.0.x (#1340) (#1351) * merge theta-main to release/v7.0.0-rc0 (#1339) * Theta prepare merge to theta main (#1337) * chore: update changelog (#1060) * add changelog for backport release v5.0.8 (#1061) * Change golangci-lint version to the latest version of golangci-lint (v1.42.1) (#1043) Co-authored-by: yaruwangway <[email protected]> * Update DOCS_README with switch to GH Actions (#1049) * Update DOCS_README with switch to GH Actions * update to repo makefile Co-authored-by: billy rennekamp <[email protected]> * Merge pull request #1051: reenable displying params in gov docs * Update cosmos-hub-roadmap-2.0.md (#1065) * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md * Update cosmos-hub-roadmap-2.0.md (#1066) * Update cosmos-hub-roadmap-2.0.md (#1068) * Update CODEOWNERS (#1031) * Update CODEOWNERS * Update .github/CODEOWNERS Co-authored-by: Marko <[email protected]> * Update CODEOWNERS Co-authored-by: Marko <[email protected]> * Update README.md (#1063) * hide top banner (#1062) Co-authored-by: billy rennekamp <[email protected]> * Update Readme.md (#1046) * Update Readme.md Added a 'How to Use' section and a line on learning more about the Cosmos Hub. * Update README.md Co-authored-by: billy rennekamp <[email protected]> * Update README.md (#1069) * Create statesync.bash (#1027) * Create statesync.bash Co-authored-by: billy rennekamp <[email protected]> * Update interchain-security.md (#1071) * Update cosmos-hub-roadmap-2.0.md (#1076) * Vega 6.0.0 (#1077) * fix: delete new modules from fromVM map to not skip init genesis * fix: migrate auth module after staking * gaia: add NewSetUpContextDecorator to antedecorator (#1078) * Update upgrade-node.md (#1080) add more info * Add IOBScan to Cosmos Hub Explorers list (#1075) * Update Readme (#1083) * Update Readme * Update README.md * Update README.md * Update README.md Co-authored-by: billy rennekamp <[email protected]> * Update Dockerfile.test (#1026) Co-authored-by: billy rennekamp <[email protected]> * Update cosmos-hub-roadmap-2.0.md (#1085) * Update cosmos-hub-roadmap-2.0.md (#1088) * Merge pull request #1050: Create Governance proposal template * add first draft proposal templates * add new PR template for governance * edit for small fixes (#1086) * Update validator-faq.md (#1087) more editorial love for this essential content * docs: fix links in governance section (#1089) * rm dev discord links * update and relativize links * align with link style elsewhere in docs * docs: vega upgrade instruction (#1096) * docs: vega upgrade instruction * chore: change upgrade time * Update cosmoshub-4-vega-upgrade.md chore: formatting * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: yaruwangway <[email protected]> * Update docs/migration/cosmoshub-4-vega-upgrade.md * Update docs/migration/cosmoshub-4-vega-upgrade.md * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: billy rennekamp <[email protected]> * doc: change doc for vega upgrade instruction (#1098) * doc: change doc for vega upgrade instruction * Update cosmoshub-4-vega-upgrade.md typo fix * docs minor typo fix (#1104) Cross Chain Validator (CCV) relay validator set composition * add dependabot (#1103) Co-authored-by: Marko Baricevic <[email protected]> * Update interchain-security.md (#1105) Co-authored-by: billy rennekamp <[email protected]> * Update gaiad installation docs, update docs install/run instructions, and clean up left menu ordering (#1095) Make requested changes Make ordering consistent * Fix broken installation links (#1120) * Bump technote-space/get-diff-action from 4 to 5.0.2 (#1108) Bumps [technote-space/get-diff-action](https://github.com/technote-space/get-diff-action) from 4 to 5.0.2. - [Release notes](https://github.com/technote-space/get-diff-action/releases) - [Changelog](https://github.com/technote-space/get-diff-action/blob/main/.releasegarc) - [Commits](technote-space/get-diff-action@v4...v5.0.2) --- updated-dependencies: - dependency-name: technote-space/get-diff-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump github.com/spf13/cobra from 1.2.1 to 1.3.0 (#1119) Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.2.1 to 1.3.0. - [Release notes](https://github.com/spf13/cobra/releases) - [Changelog](https://github.com/spf13/cobra/blob/master/CHANGELOG.md) - [Commits](spf13/cobra@v1.2.1...v1.3.0) --- updated-dependencies: - dependency-name: github.com/spf13/cobra dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump codecov/codecov-action from 1 to 2.1.0 (#1114) Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 1 to 2.1.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md) - [Commits](codecov/codecov-action@v1...v2.1.0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump JamesIves/github-pages-deploy-action from 3.7.1 to 4.1.8 (#1128) Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 3.7.1 to 4.1.8. - [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases) - [Commits](JamesIves/github-pages-deploy-action@3.7.1...4.1.8) --- updated-dependencies: - dependency-name: JamesIves/github-pages-deploy-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump github.com/cosmos/ibc-go/v2 from 2.0.0 to 2.0.2 (#1124) Bumps [github.com/cosmos/ibc-go/v2](https://github.com/cosmos/ibc-go) from 2.0.0 to 2.0.2. - [Release notes](https://github.com/cosmos/ibc-go/releases) - [Changelog](https://github.com/cosmos/ibc-go/blob/v2.0.2/CHANGELOG.md) - [Commits](cosmos/ibc-go@v2.0.0...v2.0.2) --- updated-dependencies: - dependency-name: github.com/cosmos/ibc-go/v2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump github.com/tendermint/tm-db from 0.6.4 to 0.6.6 (#1116) Bumps [github.com/tendermint/tm-db](https://github.com/tendermint/tm-db) from 0.6.4 to 0.6.6. - [Release notes](https://github.com/tendermint/tm-db/releases) - [Changelog](https://github.com/tendermint/tm-db/blob/master/CHANGELOG.md) - [Commits](tendermint/tm-db@v0.6.4...v0.6.6) --- updated-dependencies: - dependency-name: github.com/tendermint/tm-db dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump gaurav-nelson/github-action-markdown-link-check (#1112) Bumps [gaurav-nelson/github-action-markdown-link-check](https://github.com/gaurav-nelson/github-action-markdown-link-check) from 0.6.0 to 1.0.13. - [Release notes](https://github.com/gaurav-nelson/github-action-markdown-link-check/releases) - [Commits](gaurav-nelson/github-action-markdown-link-check@0.6.0...1.0.13) --- updated-dependencies: - dependency-name: gaurav-nelson/github-action-markdown-link-check dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/setup-go from 2.1.3 to 2.1.5 (#1130) Bumps [actions/setup-go](https://github.com/actions/setup-go) from 2.1.3 to 2.1.5. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v2.1.3...v2.1.5) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update broken links in docs (#1131) * update links in docs * cleanup * Bump actions/stale from 3 to 4.1.0 (#1113) Bumps [actions/stale](https://github.com/actions/stale) from 3 to 4.1.0. - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](actions/stale@v3...v4.1.0) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/checkout from 2.3.1 to 2.4.0 (#1110) Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.1 to 2.4.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2.3.1...v2.4.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Marko <[email protected]> * Bump actions/cache from 1 to 2.1.7 (#1107) Bumps [actions/cache](https://github.com/actions/cache) from 1 to 2.1.7. - [Release notes](https://github.com/actions/cache/releases) - [Commits](actions/cache@v1...v2.1.7) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Fix links to hub-tutorials (#1132) * Fix links to hub-tutorials Some of the links are broken due to the change of the gaia-tutorials folder. This should fix them. * Update installation.md * Update stale.yml to exclude issues (#1138) Taken from https://github.com/cosmos/cosmos-sdk/blob/master/.github/workflows/stale.yml * Update the upgrade time (#1102) * Update cosmoshub-4-vega-upgrade.md update the upgrade time * Update docs/migration/cosmoshub-4-vega-upgrade.md Co-authored-by: Noam <[email protected]> * docs: add system requirement Co-authored-by: Noam <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * Update Roadmap to mention Vega is completed (#1140) * Update Roadmap to mention Vega is completed And some little things to make sure the page is parsed well for the new cosmos hub roadmap page. * Updates to gravity bridge mentions Updated to signal Gravity Bridge is an external chain that was released around Vega. * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: billy rennekamp <[email protected]> * Added instructions on depositing to a proposal (#1142) * Added instructions on depositing to a proposal Also replaced the Hubble instructions with Mintscan. * Update docs/governance/submitting.md * Update docs/governance/submitting.md * Update docs/governance/submitting.md * Update docs/governance/submitting.md Co-authored-by: billy rennekamp <[email protected]> * Merge pull request #1090: docs: Set up locales for existing translations * set up locales for translations * remove es translations from gov section * update links in locale readmes * add initial instruction on locales in DOCS_README * add labels and selectText * remove frontmatter in es README * Module Readiness Github Issue & Docs (#1172) * add tempalte and dir * Update template.md * add issue template * Add module readiness template * Add readiness readme and adr template * Edit adr template * Update ADR template Co-authored-by: billy rennekamp <[email protected]> * Update module-readiness.md * Docs: Restructure governance section (#1126) * rm gov gaiad page use getting started * restructure proposal type readmes and formatting * rename files to use - vs _ * update links and order pages * move all best practices into a single doc * Apply suggestions from code review Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * Bump vuepress-theme-cosmos from 1.0.182 to 1.0.183 in /docs (#1161) Bumps [vuepress-theme-cosmos](https://github.com/cosmos/vuepress-theme-cosmos) from 1.0.182 to 1.0.183. - [Release notes](https://github.com/cosmos/vuepress-theme-cosmos/releases) - [Commits](https://github.com/cosmos/vuepress-theme-cosmos/commits) --- updated-dependencies: - dependency-name: vuepress-theme-cosmos dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump JamesIves/github-pages-deploy-action from 4.1.8 to 4.2.2 (#1152) Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.1.8 to 4.2.2. - [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases) - [Commits](JamesIves/github-pages-deploy-action@4.1.8...v4.2.2) --- updated-dependencies: - dependency-name: JamesIves/github-pages-deploy-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * 1159 update state sync configs (#1160) * Update default snapshot configs * Refactor * Fix override to include default template Co-authored-by: billy rennekamp <[email protected]> * Add tabbing for markdown docs (#1217) * Add tabbing for markdown docs * Add package-lock * Theta update (#1211) * Update cosmos-hub-roadmap-2.0.md * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update docs/roadmap/cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update cosmos-hub-roadmap-2.0.md Co-authored-by: lg <[email protected]> * Update Ledger doc with Keplr (#1205) * Update Ledger doc with Keplr Replaced Lunie instructions with Keplr * Removed leftover Lunie content * Update ledger.md Co-authored-by: billy rennekamp <[email protected]> * Update joining mainnet documentation (#1146) * Update joining mainnet documentation * Minor fixes for updated joining mainnet documentation * Update menu order * Make requested changes * Additional updates * Make requested changes for hardware config * Update config header * Fix tabbing header * Update joining mainnet documentation * Minor fixes for updated joining mainnet documentation * Update menu order * Make requested changes * Additional updates * Make requested changes for hardware config * Update config header * Fix tabbing header Co-authored-by: billy rennekamp <[email protected]> * Updates to Validator Docs (#1207) * Updated validator documentation. * Small updates * fixes from yaru feedback * Update docs/validators/validator-setup.md Co-authored-by: lg <[email protected]> * Update docs/validators/validator-setup.md Co-authored-by: lg <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: billy rennekamp <[email protected]> * bump cosmsos-sdk v0.44.5 to v0.45.0, ibc-go v2 to v3-alpha2, fix in-place migration ordering * fix: panic when forget to add modules to SetOrder{BeginBlocker, EndBlocker, InitGenesis, ExportGenesis} functions * fix: store.StoreUpgrades{} * bump: replace dependencies to depend on sdk 0.45.0 * bump: liquidity module to v1.4.5 * bump: cosmos-sdk to v0.45.1 * fix: server.Generate* is deprecated, it is moved to testutil * fix: upgrade module should run first in SetOrderBeginBlockers * fix: client.ReadFromClientConfig -> client.ReadPersistentCommandFlags * bump: gaia module: v6 -> v7 * bump: ibc-go to v3.0.0-beta1 * fix: router module * style: adjust package import order * fix: SetOrderEndBlockers * fix: adjust capability module's beginblocker position * Update app.go style: remove extra print * fix: SetOrderInitGenesis * fix: lint * add migration logs * feat: add ica * fix: lint * bump: ibc-to to v3.0.0-rc0 * fix: ica init * fix: fromVersionMap * set ica params * bump: liquidity to v1.5.0 * update upgrade name * bump: packet-forward-module * fix: ica in upgrade * bump: packet-forward module to v1.0.2 * bump: ibc-go to v3.0.0-rc1 * chore: add log * fix: upgrade add store * block all module acct to receive tokens by MsgSend * bump: ibc-go to v3.0.0-rc2 * remove unused function GetMaccPerms * bump: liquidity module to v1.5.0 * chore: rename ibcmodule to transferIBCModule * fix: delete ica controller module and allow more msg types in ica * fix: add icacontroller store to avoid panic * bump: ibc-go to v3.0.0 and remove ica controller * bump: packet-forward module to v2.1.1 Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> * fix: fromVM * chore: correct docs, comments, go.sum Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> * chore: add CHANGELOG Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> * resolve conflict from cherrry pick 04b0191 * resolve conflit from cherry pick 611e338 * resolve conflit from cherry pick 1722cf8 * resolve conflit from cherry pick d6f7b57 * fix e2e gaia package version * chore: fix lint Co-authored-by: Yaru Wang <[email protected]> Co-authored-by: yaruwangway <[email protected]> Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> Co-authored-by: Aleksandr Bezobchuk <[email protected]> * update CHANGELOG Co-authored-by: Gaurav Raghuvanshy <[email protected]> Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> Co-authored-by: Aleksandr Bezobchuk <[email protected]> Co-authored-by: Gaurav Raghuvanshy <[email protected]> Co-authored-by: psh4nk <[email protected]> Co-authored-by: dcwalk <[email protected]> Co-authored-by: billy rennekamp <[email protected]> Co-authored-by: Marko <[email protected]> Co-authored-by: Daria K <[email protected]> Co-authored-by: tmckenzie51 <[email protected]> Co-authored-by: Jacob Gadikian <[email protected]> Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]> Co-authored-by: Jessica Dosseh <[email protected]> Co-authored-by: Jack Zampolin <[email protected]> Co-authored-by: Barrie Byron <[email protected]> Co-authored-by: Marko Baricevic <[email protected]> Co-authored-by: Gavin <[email protected]> Co-authored-by: lg <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: fkneeland-figure <[email protected]> Co-authored-by: Noam <[email protected]> Co-authored-by: Aleksandr Bezobchuk <[email protected]>
Closes: #XXX
Description
For contributor use:
docs/
) or specification (x/<module>/spec/
)godoc
comments.Unreleased
section inCHANGELOG.md
Files changed
in the Github PR explorerFor admin use:
WIP
,R4R
,docs
, etc)