Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.formo.so/llms.txt

Use this file to discover all available pages before exploring further.

The formo import command group lets you bulk import wallet addresses into your project.
Requires profiles:write scope on your API key. Only available on Scale and Enterprise plans.

formo import wallets

Bulk import wallet addresses into the project.

Options

OptionTypeRequiredDescription
--addressesstringJSON array of wallet address strings to import
--write-keystringProject write SDK key

Examples

# Import two wallet addresses
formo import wallets \
  --addresses '["0xabc123...","0xdef456..."]' \
  --write-key write_key_xxx

# Import a list of addresses from a file (using jq)
formo import wallets \
  --addresses "$(cat wallets.json)" \
  --write-key write_key_xxx

Tips

  • The --addresses value must be a valid JSON array of strings.
  • Each string should be a valid wallet address (e.g. 0x…).
  • Use this command to backfill historical wallet addresses into your Formo project.