| name | export-tempo |
| description | Export funds with a Tempo export key (access key) to a recipient address. Use when asked to export, withdraw, or sweep tokens from Tempo. |
export-tempo
CLI tool and programmatic API for exporting authorized funds from a Tempo access key.
Dryrun (default)
Shows the root account, fee token, and per-token balances/limits for an access key. Outputs a session blob that can be reused with --session to skip re-discovery.
export-tempo <exportKey> --to 0x...
The exportKey is either:
<privateKey> — walks onchain logs to find the root account and key type.
<privateKey>:<signedKeyAuth> — includes the RLP-encoded signed key authorization inline (avoids onchain lookups).
Execute (with --confirm)
Discovers tokens, then transfers min(remainingLimit, balance) for each token to the recipient in a single batched transaction.
export-tempo <exportKey> --to 0x... --confirm
Execute with session (skips dryrun)
Pass a session blob from a previous dryrun to skip the dryrun step entirely.
export-tempo <exportKey> --to 0x... --confirm --session <blob>
Flags
| Flag | Required | Description |
|---|
<exportKey> | Yes (positional) | Access key private key, optionally with signed key auth. |
--to | Yes | Recipient address. |
|