-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
docs: Revert SPEC-SPEC and update x/{auth,bank,evidence,slashing} #7407
Merged
Merged
Changes from 2 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
136cd16
Revert some changes from #7404
amaury1093 de781ff
Update x/slashing
amaury1093 a867974
Merge branch 'master' into am-6953-slashing
amaury1093 4c533b5
Merge branch 'master' into am-6953-slashing
amaury1093 50f4af1
Merge branch 'master' into am-6953-slashing
amaury1093 b1a6ca0
Merge branch 'master' into am-6953-slashing
amaury1093 146704a
Merge branch 'master' into am-6953-slashing
amaury1093 77fef98
Merge branch 'master' of ssh://github.com/cosmos/cosmos-sdk into am-6…
amaury1093 86fda6c
Address review comments
amaury1093 bad3498
Small tweak
amaury1093 680f9b3
Merge branch 'master' of ssh://github.com/cosmos/cosmos-sdk into am-6…
amaury1093 8014441
Merge branch 'master' into am-6953-slashing
amaury1093 fe98c92
Merge branch 'master' into am-6953-slashing
amaury1093 95f6c74
Merge branch 'master' into am-6953-slashing
fedekunze c41456d
Merge branch 'master' into am-6953-slashing
mergify[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,24 +21,19 @@ This module will be used in the Cosmos Hub. | |
## Contents | ||
|
||
1. **[Concepts](01_concepts.md)** | ||
- [Gas & Fees](01_concepts.md#gas-&-fees) | ||
- [Gas & Fees](01_concepts.md#gas-&-fees) | ||
2. **[State](02_state.md)** | ||
- [Accounts](02_state.md#accounts) | ||
- [Accounts](02_state.md#accounts) | ||
3. **[Messages](03_messages.md)** | ||
amaury1093 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- [Handlers](03_messages.md#handlers) | ||
4. **[Types](03_types.md)** | ||
- [StdFee](03_types.md#stdfee) | ||
- [StdSignature](03_types.md#stdsignature) | ||
- [StdTx](03_types.md#stdtx) | ||
- [StdSignDoc](03_types.md#stdsigndoc) | ||
5. **[Keepers](04_keepers.md)** | ||
- [Account Keeper](04_keepers.md#account-keeper) | ||
6. **[Vesting](05_vesting.md)** | ||
- [Intro and Requirements](05_vesting.md#intro-and-requirements) | ||
- [Vesting Account Types](05_vesting.md#vesting-account-types) | ||
- [Vesting Account Specification](05_vesting.md#vesting-account-specification) | ||
- [Keepers & Handlers](05_vesting.md#keepers-&-handlers) | ||
- [Genesis Initialization](05_vesting.md#genesis-initialization) | ||
- [Examples](05_vesting.md#examples) | ||
- [Glossary](05_vesting.md#glossary) | ||
7. **[Parameters](07_params.md)** | ||
- [Handlers](03_messages.md#handlers) | ||
4. **[Keepers](04_keepers.md)** | ||
- [Account Keeper](04_keepers.md#account-keeper) | ||
5. **[Vesting](05_vesting.md)** | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this section does not adhere to the SPEC-SPEC, but I believe it's important enough to deserve its own section. |
||
- [Intro and Requirements](05_vesting.md#intro-and-requirements) | ||
- [Vesting Account Types](05_vesting.md#vesting-account-types) | ||
- [Vesting Account Specification](05_vesting.md#vesting-account-specification) | ||
- [Keepers & Handlers](05_vesting.md#keepers-&-handlers) | ||
- [Genesis Initialization](05_vesting.md#genesis-initialization) | ||
- [Examples](05_vesting.md#examples) | ||
- [Glossary](05_vesting.md#glossary) | ||
6. **[Parameters](07_params.md)** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!-- | ||
order: 1 | ||
--> | ||
|
||
# State | ||
|
||
The `x/bank` module keeps state of two primary objects, account balances and the | ||
total supply of all balances. | ||
|
||
- Balances: `[]byte("balances") | []byte(address) / []byte(balance.Denom) -> ProtocolBuffer(balance)` | ||
- Supply: `0x0 -> ProtocolBuffer(Supply)` |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.