share_strategy
Generate an anonymized JSON snapshot of your portfolio structure—protocol, asset, and percentage—with no addresses or values, to share your strategy with other VaultPilot users.
Instructions
Generate a shareable, anonymized JSON snapshot of the user's portfolio STRUCTURE — protocol + asset + percentage of total — with NO addresses, NO absolute USD values, NO transaction hashes. Use this when the user wants to share their setup ("here's my Solana yield-farming strategy") with another VaultPilot user. Pass at least one of wallet / tronAddress / solanaAddress / bitcoinAddress / litecoinAddress, plus a name and optional description / authorLabel / riskProfile. The recipient pastes the returned jsonString into their own VaultPilot via import_strategy for read-only inspection. v1 emits JSON only; URL hosting is deferred to v2 (depends on hosted-MCP infra). Privacy guard: a regex scan runs on the output before emit and refuses (RedactionError) if any EVM 0x address, TRON T-address, Solana base58 pubkey, 64-hex tx hash, or Solana signature is detected anywhere in the JSON — including in user-supplied free-form fields. Percentages are rounded to 1 decimal to avoid wallet-fingerprint leakage. The strategy describes structure only; recipients cannot replicate amounts or addresses. Read-only — no signing, no broadcast.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| wallet | No | EVM wallet whose positions feed the strategy structure. At least one of `wallet` / `tronAddress` / `solanaAddress` / `bitcoinAddress` / `litecoinAddress` is required. | |
| tronAddress | No | TRON mainnet base58 address (T-prefix). | |
| solanaAddress | No | Solana mainnet base58 pubkey. | |
| bitcoinAddress | No | Bitcoin mainnet address (any of legacy/p2sh-segwit/bech32/bech32m). | |
| litecoinAddress | No | Litecoin mainnet address (any of legacy/p2sh/p2sh-segwit/bech32). | |
| name | Yes | Short human-readable strategy name. e.g. 'stable yield with mild leverage'. | |
| description | No | Optional longer description. Free-form; redaction scan applies. | |
| authorLabel | No | Optional author handle / label. Omit for an anonymous strategy (no identifier emitted). | |
| riskProfile | No | Self-declared risk profile. Free-form metadata for the recipient — we don't compute or validate it. |