Get history
Link API Postman
History
Name
Type
Description
Name
Type
Description
{
"total": number,
"results": [
{
"_id": string, // id of order
"receiver": string, // the address that is received resource
"resource_type": string, // the amount type is "ENERGY",
"amount": number, // the amount of resource
"options": {
"deadline": number, //Maximum matching time in seconds. Exceeding it cancels the order and refunds.
"max_price_accept": number, //Only create an order when the estimated price is less than this value.
},
"charge_amount": number, // Total payout estimated of this order
"status": string, // status of this order
"requester": string, // the address represents for order owner
"unit_price": number, // price unit is equal to sun
"is_matched": boolean, // matched status of this order
"charge_duration_sec": number, // rent duration, duration unit is equal to second
"delegate_amount_in_sun": number //The amount of resource was delegated
"delegate_txid": string, //on-chain delegate transaction
"delegator": string, // The address that delegates resource for the target address
"paid_amount_actual": number, //Actual amount TRX to be paid for this order
"repay_amount": number, //The refunded amount is directly added to the internal account.
....
}
]
}Last updated