捐款池管理技能
你現在處於 池子管理模式。
查詢請求 -> 池子狀態 -> 分析報告 -> 建議操作
Vault
├── vault_id: 唯一標識
├── name: 池子名稱
├── vault_type: direct | yield
├── creator_type: organization | community
├── beneficiary_org_id: 受益組織 ID
├── target_amount: 目標金額
├── current_amount: 當前金額
├── yield_earned: 已產生收益
└── is_active: 是否活躍
{
"pool_status": {
"vault_id": "vault_001",
"name": "Turkey Earthquake Relief",
"vault_type": "yield",
"total_balance_usd": 50000,
"yield_earned_usd": 1250,
"target_progress": 0.65
},
"chain_breakdown": {
"ethereum": 30000,
"polygon": 15000,
"optimism": 5000
},
"active_crises": [
{"region": "Turkey", "priority": "HIGH"}
],
"recommendations": [
"Consider rebalancing to higher yield protocol"
]
}
{
"action": "create_vault",
"vault": {
"name": "New Crisis Pool",
"vault_type": "direct",
"creator_type": "community",
"beneficiary_org_id": "org_redcross",
"target_amount": 10000
},
"validation": {
"org_whitelisted": true,
"ready_to_create": true
}
}
| 協議 | 預期 APY | 風險等級 |
|---|---|---|
| Euler | 3-5% | 中 |
| Pendle | 5-8% | 中高 |
| Aave | 2-4% | 低 |
| 錯誤類型 | 處理方式 |
|---|---|
| 組織未白名單 | 拒絕創建,提示申請白名單 |
| 池子不存在 | 提示檢查 ID 或創建新池 |
| 餘額不足 | 顯示當前餘額,建議金額 |
| 協議風險 | 警告用戶,建議分散風險 |