| @abi.decode | any | Decode ABI-encoded bytes into values given a comma-separated type list; a lens selects one of them. |
| @abi.decodeCall | any | Decode calldata into [contract signature [args]] with human-readable EVML values. |
| @abi.encode | bytes | ABI-encode values given a comma-separated type list, like Solidity abi.encode. |
| @abi.encodeCall | bytes | ABI-encode a function call from its signature and arguments. |
| @abi.encodePacked | bytes | ABI non-standard packed encoding, matching Solidity's abi.encodePacked. |
| @arr | array | Generate an array of sequential integers from start (inclusive) to end (exclusive). |
| @balance | number | Balance in base units: the native balance for ETH, or an ERC-20 balanceOf for any token symbol or address. |
| @block | array | [number, timestamp] of the latest or a specific block. |
| @bool | bool | Evaluate a boolean expression or convert a value to a boolean string. |
| @bytes | bytes | Convert a value to hex bytes, force UTF-8 encoding, or perform a bitwise operation. |
| @bytes32 | bytes32 | Pad a value to a 32-byte hex string. Integers and arithmetic expressions are left-padded like Solidity's bytes32(uint256(...)) cast; hex strings pad left by default or right with a trailing right. |
| @date | number | Parse a date string into a Unix timestamp, with an optional offset. |
| @ens | address | Resolve an ENS name to its address. |
| @gas.estimate | number | Estimate the gas required for a contract call. |
| @gas.price | number | Current gas price in wei. |
| @get | any | Call a read-only contract function and return its result. |
| @hash | bytes32 | Compute the hash of a string with keccak256 (default) or sha256. |
| @ifElse | any | A ternary over live reads: cond ? then : else, evaluating only the winning branch. Parenthesized ternaries nest as branches. |
| @ipfs | string | Upload text content to IPFS and return the CID. |
| @ipfs.get | string | Fetch content from IPFS, verified against its CID, and return it as text. |
| @me | address | Connected wallet address. |
| @nonce | number | Number of transactions sent from an address (its account nonce), read over plain RPC. For contracts it counts the CREATEs they performed. There is no on-chain form: the EVM has no nonce opcode. |
| @num | number | Evaluate an arithmetic expression or convert a value to a number. |
| @orElse | any | The value of the first read, or the second one when the first reverts. |
| @reverts | any | Whether a live call reverts: true when the chain refuses the call, false when it resolves; -!> matches the reason and a lens selects an error argument. |
| @sigValid | bool | Verify a signature against an expected signer address. Auto-detects EIP-712 typed data (JSON) vs. plain message. |
| @str | string | Convert a value to its string representation, or decode hex bytes as UTF-8. |
| @Ether | address | Resolve a token symbol to its contract address on the current chain. |