You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Documented support for [non-EVM networks](/wallet/how-to/use-non-evm-networks), starting with [Starknet](/wallet/how-to/use-non-evm-networks/starknet). ([#1509](https://github.com/MetaMask/metamask-docs/pull/1509))
23
+
- Documented support for [non-EVM networks](/wallet/how-to/use-non-evm-networks), starting with [Starknet](/wallet/how-to/use-non-evm-networks/starknet).
Copy file name to clipboardExpand all lines: services/concepts/gas.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ executing a smart contract or sending a transaction. To perform an action, users
10
10
calculated based on the computational resources required for the action, and to compensate the miners who execute the
11
11
request.
12
12
13
-
The amount paid is the units of gas consumed multiplied by the gas price. So for a network such as Ethereum, this is the
13
+
The amount paid is the units of gas consumed multiplied by the gas price. For Ethereum, this is the
14
14
amount of Ether a user is willing to pay for each unit of gas. The gas price is set by the user and is a key factor in
15
15
determining the priority of their transaction relative to other transactions on the network.
16
16
@@ -23,7 +23,8 @@ The Ethereum London hard fork update changed the blockchain’s transaction fee
23
23
[EIP-1559](https://eips.ethereum.org/EIPS/eip-1559). This update changed the way users pay gas fees on the Ethereum
24
24
network and other EVM chains.
25
25
26
-
Before EIP-1559, users specified a gas price, which was the amount they were willing to pay for a transaction to be mined. The auction-style system meant gas prices often fluctuated wildly. After EIP-1559, this has been replaced by two new values:
26
+
Before EIP-1559, users specified a gas price, which was the amount they were willing to pay for a transaction to be mined.
27
+
The auction-style system meant gas prices fluctuated often. After EIP-1559, this has been replaced by two new values:
27
28
28
29
-**Base fee**: The minimum transaction fee for every transaction to be included in a block. This is calculated by the network
29
30
and is affected by the number of transactions included in the previous block. The base fee gets burned, meaning
Copy file name to clipboardExpand all lines: services/concepts/transaction-types.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,4 +46,4 @@ They also contain a `maxPriorityFeePerGas` parameter, which specifies the maximu
46
46
47
47
An EIP-1559 transaction always pays the base fee of the block it’s included in, and it pays a priority fee as priced by `maxPriorityFeePerGas` or, if the base fee per gas + `maxPriorityFeePerGas` exceeds `maxFeePerGas`, it pays a priority fee as priced by `maxFeePerGas` minus the base fee per gas. The base fee is burned, and the priority fee is paid to the miner that included the transaction. A transaction’s priority fee per gas incentivizes miners to include the transaction over other transactions with lower priority fees per gas.
48
48
49
-
Read the [ConsenSys EIP-1559 primer](https://consensys.net/blog/quorum/what-is-eip-1559-how-will-it-change-ethereum/) for more information on how EIP-1559 changes Ethereum.
49
+
Read the [Consensys EIP-1559 primer](https://consensys.net/blog/quorum/what-is-eip-1559-how-will-it-change-ethereum/) for more information on how EIP-1559 changes Ethereum.
0 commit comments