send
Send coins or tokens to another address. Requires a wallet.
zora send [typeOrId] [identifier] [options]Arguments
| Argument | Description |
|---|---|
typeOrId | Token (eth, usdc, zora), type prefix (creator-coin, trend), or coin address/name |
identifier | Coin name — only needed when a type prefix is provided |
Options
| Flag | Description |
|---|---|
--to <address> | Recipient address (0x...) — required |
--amount <value> | Send specific amount |
--percent <value> | Send percentage of balance (1–100) |
--all | Send entire balance |
--yes | Skip confirmation prompt |
--json | Machine-readable JSON output |
Examples
Send ETH
npx @zoralabs/cli send eth --to 0x3a5df03dd1a001d7055284c2c2c147cbbc78d142 --amount 0.1 Send ETH
Amount 0.1 ETH
To 0x3a5df03dd1a001d7055284c2c2c147cbbc78d142
Confirm? (y/n)Send USDC
npx @zoralabs/cli send usdc --to 0x3a5d...8d142 --amount 50Send jacob creator coins
# By address
npx @zoralabs/cli send 0x9b13358e3a023507e7046c18f508a958cda75f54 --to 0x3a5d...8d142 --all
# By name with type prefix
npx @zoralabs/cli send creator-coin jacob --to 0x3a5d...8d142 --allSend 25% of ZORA balance
npx @zoralabs/cli send zora --to 0x3a5d...8d142 --percent 25Non-interactive for scripting
npx @zoralabs/cli send eth --to 0x3a5d...8d142 --amount 0.1 --yes --jsonJSON output
{
"action": "send",
"asset": "ETH",
"amount": "0.1",
"to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142",
"txHash": "0x789abc...",
"explorerUrl": "https://basescan.org/tx/0x789abc..."
}