cosmos-sdk/x
Robert Zaremba 13559f9132
feat: file watcher for cosmovisor (#8590)
Adding upgrade file watcher for cosmovisor.

Currently the comswisor upgrade mechanism relays on parsing log messages. This is not reliable:
+ depends on the log level output (x/upgrade uses INFO)
+ can be hacked by accidentally logging user user content
+ can be broken by using upgrade name which will break the regex pattern.

closes: #7703
closes: #8523
closes: #8651
closes: #8793
closes: #8964 

**Depends on**: 
- #9652

---

Before we can merge this PR, please make sure that all the following items have been
checked off. If any of the checklist items are not applicable, please leave them but
write a little note why.

- [ ] Targeted PR against correct branch (see [CONTRIBUTING.md](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#pr-targeting))
- [ ] Linked to Github issue with discussion and accepted design OR link to spec that describes this work.
- [ ] Code follows the [module structure standards](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules/structure.md).
- [ ] Wrote unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#testing)
- [ ] Updated relevant documentation (`docs/`) or specification (`x/<module>/spec/`)
- [ ] Added relevant `godoc` [comments](https://blog.golang.org/godoc-documenting-go-code).
- [ ] Added a relevant changelog entry to the `Unreleased` section in `CHANGELOG.md`
- [ ] Re-reviewed `Files changed` in the Github PR explorer
- [ ] Review `Codecov Report` in the comment section below once CI passes
2021-08-11 15:03:48 +00:00
..
auth feat: implement x/params get all subspaces/keys (#9884) 2021-08-10 08:44:58 -04:00
authz feat!: remove legacy handler (#9650) 2021-07-19 14:49:42 +00:00
bank fix!: remove denom from DenomMetadata key (#9890) 2021-08-11 09:56:51 +00:00
capability style(capability)!: update go doc comments and remove BeginBlocker (#9845) 2021-08-04 10:15:12 +00:00
crisis feat!: remove legacy handler (#9650) 2021-07-19 14:49:42 +00:00
distribution feat: Improve withdraw-all-rewards UX (#9781) 2021-07-28 11:58:32 +00:00
evidence feat!: remove legacy handler (#9650) 2021-07-19 14:49:42 +00:00
feegrant fix: feegrant grant cli bug (#9720) 2021-07-20 10:21:42 +00:00
genutil fix!: update gentx val pub key input parsing (#9827) 2021-08-02 11:06:24 -04:00
gov refactor: remove query by events for x/gov deposits (#9519) 2021-07-30 17:37:38 +00:00
group feat: implement x/params get all subspaces/keys (#9884) 2021-08-10 08:44:58 -04:00
mint docs: fix module spec ordering (#9870) 2021-08-09 08:09:17 +00:00
params feat: implement x/params get all subspaces/keys (#9884) 2021-08-10 08:44:58 -04:00
simulation perf: Speedup to params simulation (#9481) 2021-06-17 07:42:07 +00:00
slashing docs: fix module spec ordering (#9870) 2021-08-09 08:09:17 +00:00
staking docs: fix module spec ordering (#9870) 2021-08-09 08:09:17 +00:00
upgrade feat: file watcher for cosmovisor (#8590) 2021-08-11 15:03:48 +00:00
README.md docs: fix module spec ordering (#9870) 2021-08-09 08:09:17 +00:00

README.md

List of Modules

Here are some production-grade modules that can be used in Cosmos SDK applications, along with their respective documentation:

  • Auth - Authentication of accounts and transactions for Cosmos SDK application.
  • Authz - Authorization for accounts to perform actions on behalf of other accounts.
  • Bank - Token transfer functionalities.
  • Capability - Object capability implementation.
  • Crisis - Halting the blockchain under certain circumstances (e.g. if an invariant is broken).
  • Distribution - Fee distribution, and staking token provision distribution.
  • Evidence - Evidence handling for double signing, misbehaviour, etc.
  • Feegrant - Grant fee allowances for executing transactions.
  • Governance - On-chain proposals and voting.
  • Mint - Creation of new units of staking token.
  • Params - Globally available parameter store.
  • Slashing - Validator punishment mechanisms.
  • Staking - Proof-of-Stake layer for public blockchains.
  • Upgrade - Software upgrades handling and coordination.

To learn more about the process of building modules, visit the building modules reference documentation.

IBC

The IBC module for the SDK has moved to its own repository.