Hyperliquid Get Transfer History
Get non-funding ledger updates for a Hyperliquid account: deposits, withdrawals, USD sends, vault operations, liquidations, spot transfers, and rewards claims. Enriches send-type entries with directional labels (Received/Sent). Ideal for: transfer tracking, deposit verification, wallet activity monitoring.
目录操作 Hyperliquid 钱包
获取 Hyperliquid 账户的非资金账本更新:存款、取款、USD 发送、金库操作、清算、現货转账以及奖励领取。为发送类型条目添加方向标签(收到/发送)。适用于:转账跟踪、存款验证、钱包活动监控。
概览
| 字段 | 值 |
|---|---|
| 操作 ID | hyperliquid-get-transfer-history |
| 类别 | Hyperliquid |
| 连接器 | wallet |
| 需要 gas | 否 |
| 资金流动 | 未声明 |
| 标签 | hyperliquid, perps, transfer, history, deposit, withdraw |
Payload 模式
| 字段 | 类型 | 必需 | 描述 |
|---|---|---|---|
startTime | number | 否 | Unix 时间戳(毫秒)。仅返回此时间之后的转账。默认为 30 天前。 |
endTime | number | 否 | Unix 时间戳(毫秒)。转账的上限。当前省略。 |
limit | number | 否 | 排序后(最新优先)返回的最大条目数。默认为 500,硬上限 2000。 |
结果模式
| 字段 | 类型 | 必需 | 描述 |
|---|---|---|---|
transfers | array | 是 | 按时间排序的账本条目(最新优先),受 limit 限制 |
示例
json{ "type": "hyperliquid-get-transfer-history", "payload": { "startTime": 1, "endTime": 1, "limit": 1 }, "children": [], "connector": { "type": "wallet", "id": "conn_wallet" }}
bashcurl -X POST "https://api.b3os.org/v1/actions/hyperliquid-get-transfer-history/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "startTime": 1, "endTime": 1, "limit": 1 }}'
负载字段可以使用工作流表达式,例如 {{$trigger.body.amount}}、{{$nodes.fetch.result.price}} 和 {{$props.asset}},当值应来自触发器、先前节点或可重用工作流属性时。
