docs: fix typos in module documentation (#24891)

This commit is contained in:
Maxim Evtush 2025-06-20 18:26:30 +03:00 committed by GitHub
parent 99c3429ceb
commit 5cab4b58bc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -111,12 +111,12 @@ simd query blocks --query 'message.sender=cosmos...' --page 1 --limit 30
#### Transactions
The `x/auth/tx` module provides a convinient CLI command for decoding and encoding transactions.
The `x/auth/tx` module provides a convenient CLI command for decoding and encoding transactions.
#### `encode`
The `encode` command encodes a transaction created with the `--generate-only` flag or signed with the sign command.
The transaction is seralized it to Protobuf and returned as base64.
The transaction is serialized it to Protobuf and returned as base64.
```bash
$ simd tx encode tx.json

View File

@ -35,8 +35,8 @@ This specification defines the vesting account implementation that is used by th
For all vesting accounts, the owner of the vesting account is able to delegate and undelegate from validators, however they cannot transfer coins to another account until those coins are vested. This specification allows for four different kinds of vesting:
* Delayed vesting, where all coins are vested once `ET` is reached.
* Continous vesting, where coins begin to vest at `ST` and vest linearly with respect to time until `ET` is reached
* Periodic vesting, where coins begin to vest at `ST` and vest periodically according to number of periods and the vesting amount per period. The number of periods, length per period, and amount per period are configurable. A periodic vesting account is distinguished from a continuous vesting account in that coins can be released in staggered tranches. For example, a periodic vesting account could be used for vesting arrangements where coins are relased quarterly, yearly, or over any other function of tokens over time.
* Continuous vesting, where coins begin to vest at `ST` and vest linearly with respect to time until `ET` is reached
* Periodic vesting, where coins begin to vest at `ST` and vest periodically according to number of periods and the vesting amount per period. The number of periods, length per period, and amount per period are configurable. A periodic vesting account is distinguished from a continuous vesting account in that coins can be released in staggered tranches. For example, a periodic vesting account could be used for vesting arrangements where coins are released quarterly, yearly, or over any other function of tokens over time.
* Permanent locked vesting, where coins are locked forever. Coins in this account can still be used for delegating and for governance votes even while locked.
## Note