Transfer multiple ENS names in a single transaction via Multicall3 — bulk send.
Much cheaper and faster than transferring names one at a time. Supports up to 20 names per batch.
Automatically detects whether each name is wrapped (NameWrapper/ERC-1155) or unwrapped (BaseRegistrar/ERC-721) and builds the correct transfer call for each.
All names can go to the same recipient or to different recipients — specify a toAddress per name. Each toAddress may be a 0x address OR an ENS name (resolved to its address record automatically); pass what the user gave you and never use get_name_details to resolve a recipient.
Conversational flow for "send all my names" / "transfer my names": first call get_wallet_portfolio to find the names, present the FULL list that will be transferred, confirm the recipient, and get explicit confirmation (this is IRREVERSIBLE). Only THEN call this tool. NEVER auto-transfer without explicit confirmation.
Requirements:
- The fromAddress must currently own ALL names in the batch
- All addresses must be valid Ethereum addresses
- Names must be registered (not expired)
WARNING: This transfers FULL ownership of every name. Recipients gain complete control.
Resolver records (avatar, addresses, etc.) are NOT affected by transfer — they stay on each name.
After transfer, consider using bulk_set_records to update ETH address records on the transferred names.
Connector