From 175ee15b75c5a694e3fa0893428206a0ed4dd4da Mon Sep 17 00:00:00 2001 From: stepit Date: Thu, 29 Feb 2024 14:22:50 +0100 Subject: [PATCH] update broken links --- docs/protocol/concepts/gas-and-fees.md | 12 ++++++------ docs/protocol/modules/evm.md | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/protocol/concepts/gas-and-fees.md b/docs/protocol/concepts/gas-and-fees.md index 8bbeaa81..19f581aa 100644 --- a/docs/protocol/concepts/gas-and-fees.md +++ b/docs/protocol/concepts/gas-and-fees.md @@ -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 @@ -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? @@ -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? @@ -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 @@ -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. diff --git a/docs/protocol/modules/evm.md b/docs/protocol/modules/evm.md index 55335eea..1e554410 100644 --- a/docs/protocol/modules/evm.md +++ b/docs/protocol/modules/evm.md @@ -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