Skip to content

Commit

Permalink
Update recommended gas fee from 0.025uatom to 0.0025uatom (#987)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Schwarz authored Sep 25, 2021
1 parent 399a7da commit 0616266
Show file tree
Hide file tree
Showing 12 changed files with 33 additions and 33 deletions.
16 changes: 8 additions & 8 deletions docs/delegators/delegator-guide-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ The `gasPrice` is the price of each unit of `gas`. Each validator sets a `min-ga
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.
::: tip
For mainnet, the recommended `gas-prices` is `0.025uatom`.
For mainnet, the recommended `gas-prices` is `0.0025uatom`.
:::
### Sending Tokens
Expand All @@ -394,7 +394,7 @@ For mainnet, the recommended `gas-prices` is `0.025uatom`.
```bash
// Send a certain amount of tokens to an address
// Ex value for parameters (do not actually use these values in your tx!!): <to_address>=cosmos16m93fezfiezhvnjajzrfyszml8qm92a0w67ntjhd3d0 <amount>=1000000uatom
// Ex value for flags: <gasPrice>=0.025uatom
// Ex value for flags: <gasPrice>=0.0025uatom
gaiad tx send <to_address> <amount> --from <yourKeyName> --gas auto --gas-adjustment 1.5 --gas-prices <gasPrice>
```
Expand All @@ -415,7 +415,7 @@ gaiad tx send <to_address> <amount> --from <yourKeyName> --gas auto --gas-adjust
```bash
// Bond a certain amount of Atoms to a given validator
// ex value for flags: <validatorAddress>=cosmosvaloper18thamkhnj9wz8pa4nhnp9rldprgant57pk2m8s, <amountToBound>=10000000uatom, <gasPrice>=0.025uatom
// ex value for flags: <validatorAddress>=cosmosvaloper18thamkhnj9wz8pa4nhnp9rldprgant57pk2m8s, <amountToBound>=10000000uatom, <gasPrice>=0.0025uatom
gaiad tx staking delegate <validatorAddress> <amountToBond> --from <delegatorKeyName> --gas auto --gas-adjustment 1.5 --gas-prices <gasPrice>
Expand All @@ -424,19 +424,19 @@ gaiad tx staking delegate <validatorAddress> <amountToBond> --from <delegatorKey
// Can only be used if already bonded to a validator
// Redelegation takes effect immediately, there is no waiting period to redelegate
// After a redelegation, no other redelegation can be made from the account for the next 3 weeks
// ex value for flags: <stcValidatorAddress>=cosmosvaloper18thamkhnj9wz8pa4nhnp9rldprgant57pk2m8s, <amountToRedelegate>=100000000uatom, <gasPrice>=0.025uatom
// ex value for flags: <stcValidatorAddress>=cosmosvaloper18thamkhnj9wz8pa4nhnp9rldprgant57pk2m8s, <amountToRedelegate>=100000000uatom, <gasPrice>=0.0025uatom
gaiad tx staking redelegate <srcValidatorAddress> <destValidatorAddress> <amountToRedelegate> --from <delegatorKeyName> --gas auto --gas-adjustment 1.5 --gas-prices <gasPrice>
// Withdraw all rewards
// ex value for flag: <gasPrice>=0.025uatom
// ex value for flag: <gasPrice>=0.0025uatom
gaiad tx distribution withdraw-all-rewards --from <delegatorKeyName> --gas auto --gas-adjustment 1.5 --gas-prices <gasPrice>
// Unbond a certain amount of Atoms from a given validator
// You will have to wait 3 weeks before your Atoms are fully unbonded and transferrable
// ex value for flags: <validatorAddress>=cosmosvaloper18thamkhnj9wz8pa4nhnp9rldprgant57pk2m8s, <amountToUnbound>=10000000uatom, <gasPrice>=0.025uatom
// ex value for flags: <validatorAddress>=cosmosvaloper18thamkhnj9wz8pa4nhnp9rldprgant57pk2m8s, <amountToUnbound>=10000000uatom, <gasPrice>=0.0025uatom
gaiad tx staking unbond <validatorAddress> <amountToUnbond> --from <delegatorKeyName> --gas auto --gas-adjustment 1.5 --gas-prices <gasPrice>
```
Expand Down Expand Up @@ -491,7 +491,7 @@ At the end of the voting period, the proposal is accepted if there are more than
```bash
// Submit a Proposal
// <type>=text/parameter_change/software_upgrade
// ex value for flag: <gasPrice>=0.025uatom
// ex value for flag: <gasPrice>=0.0025uatom
gaiad tx gov submit-proposal --title "Test Proposal" --description "My awesome proposal" --type <type> --deposit=10000000uatom --gas auto --gas-adjustment 1.5 --gas-prices <gasPrice> --from <delegatorKeyName>
Expand All @@ -514,7 +514,7 @@ If you do not have a ledger device and want to interact with your private key on
```bash
// Bond Atoms
// ex value for flags: <amountToBound>=10000000uatom, <bech32AddressOfValidator>=cosmosvaloper18thamkhnj9wz8pa4nhnp9rldprgant57pk2m8s, <gasPrice>=0.025uatom, <delegatorAddress>=cosmos10snjt8dmpr5my0h76xj48ty80uzwhraqalu4eg
// ex value for flags: <amountToBound>=10000000uatom, <bech32AddressOfValidator>=cosmosvaloper18thamkhnj9wz8pa4nhnp9rldprgant57pk2m8s, <gasPrice>=0.0025uatom, <delegatorAddress>=cosmos10snjt8dmpr5my0h76xj48ty80uzwhraqalu4eg
gaiad tx staking delegate <validatorAddress> <amountToBond> --from <delegatorAddress> --gas auto --gas-adjustment 1.5 --gas-prices <gasPrice> --generate-only > unsignedTX.json
```
Expand Down
6 changes: 3 additions & 3 deletions docs/gaia-tutorials/join-mainnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ For optimized node performance, edit the `~/.gaia/config/app.toml` file to enabl
# transaction. A transaction's fees must meet the minimum of any denomination
# specified in this config (for example, 10uatom).
minimum-gas-prices = "0.025uatom"
minimum-gas-prices = "0.0025uatom"
```

Your full node has been initialized!
Expand Down Expand Up @@ -140,13 +140,13 @@ The `gasPrice` is the price of each unit of `gas`. Each validator sets a `min-ga

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.

For mainnet, the recommended `gas-prices` is `0.025uatom`.
For mainnet, the recommended `gas-prices` is `0.0025uatom`.

## Set `minimum-gas-prices`

Your full-node keeps unconfirmed transactions in its mempool. In order to protect it from spam, it is better to set a `minimum-gas-prices` that the transaction must meet in order to be accepted in your node's mempool. This parameter can be set in the following file `~/.gaia/config/app.toml`.

The initial recommended `min-gas-prices` is `0.025uatom`, but you might want to change it later.
The initial recommended `min-gas-prices` is `0.0025uatom`, but you might want to change it later.

## Pruning of State

Expand Down
2 changes: 1 addition & 1 deletion docs/resources/gaiad.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ gaiad tx bank send ... --fees=50000uatom
or

```bash
gaiad tx bank send ... --gas-prices=0.025uatom
gaiad tx bank send ... --gas-prices=0.0025uatom
```

### Account
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/service-providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ Parameters:
Flags:
- `--chain-id`: This flag allows you to specify the id of the chain. There are different ids for different testnet chains and mainnet chains.
- `--gas-prices`: This flag allows you to specify the gas prices you pay for the transaction. The format is used as `0.025uatom`
- `--gas-prices`: This flag allows you to specify the gas prices you pay for the transaction. The format is used as `0.0025uatom`
## REST API
Expand Down
2 changes: 1 addition & 1 deletion docs/translations/cn/gaiacli.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ gaiad tx send ... --fees=50000uatom
或:

```bash
gaiad tx send ... --gas-prices=0.025uatom
gaiad tx send ... --gas-prices=0.0025uatom
```


Expand Down
4 changes: 2 additions & 2 deletions docs/translations/cn/join-mainnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,14 +97,14 @@ fees = gas * gasPrices
交易的`fees``gas``gasPrice`的结果。作为一个用户,你必须输入三者中的两者。更高的`gasPrice`/`fees`,将提高你的交易被打包的机会。

::: 提示
主网中推荐的`gas-prices``0.025uatom`
主网中推荐的`gas-prices``0.0025uatom`
:::

## 设置`minimum-gas-prices`

你的全节点可以在交易池中放入未确认的交易。为了保护其免受Spam攻击,最好设置一个`minimum-gas-prices`来过滤交易以决定是否要放入交易池。这个参数可以在`~/.gaia/config/gaiad.toml`文件中配置。

推荐的初始`minimum-gas-prices``0.025uatom`,如果你愿意可以稍后再修改它。
推荐的初始`minimum-gas-prices``0.0025uatom`,如果你愿意可以稍后再修改它。

## 运行一个全节点

Expand Down
4 changes: 2 additions & 2 deletions docs/translations/cn/validators/validator-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ gaiad tx staking create-validator \
--commission-max-change-rate="0.01" \
--min-self-delegation="1000000" \
--gas="auto" \
--gas-prices="0.025uatom" \
--gas-prices="0.0025uatom" \
--from=<key_name>
```

Expand Down Expand Up @@ -111,7 +111,7 @@ gaiad tx staking edit-validator
--details="To infinity and beyond!" \
--chain-id=<chain_id> \
--gas="auto" \
--gas-prices="0.025uatom" \
--gas-prices="0.0025uatom" \
--from=<key_name> \
--commission-rate="0.10"
```
Expand Down
4 changes: 2 additions & 2 deletions docs/translations/es/join-mainnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,14 @@ El `gasPrice` (i.e `precioPorGas`) es el precio de cada unidad de `gas`. Cada va
Los `fees` de la transacción son el producto del `gas` y del `gasPrice`. Como usuario, tiene que introducir 2 de 3. Cuanto más alto sea el `gasPrice`/`fees`, mayor será la posibilidad de que su transacción se incluya en un bloque.

::: consejo
Para la red principal, el `gas-prices` recomendado es `0.025uatom`.
Para la red principal, el `gas-prices` recomendado es `0.0025uatom`.
:::

## Establezca `minimum-gas-prices`

Su nodo completo mantiene las transacciones no confirmadas en la _mempool_. Para protegerlo de ataques de spam, es mejor establecer un `minimum-gas-prices` que la transacción debe cumplir para ser aceptada en la _mempool_ de su nodo. Este parámetro puede ser establecido en el siguiente archivo `~/.gaia/config/app.toml`.

El valor inicial recomendado para `min-gas-prices` es `0.025uatom`, pero puede querer cambiarlo más tarde.
El valor inicial recomendado para `min-gas-prices` es `0.0025uatom`, pero puede querer cambiarlo más tarde.

## Reducción del Estado

Expand Down
16 changes: 8 additions & 8 deletions docs/translations/kr/delegator-guide-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ gaiad query
트랜잭션 피(`fees`)는 `gas` 수량과 `gasPrice`를 곱한 값입니다. 유저는 3개의 값 중 2개의 값을 입력하게 됩니다. `gasPrice`가 높을수록 트랜잭션이 블록에 포함될 확률이 높아집니다.

::: tip
메인넷 권장 `gas-prices``0.025uatom` 입니다.
메인넷 권장 `gas-prices``0.0025uatom` 입니다.
:::

### 토큰 전송하기
Expand All @@ -339,7 +339,7 @@ gaiad query
```bash
//특정 수량의 토큰을 지정한 주소로 전송하기
//파라미터 값 예시(실제 토큰 전송시 사용하지 마세요!): <수신자_주소_예시>=cosmos16m93fezfiezhvnjajzrfyszml8qm92a0w67ntjhd3d0 <수량_예시>=1000000uatom
//플래그 값 예시: <가스_가격(gasPrice)>=0.025uatom
//플래그 값 예시: <가스_가격(gasPrice)>=0.0025uatom

gaiad tx send <수신자_주소> <보내는_수량> --from <키_이름> --gas auto --gas-adjustment 1.5 --gas-prices <가스_가격(gasPrice)>
```
Expand All @@ -359,26 +359,26 @@ gaiad tx send <수신자_주소> <보내는_수량> --from <키_이름> --gas au

```bash
// 특정 검증인에게 아톰 위임하기
// 플래그 값 예시: <검증인_주소(validatorAddress)>= cosmosvaloper18thamkhnj9wz8pa4nhnp9rldprgant57pk2m8s, <위임할_수량(amountToBound)>=10000000uatom, <가스_가격(gasPrice)>=0.025uatom
// 플래그 값 예시: <검증인_주소(validatorAddress)>= cosmosvaloper18thamkhnj9wz8pa4nhnp9rldprgant57pk2m8s, <위임할_수량(amountToBound)>=10000000uatom, <가스_가격(gasPrice)>=0.0025uatom

gaiad tx staking delegate <검증인_주소(validatorAddress> <위임할_수량(amountToBond)> --from <위임자_키_명칭(delegatorKeyName)> --gas auto --gas-adjustment 1.5 --gas-prices <가스_가격(gasPrice)>

// 위임된 아톰을 다른 검증인에게 재위임 하기
// 이미 검증인에게 위임이 된 상태에서만 사용하실 수 있습니다
// 재위임은 즉시 반영됩니다. 재위임 대기 기간은 없습니다
// 재위임을 진행하신 후, 동일한 아톰에 대한 재위임은 3주 후 가능합니다.
// 플래그 값 예시: <기존_검증인_주소(srcValidatorAddress)>=cosmosvaloper18thamkhnj9wz8pa4nhnp9rldprgant57pk2m8s, <재위임할_수량>=100000000uatom, <가스_가격(gasPrice)>=0.025uatom
// 플래그 값 예시: <기존_검증인_주소(srcValidatorAddress)>=cosmosvaloper18thamkhnj9wz8pa4nhnp9rldprgant57pk2m8s, <재위임할_수량>=100000000uatom, <가스_가격(gasPrice)>=0.0025uatom

gaiad tx staking redelegate <기존_검증인_주소(srcValidatorAddress)> <이동할_검증인_주소(destValidatorAddress)> <재위임할_수량(amountToRedelegate)> --from <위임자_키_명칭(delegatorKeyName)> --gas auto --gas-adjustment 1.5 --gas-prices <가스_가격(gasPrice)>

// 모든 리워드 수령하기
// 플래그 값 예시: <가스_가격(gasPrice)>=0.025uatom
// 플래그 값 예시: <가스_가격(gasPrice)>=0.0025uatom

gaiad tx distribution withdraw-all-rewards --from <위임자_키_명칭(delegatorKeyName)> --gas auto --gas-adjustment 1.5 --gas-prices <가스_가격(gasPrice)>

// 특정 검증인으로 부터 위임 취소하기
// 위임 취소가 완료되기 위해서는 3주의 기간이 걸리며, 위임 취소가 진행중인 기간에는 해당 아톰을 전송하실 수 없습니다.
// 플래그 값 예시: <검증인_주소(validatorAddress)>=cosmosvaloper18thamkhnj9wz8pa4nhnp9rldprgant57pk2m8s, <위임_취소할_수량(amountToUnbond)>=10000000uatom, <가스_가격(gasPrice)>=0.025uatom
// 플래그 값 예시: <검증인_주소(validatorAddress)>=cosmosvaloper18thamkhnj9wz8pa4nhnp9rldprgant57pk2m8s, <위임_취소할_수량(amountToUnbond)>=10000000uatom, <가스_가격(gasPrice)>=0.0025uatom

gaiad tx staking unbond <검증인_주소(validatorAddress)> <위임_취소할_수량(amountToUnbond)> --from <위임자_키_명칭(delegatorKeyName)> --gas auto --gas-adjustment 1.5 --gas-prices <가스_가격(gasPrice)>

Expand Down Expand Up @@ -428,7 +428,7 @@ gaiad query tx <트랜잭션_해시(txHash)>
```bash
// 프로포절 제안하기
// <프로포절_종류(type)>=text/parameter_change/software_upgrade
// 플래그 값 예시: <가스_가격(gasPrice)>=0.025uatom
// 플래그 값 예시: <가스_가격(gasPrice)>=0.0025uatom
gaiad tx gov submit-proposal --title "Test Proposal" --description "My awesome proposal" --type <프로포절_종류(type)> --deposit=10000000uatom --gas auto --gas-prices <가스_가격(gasPrice)> --from <위임자_키_명칭(delegatorKeyName)>
Expand All @@ -451,7 +451,7 @@ gaiad tx gov vote <프로포절_ID(proposalID)> <표_선택(option)> --gas auto

```bash
// 아톰 본딩하기
// 플래그 값 예시: <본딩할 수량(amountToBond)>=10000000uatom, <위임할 검증인의 bech32 주소(bech32AddressOfValidator)>=cosmosvaloper18thamkhnj9wz8pa4nhnp9rldprgant57pk2m8s, <가스 가격(gasPrice)>=0.025uatom
// 플래그 값 예시: <본딩할 수량(amountToBond)>=10000000uatom, <위임할 검증인의 bech32 주소(bech32AddressOfValidator)>=cosmosvaloper18thamkhnj9wz8pa4nhnp9rldprgant57pk2m8s, <가스 가격(gasPrice)>=0.0025uatom
gaiad tx staking delegate <검증인_주소(validatorAddress)> <위임할_수량(amountToBond)> --from <위임자_주소(delegatorAddress)> --gas auto --gas-adjustment 1.5 --gas-prices <가스_가격(gasPrice)> --generate-only > unsignedTX.json
```
Expand Down
2 changes: 1 addition & 1 deletion docs/translations/kr/gaiacli.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ gaiad tx send ... --fees=5000uatom
또는

```bash
gaiad tx send ... --gas-prices=0.025uatom
gaiad tx send ... --gas-prices=0.0025uatom
```

### 계정
Expand Down
4 changes: 2 additions & 2 deletions docs/translations/kr/join-mainnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,14 +100,14 @@ gaiad start
트랜잭션 피(`fees`)는 `gas` 수량과 `gasPrice`를 곱한 값입니다. 유저는 3개의 값 중 2개의 값을 입력하게 됩니다. `gasPrice`가 높을수록 트랜잭션이 블록에 포함될 확률이 높아집니다.

::: tip
메인넷 권장 `gas-prices``0.025uatom` 입니다.
메인넷 권장 `gas-prices``0.0025uatom` 입니다.
:::

## 최소 가스 가격(`minimum-gas-prices`) 설정하기

풀노드는 컨펌되지 않은 트랜잭션을 멤풀에 보관합니다. 스팸 트랜잭션으로부터 풀노드를 보호하기 위해서 노드 멤풀에 보관되기 위한 트랜잭션의 최소 가스 가격(`minimum-gas-prices`)을 설정할 것을 권장합니다. 해당 파라미터는 `~/.gaia/config/gaiad.toml`에서 설정하실 수 있씁니다.

기본 권장 `minimum-gas-prices``0.025uatom`이지만, 추후 바꾸실 수 있습니다.
기본 권장 `minimum-gas-prices``0.0025uatom`이지만, 추후 바꾸실 수 있습니다.

## 풀노드 운영하기

Expand Down
4 changes: 2 additions & 2 deletions docs/validators/validator-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ gaiad tx staking create-validator \
--commission-max-change-rate="0.01" \
--min-self-delegation="1000000" \
--gas="auto" \
--gas-prices="0.025uatom" \
--gas-prices="0.0025uatom" \
--from=<key_name>
```

Expand Down Expand Up @@ -118,7 +118,7 @@ gaiad tx staking edit-validator
--details="To infinity and beyond!" \
--chain-id=<chain_id> \
--gas="auto" \
--gas-prices="0.025uatom" \
--gas-prices="0.0025uatom" \
--from=<key_name> \
--commission-rate="0.10"
```
Expand Down

0 comments on commit 0616266

Please sign in to comment.