encode_packed
Convert Solidity type-value pairs into packed bytes using abi.encodePacked for efficient EVM data encoding in transactions and contract calls.
Instructions
Encode values using Solidity's abi.encodePacked (non-standard packed encoding)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| types | Yes | Array of Solidity types (e.g., ['address', 'uint256']) | |
| values | Yes | Array of values corresponding to the types |