Type Definition
BrandedUint8Array representing pure runtime bytecode without constructor logic or compiler metadata.
- Constructor logic
- Solidity compiler metadata
- Creation-time initialization
Quick Reference
- Create
- Compare
API Methods
Constructors
from(value)- Create from hex string or Uint8ArrayfromHex(hex)- Parse hex string (with or without 0x prefix)
Utilities
toHex(code)- Convert to hex stringequals(a, b)- Compare equality
Usage Patterns
Contract Verification
Bytecode Analysis
Comparing Contract Versions
Related
- ContractCode - Full deployed bytecode
- InitCode - Creation bytecode
- Bytecode - Bytecode analysis tools
- Metadata - Compiler metadata
Specification
- Ethereum Yellow Paper - EVM execution model
- EVM Opcodes - Instruction reference
- Solidity Internals - Contract structure

