leapcat-ipo
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseLeapCat IPO Subscription Skill
LeapCat IPO 申购Skill
Browse, estimate, subscribe to, and manage IPO (Initial Public Offering) project subscriptions using the leapcat.
使用leapcat浏览、估算、订阅和管理IPO(首次公开募股)项目的申购。
Prerequisites
前置要求
- Node.js 18+ is required (commands use which auto-downloads the CLI)
npx leapcat@latest - User must be authenticated — run first
npx leapcat@latest auth login --email <email> - KYC must be completed and approved (should return
kyc status)APPROVED - Trade password must be set (should confirm it is set)
auth trade-password status
- 需要Node.js 18+版本(命令使用会自动下载CLI)
npx leapcat@latest - 用户必须完成身份验证——请先运行
npx leapcat@latest auth login --email <email> - 必须完成KYC并通过审核(返回结果应为
kyc status)APPROVED - 必须设置交易密码(应确认已完成设置)
auth trade-password status
Commands
命令
ipo projects
ipo projects
List all available IPO projects.
bash
npx leapcat@latest ipo projects --json列出所有可用的IPO项目。
bash
npx leapcat@latest ipo projects --jsonipo project
ipo project
Get detailed information about a specific IPO project.
bash
npx leapcat@latest ipo project --id <project-id> --jsonParameters:
- — The IPO project identifier
--id <project-id>
获取指定IPO项目的详细信息。
bash
npx leapcat@latest ipo project --id <project-id> --json参数:
- — IPO项目标识符
--id <project-id>
ipo estimate
ipo estimate
Estimate the cost of subscribing to an IPO with a given quantity.
bash
npx leapcat@latest ipo estimate --id <project-id> --quantity <shares> --jsonParameters:
- — The IPO project identifier
--id <project-id> - — Number of shares to subscribe for
--quantity <shares>
估算申购指定数量的IPO所需的成本。
bash
npx leapcat@latest ipo estimate --id <project-id> --quantity <shares> --json参数:
- — IPO项目标识符
--id <project-id> - — 要申购的股份数量
--quantity <shares>
ipo subscribe
ipo subscribe
Submit an IPO subscription order.
bash
npx leapcat@latest ipo subscribe --id <project-id> --quantity <shares> --jsonParameters:
- — The IPO project identifier
--id <project-id> - — Number of shares to subscribe for
--quantity <shares>
提交IPO申购订单。
bash
npx leapcat@latest ipo subscribe --id <project-id> --quantity <shares> --json参数:
- — IPO项目标识符
--id <project-id> - — 要申购的股份数量
--quantity <shares>
ipo cancel
ipo cancel
Cancel a pending IPO subscription.
bash
npx leapcat@latest ipo cancel --subscription-id <id> --jsonParameters:
- — The subscription identifier to cancel
--subscription-id <id>
取消待处理的IPO申购。
bash
npx leapcat@latest ipo cancel --subscription-id <id> --json参数:
- — 要取消的申购标识符
--subscription-id <id>
ipo subscriptions
ipo subscriptions
List all of the user's IPO subscriptions.
bash
npx leapcat@latest ipo subscriptions --json列出用户所有的IPO申购记录。
bash
npx leapcat@latest ipo subscriptions --jsonipo subscription
ipo subscription
Get details of a specific IPO subscription.
bash
npx leapcat@latest ipo subscription --subscription-id <id> --jsonParameters:
- — The subscription identifier
--subscription-id <id>
获取指定IPO申购的详情。
bash
npx leapcat@latest ipo subscription --subscription-id <id> --json参数:
- — 申购标识符
--subscription-id <id>
Workflow
使用流程
- List IPO projects — Run to see all available IPOs.
ipo projects --json - Get project details — Run to review terms, pricing, and deadlines.
ipo project --id <id> --json - Estimate cost — Run to see the total cost before committing.
ipo estimate --id <id> --quantity <shares> --json - Subscribe — Run to place the subscription. The user may be prompted for their trade password.
ipo subscribe --id <id> --quantity <shares> --json - Check subscription status — Run or
ipo subscription --subscription-id <id> --jsonto monitor the result.ipo subscriptions --json - Cancel if needed — Run to cancel a pending subscription (only before the subscription deadline).
ipo cancel --subscription-id <id> --json
- 列出IPO项目 — 运行查看所有可用的IPO。
ipo projects --json - 获取项目详情 — 运行查看条款、定价和截止日期。
ipo project --id <id> --json - 估算成本 — 提交申购前运行查看总费用。
ipo estimate --id <id> --quantity <shares> --json - 提交申购 — 运行提交申购订单,可能会提示用户输入交易密码。
ipo subscribe --id <id> --quantity <shares> --json - 查看申购状态 — 运行或
ipo subscription --subscription-id <id> --json跟踪申购结果。ipo subscriptions --json - 按需取消 — 运行取消待处理的申购(仅可在申购截止日期前操作)。
ipo cancel --subscription-id <id> --json
Error Handling
错误处理
| Error | Cause | Resolution |
|---|---|---|
| Session expired | Re-authenticate with |
| KYC verification incomplete | Complete the KYC flow first |
| Trade password required | Set trade password via |
| Not enough funds to cover subscription | Deposit funds via |
| Invalid project ID | Re-check with |
| IPO subscription period has ended | No action possible — deadline has passed |
| Subscription cannot be cancelled at this stage | Check subscription status for details |
| 错误码 | 原因 | 解决方法 |
|---|---|---|
| 会话过期 | 使用 |
| KYC验证未通过 | 先完成KYC认证流程 |
| 未设置交易密码 | 通过 |
| 余额不足,无法支付申购费用 | 通过 |
| 无效的项目ID | 通过 |
| IPO申购期已结束 | 已过截止日期,无法操作 |
| 当前阶段无法取消申购 | 查看申购状态了解详情 |