Skip to main content
Back to top
Ctrl
+
K
Introduction
Gas
Stack
Memory
Storage
EVM State
Opcodes
Stop
Math
Comparisons
Logic
Bit
Misc
Environment
Pop
Memory
Storage
Transient Storage
Jump
Push
Dup
Swap
Log
Contract
EVM
Bytecode
Run
Resources
Binder
Colab
Live Code
Repository
Open issue
.ipynb
.pdf
Pop
Pop
#
Pops the first item off the stack.
def
_pop
(
evm
):
evm
.
pc
+=
1
evm
.
gas_dec
(
2
)
evm
.
stack
.
pop
(
0
)