b65827038f
- 添加 get-order-detail.js 脚本,用于获取 Polymarket 订单详情 - 添加 package.json 配置文件 - 忽略 package-lock.json (已在 .gitignore 中通过 node_modules/ 规则处理)
14 lines
303 B
JSON
14 lines
303 B
JSON
{
|
|
"name": "polyhermes-scripts",
|
|
"version": "1.0.0",
|
|
"description": "Utility scripts for Polyhermes",
|
|
"type": "module",
|
|
"scripts": {
|
|
"get-order-detail": "node get-order-detail.js"
|
|
},
|
|
"dependencies": {
|
|
"@ethersproject/wallet": "^5.7.0",
|
|
"@polymarket/clob-client": "^5.2.1"
|
|
}
|
|
}
|