feat: Implement contract checkout payment service and account management UI.

This commit is contained in:
2569718930@qq.com
2026-03-13 07:31:47 +08:00
parent 54c4a26162
commit 31ee147734
13 changed files with 613 additions and 438 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ PAYMENT_CONTRACT_ABI = [
]
DEFAULT_PLAN_CATALOG: Dict[str, Dict[str, Any]] = {
"pro_monthly": {"plan_id": 101, "amount_usdc": "29", "duration_days": 30},
"pro_monthly": {"plan_id": 101, "amount_usdc": "5", "duration_days": 30},
"pro_quarterly": {"plan_id": 102, "amount_usdc": "79", "duration_days": 90},
"pro_yearly": {"plan_id": 103, "amount_usdc": "279", "duration_days": 365},
}