Dec 19, 2023
Tutorials
ZxStim
You pay gas spent * gas price
amount of ether
, where
gas
is a unit of computationgas
spent is the total amount of gas used in a transactiongas
price is how much ether you are willing to pay per gasThere are 2 upper bounds to the amount of gas you can spend:
gas
limit (max amount of gas you're willing to use for your transaction, set by you)block gas
limit (max amount of gas allowed in a block, set by the network)Compile and deploy the code block below:
solidityGas.sol// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; contract Gas { uint public i = 0; // Using up all of the gas that you send causes your transaction to fail. // State changes are undone. // Gas spent are not refunded. function forever() public { // Here we run a loop until all of the gas are spent // and the transaction fails while (true) { i += 1; } } }