Skip to content

Commit d563a26

Browse files
author
gamarin
committed
bez review
1 parent 1662d6b commit d563a26

File tree

3 files changed

+3
-25
lines changed

3 files changed

+3
-25
lines changed

docs/gaia/delegator-guide-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ On Cosmos Hub mainnet, the accepted denom is `uatom`, where `1atom = 1.000.000ua
345345
Transactions on the Cosmos Hub network need to include a transaction fee in order to be processed. This fee pays for the gas required to run the transaction. The formula is the following:
346346
347347
```
348-
fees = gas * gasPrices
348+
fees = ceil(gas * gasPrices)
349349
```
350350
351351
The `gas` is dependent on the transaction. Different transaction require different amount of `gas`. The `gas` amount for a transaction is calculated as it is being processed, but there is a way to estimate it beforehand by using the `auto` value for the `gas` flag. Of course, this only gives an estimate. You can adjust this estimate with the flag `--gas-adjustment` (default `1.0`) if you want to be sure you provide enough `gas` for the transaction.

docs/gaia/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ $ gaiacli version --long
4848

4949
```
5050
cosmos-sdk: 0.33.0
51-
git commit: 7b4104aced52aa5b59a96c28b5ebeea7877fc4f0
52-
vendor hash:
51+
git commit: 06f741609bbce747643e9f1f2abf67040ad78e16
52+
vendor hash: decf1ff8b31df2243aa27bcd6e1a40df4d30be81
5353
build tags: netgo ledger
5454
go version go1.12 darwin/amd64
5555
```

docs/gaia/validators/validator-setup.md

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -16,28 +16,6 @@ If you want to become a validator for the Hub's `mainnet`, you should [research
1616

1717
You may want to skip the next section if you have already [set up a full-node](../join-mainnet.md).
1818

19-
::: warning
20-
On Cosmos Hub mainnet, the accepted denom is `uatom`, where `1atom = 1.000.000uatom`
21-
:::
22-
23-
### A note on gas and fees
24-
25-
Transactions on the Cosmos Hub network need to include a transaction fee in order to be processed. This fee pays for the gas required to run the transaction. The formula is the following:
26-
27-
```
28-
fees = gas * gasPrices
29-
```
30-
31-
The `gas` is dependent on the transaction. Different transaction require different amount of `gas`. The `gas` amount for a transaction is calculated as it is being processed, but there is a way to estimate it beforehand by using the `auto` value for the `gas` flag. Of course, this only gives an estimate. You can adjust this estimate with the flag `--gas-adjustment` (default `1.0`) if you want to be sure you provide enough `gas` for the transaction.
32-
33-
The `gasPrice` is the price of each unit of `gas`. Each validator sets a `min-gas-price` value, and will only include transactions that have a `gasPrice` greater than their `min-gas-price`.
34-
35-
The transaction `fees` are the product of `gas` and `gasPrice`. As a user, you have to input 2 out of 3. The higher the `gasPrice`/`fees`, the higher the chance that your transaction will get included in a block.
36-
37-
::: tip
38-
For mainnet, the recommended `gas-prices` is `0.025uatom`.
39-
:::
40-
4119
## Create Your Validator
4220

4321
Your `cosmosvalconspub` can be used to create a new validator by staking tokens. You can find your validator pubkey by running:

0 commit comments

Comments
 (0)