Skip to content

Commit

Permalink
update broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
0xstepit committed Feb 29, 2024
1 parent 9048afc commit 175ee15
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions docs/protocol/concepts/gas-and-fees.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ for prioritizing transactions.

## Prerequisite Readings

- [Cosmos SDK Gas](https://docs.cosmos.network/main/basics/gas-fees.html)
- [Cosmos SDK Gas](https://docs.cosmos.network/main/learn/beginner/gas-fees.html)
- [Ethereum Gas](https://ethereum.org/en/developers/docs/gas/)

## Basics
Expand Down Expand Up @@ -53,8 +53,8 @@ The idea is that it costs something to get somewhere.

More on Gas:

- [Cosmos Gas Fees](https://docs.cosmos.network/main/basics/gas-fees)
- [Cosmos Tx Lifecycle](https://docs.cosmos.network/main/basics/tx-lifecycle.html)
- [Cosmos Gas Fees](https://docs.cosmos.network/main/learn/beginner/gas-fees)
- [Cosmos Tx Lifecycle](https://docs.cosmos.network/main/learn/beginner/tx-lifecycle.html)
- [Ethereum Gas](https://ethereum.org/en/developers/docs/gas/)

### How is Gas Calculated?
Expand Down Expand Up @@ -91,7 +91,7 @@ depending on network traffic.

More on Gas vs. Fees:

- [Cosmos Gas and Fees](https://docs.cosmos.network/main/basics/gas-fees)
- [Cosmos Gas and Fees](https://docs.cosmos.network/main/learn/beginner/gas-fees)
- [Ethereum Gas and Fees](https://ethereum.org/en/developers/docs/gas/)

### How are Fees Handled on Cosmos?
Expand Down Expand Up @@ -215,7 +215,7 @@ Since gas is priced per-byte, the same interaction is more gas-intensive with la
(unlike Ethereum's `uint256` values, Cosmos SDK numericals are represented using [Big.Int](https://pkg.go.dev/math/big#Int)
types, which are dynamically sized).

More information regarding gas as part of the Cosmos SDK can be found [here](https://docs.cosmos.network/main/basics/gas-fees.html).
More information regarding gas as part of the Cosmos SDK can be found [here](https://docs.cosmos.network/main/learn/beginner/gas-fees.html).

### Matching EVM Gas consumption

Expand All @@ -238,7 +238,7 @@ To ignore the SDK gas consumption, we reset the transaction `GasMeter` count to

### `AnteHandler`

The Cosmos SDK [`AnteHandler`](https://docs.cosmos.network/main/basics/gas-fees.html#antehandler)
The Cosmos SDK [`AnteHandler`](https://docs.cosmos.network/main/learn/beginner/gas-fees.html#antehandler)
performs basic checks prior to transaction execution. These checks are usually signature
verification, transaction field validation, transaction fees, etc.

Expand Down
2 changes: 1 addition & 1 deletion docs/protocol/modules/evm.md
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ The `antehandler` runs through a series of options and their `AnteHandle` functi

The options `authante.NewMempoolFeeDecorator()`, `authante.NewTxTimeoutHeightDecorator()`
and `authante.NewValidateMemoDecorator(ak)` are the same as for a Cosmos `Tx`.
Click [here](https://docs.cosmos.network/main/basics/gas-fees.html#antehandler) for more on the `anteHandler`.
Click [here](https://docs.cosmos.network/main/learn/beginner/gas-fees.html#antehandler) for more on the `anteHandler`.

#### EVM module

Expand Down

0 comments on commit 175ee15

Please sign in to comment.