send
Send coins or tokens to another address. Requires a wallet. Sends from your smart wallet when one is configured, otherwise your EOA.
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 <recipient> | Recipient — an address (0x...) or a Zora profile name — 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 25Send to a Zora profile name
--to accepts a Zora profile name as well as an address — the CLI resolves it to the profile's wallet:
npx @zoralabs/cli send eth --to jacob --amount 0.05Non-interactive for scripting
npx @zoralabs/cli send eth --to 0x3a5d...8d142 --amount 0.1 --yes --jsonJSON output
For an ETH send, address is null:
{
"action": "send",
"coin": "ETH",
"address": null,
"sent": {
"amount": "0.1",
"raw": "100000000000000000",
"symbol": "ETH",
"amountUsd": 250.0
},
"to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142",
"tx": "0x789abc..."
}For an ERC-20 send (usdc, zora, or a coin), address is the token contract:
{
"action": "send",
"coin": "JACOB",
"address": "0x9b13358e3a023507e7046c18f508a958cda75f54",
"sent": {
"amount": "100",
"raw": "100000000000000000000",
"symbol": "JACOB",
"amountUsd": 4.85
},
"to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142",
"tx": "0x789abc..."
}