Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

send

Send coins or tokens to another address. Requires a wallet.

zora send [typeOrId] [identifier] [options]

Arguments

ArgumentDescription
typeOrIdToken (eth, usdc, zora), type prefix (creator-coin, trend), or coin address/name
identifierCoin name — only needed when a type prefix is provided

Options

FlagDescription
--to <address>Recipient address (0x...) — required
--amount <value>Send specific amount
--percent <value>Send percentage of balance (1–100)
--allSend entire balance
--yesSkip confirmation prompt
--jsonMachine-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 50

Send 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 --all

Send 25% of ZORA balance

npx @zoralabs/cli send zora --to 0x3a5d...8d142 --percent 25

Non-interactive for scripting

npx @zoralabs/cli send eth --to 0x3a5d...8d142 --amount 0.1 --yes --json

JSON output

{
  "action": "send",
  "asset": "ETH",
  "amount": "0.1",
  "to": "0x3a5df03dd1a001d7055284c2c2c147cbbc78d142",
  "txHash": "0x789abc...",
  "explorerUrl": "https://basescan.org/tx/0x789abc..."
}