| 1055 | } |
| 1056 | |
| 1057 | std::array<uint8_t, 32> CLI::parseVaultId(const std::string &vault_id) const { |
| 1058 | // Parse a 32-byte vault ID from hex |
| 1059 | return fromHex32(vault_id); |
| 1060 | } |
| 1061 | |
| 1062 | Address CLI::parseAddress(const std::string &address) const { |
| 1063 | // Validate Ethereum address: must be 42 chars, start with 0x, and be hex |
nothing calls this directly
no test coverage detected