创建订单

创建订单

API Method: Post

https://api.tronsave.io/v0/buy-energy

请求参数 (Request params):

Field
Position
Type
Required
Description

resource_type

body

string

true

"ENERGY"

unit_price

body

number

true

填写价格以Sun为单位

allow_partial_fill

body

boolean

true

允许订单部分匹配或整体匹配。

target_address

body

string

true

资源接收者的地址。

duration_millisec

body

number

true

购买资源的持续时间, 时间单位等于毫秒

tx_id

body

string

true

从第2步的已签名交易获取的交易ID

signed_tx

body

SignedTransaction

true

请求参数示例 (Request params example):

{
    "resource_type": "ENERGY",
    "unit_price": 45,
    "allow_partial_fill": true,
    "target_address": "TM6ZeEgpefyGWeMLuzSbfqTGkPv8Z6Jm4X",
    "duration_millisec": 259200000,
    "tx_id": "446eed36e31249b98b201db2e81a3825b185f1a3d8b2fea348b24fc021e58e0d",
    "signed_tx": {
      "visible": false,
      "txID": "446eed36e31249b98b201db2e81a3825b185f1a3d8b2fea348b24fc021e58e0d",
      "raw_data": {
        "contract": [
          {
            "parameter": {
              "value": {
                "amount": 13500000,
                "owner_address": "417a0d868d1418c9038584af1252f85d486502eec0",
                "to_address": "41055756f33f419278d9ea059bd2b21120e6add748"
              },
              "type_url": "type.googleapis.com/protocol.TransferContract"
            },
            "type": "TransferContract"
          }
        ],
        "ref_block_bytes": "0713",
        "ref_block_hash": "6c5f7686f4176139",
        "expiration": 1691465106000,
        "timestamp": 1691465046758
      },
      "raw_data_hex": "0a02071322086c5f7686f417613940d084b5999d315a68080112640a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412330a15417a0d868d1418c9038584af1252f85d486502eec0121541055756f33f419278d9ea059bd2b21120e6add74818e0fcb70670e6b5b1999d31",
      "signature": ["xxxxxxxxx"]
    }
}

回应 (Responses):

{
    "message": "651d2306e55c073f6ca0992e" //order_id
}

Last updated