-
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Answer from @ajsutton: Intrinsic gas is the minimum cost of the transaction (might be exact cost if it's a transfer). Intrinsic gas is the minimum amount the tx bound to use and is a combination of a flat rate (depending on the kind of tx) and the size of the tx's payload.
It can be seen as pre-execution validation, since we will not execute the tx if the tx gasLimit < intrinsic gas amount: (i) gasLimit >= intrinsic gas
|
Beta Was this translation helpful? Give feedback.
Answer from @ajsutton:
Intrinsic gas is the minimum cost of the transaction (might be exact cost if it's a transfer).
For contract execution you always pay more since op codes are paid for on top of intrinsic.
Intrinsic gas is the minimum amount the tx bound to use and is a combination of a flat rate (depending on the kind of tx) and the size of the tx's payload.