API Reference
DBot OfficialDBot DashboardPricing

跟随Dev卖出任务列表

此API用于获取用户的所有跟随Dev卖出任务

FreePlusProEnterprise积分消耗
0

响应数据

{
  "err": false, // 是否发生错误
  "res": [
    {
      "accountId": "vd1l2ge6ac1dxh", // 用户id
      "id": "n1v50h7hfkt0e1", // 跟随Dev卖出任务的id
      "enabled": true, // 任务启用状态,true/false
      "state": "init", // 订单状态,init:初始化,processing:进行中,done:已完成,fail:已失败,expired:已过期
      "chain": "solana", // 当前固定为"solana"
      "tradeType": "sell", // 当前固定为"sell"
      "minDevSellPercent": 0.5, // 触发比例 (0-1),当Dev卖出超过这个比例时卖出你的代币
      "amountOrPercent": 1, // 卖出比例 (0-1),0.5表示卖出50%
      "pair": "pair address", // pairType是"pump"时为pump代币地址,pairType是"raydium_amm"时为Pump官方创建的交易对地址
      "pairType": "pump", // 只支持Pump代币,若代币还未上Raydium,则为"pump",已上则为"raydium_amm"
      "walletId": "lus8auwp003zvg", // 使用的钱包的id,可通过“钱包信息 API”获取
      "walletType": "solana", // 钱包类型 (solana/evm)
      "walletAddress": "your wallet address", // 钱包地址
      "walletName": "your wallet name", // 钱包名称
      "customFeeAndTip": false, // "true"表示优先费 (priorityFee) 和贿赂费 (jitoTip) 两个字段均有效,"false"表示高速模式下只有优先费 (priorityFee) 有效,防夹模式下只有贿赂费 (jitoTip) 有效
      "priorityFee": null, // 优先费 (SOL),对Solana有效,空字符串表示使用自动优先费
      "jitoEnabled": true, // "true"表示启用防夹模式 (Solana & Ethereum & Bsc)
      "jitoTip": 0.001, // 防夹模式使用的贿赂费 (Solana)
      "maxSlippage": 0.1, // 最大滑点(0.00-1.00),卖出时表示期望价格和实际成交价格之间的差距
      "expireAt": 1731324301348, // 任务过期时间 (毫秒时间戳)
      "expireDelta": 36000000, // 任务有效时长,最大值为432000000 (毫秒)
      "concurrentNodes": 2, // 并发节点数(1-3)
      "retries": 1, // 失败后的重试次数(0-10)
      "errorCode": "", // 错误类型
      "errorMessage": "", // 错误信息
      "currencyInfo": { // 主币信息
        "contract": "So11111111111111111111111111111111111111112",
        "name": "Wrapped SOL",
        "symbol": "SOL",
        "decimals": 9,
        "totalSupply": null,
        "icon": "icon url",
        "createAt": null
      },
      "tokenInfo": { // 代币信息
        "contract": "CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump",
        "createAt": 1728554501806,
        "name": "token name",
        "symbol": "token symbol",
        "decimals": 6,
        "totalSupply": "1000000000000000",
        "icon": "icon url",
        "freezeAuthority": null,
        "mintAuthority": null
      },
      "links": { // 本次交易的相关链接
        "etherscan": "scan link",
        "dexscreener": "dexscreener link",
        "uniswap": "swap link"
      }
    }
  ]
}
Language