Current section
Files
Jump to
Current section
Files
lib/evm/builtin.ex
defmodule EVM.Builtin do
@moduledoc """
Implements the built-in functions as defined in Appendix E
of the Yellow Paper. These are contract functions that
natively exist in Ethereum.
"""
def run_ecrec(state, gas, exec_env), do: nil
def run_sha256(state, gas, exec_env), do: nil
def run_rip160(state, gas, exec_env), do: nil
def run_id(state, gas, exec_env), do: nil
end