Get Internal Account Order History
Get order history by API key
Query Parameters
Name
Type
Description
{
data:{
id: string, // id of order
requester: string, // the address represents for order owner
target: string, // the address that is received resource
resource_amount: number, // the amount of resource
resource_type: string, // the amount type is "ENERGY"
remain_amount: number, // the remaining amount can matching by the system
price: number, // price unit is equal to sun
duration: number, // rent duration, duration unit is equal to second
allow_partial_fill: boolean, //Allow the order to be filled partially or not
payout_amount: number, // Total payout of this order
fulfilled_percent: number, //The percent that shows filling processing. 0-100
matched_delegates:{ //All matched delegate for this order
delegator: string // The address that delegates resources for the target address
amount: number //The amount of resource was delegated
txid: number // The transaction id in on-chain
}[]
} [],
total:number
}Last updated