create_manual_crypto
Add a manually tracked cryptocurrency to Lunch Money by specifying its name, symbol, and balance. Use this to record crypto holdings that are not automatically synced, such as cold wallet assets.
Instructions
Create a manually-managed crypto asset. The symbol must match one returned by get_supported_cryptocurrencies.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | User-defined name for the manual crypto asset, e.g. 'Cold Wallet BTC'. | |
| symbol | Yes | Cryptocurrency symbol to track, e.g. 'btc'. Must match a symbol from get_supported_cryptocurrencies. | |
| balance | Yes | Balance as a numeric string with up to 18 decimal places, e.g. '0.852341920145782301'. Pass a string to avoid losing precision. | |
| display_name | No | Optional display name. If omitted, clients may derive one from institution_name and name. | |
| institution_name | No | Optional institution or wallet provider display name, e.g. 'Ledger'. |