Available Options
Cubipods provides a minimal set of command-line options for executing EVM bytecode.Required Options
EVM bytecode to execute, consisting of valid opcodes. Can be provided with or without the
Long form:
0x prefix.Short form: -bLong form:
--bytecodeOptional Flags
Enable verbose mode to display detailed execution information including history, stack, memory, and storage states.Short form:
Long form:When enabled, verbose mode outputs:
-vLong form:
--verbose- Execution history with each opcode step
- Final stack state
- Final memory state
- Final storage state
- Execution analysis
Built-in Options
Display help information about all available options.Short form:
Long form:
-hLong form:
--helpDisplay the current version of Cubipods.Short form:
Long form:
-VLong form:
--versionOption Examples
Using Short Forms
All options have short forms for convenience:Using Long Forms
Long forms are more explicit and readable in scripts:Combining Options
Options can be combined in any order:The
--bytecode option is always required, regardless of what other options are specified.Bytecode Format
The bytecode argument accepts hexadecimal strings:- With prefix:
0x6003600201 - Without prefix:
6003600201
0x prefix is automatically stripped during parsing.