evm v0.1.14 EVM.Operation.Logging

Link to this section Summary

Functions

Append log record with no topics

Append log record with one topic

Append log record with two topics

Append log record with three topics

Append log record with four topics

Link to this section Functions

Link to this function log0(args, map)
log0(Operation.stack_args, Operation.vm_map) :: Operation.op_result

Append log record with no topics.

TODO: Implement opcode

Examples

iex> EVM.Operation.Logging.log0([], %{stack: []})
:unimplemented
Link to this function log1(args, map)
log1(Operation.stack_args, Operation.vm_map) :: Operation.op_result

Append log record with one topic.

TODO: Implement opcode

Examples

iex> EVM.Operation.Logging.log1([], %{stack: []})
:unimplemented
Link to this function log2(args, map)
log2(Operation.stack_args, Operation.vm_map) :: Operation.op_result

Append log record with two topics.

TODO: Implement opcode

Examples

iex> EVM.Operation.Logging.log2([], %{stack: []})
:unimplemented
Link to this function log3(args, map)
log3(Operation.stack_args, Operation.vm_map) :: Operation.op_result

Append log record with three topics.

TODO: Implement opcode

Examples

iex> EVM.Operation.Logging.log3([], %{stack: []})
:unimplemented
Link to this function log4(args, map)
log4(Operation.stack_args, Operation.vm_map) :: Operation.op_result

Append log record with four topics.

TODO: Implement opcode

Examples

iex> EVM.Operation.Logging.log4([], %{stack: []})
:unimplemented