addedInput schema / properties / allowPartialFill / description
Added value: +"Allow partial fill of the order."
addedInput schema / properties / buyResourceAmount / description
Added value: +"Amount of resource to buy."
removedInput schema / properties / buyResourceAmount / exclusiveMinimum
Removed value: -0
addedInput schema / properties / durationSec / description
Added value: +"Duration of the order in seconds. Default 3 days"
removedInput schema / properties / durationSec / exclusiveMinimum
Removed value: -0
changedInput schema / properties / minResourceDelegateRequiredAmount / description
Previous value: -"Optional floor for partial-fill matching (GraphQL Float)."New value: +"Minimum amount of resource to delegate."
addedInput schema / properties / receiver / description
Added value: +"receiver address."
removedInput schema / properties / receiver / minLength
Removed value: -1
addedInput schema / properties / resourceType
Added value: +{
+ "default": "ENERGY",
+ "description": "Resource type to buy. Default ENERGY",
+ "enum": [
+ "ENERGY",
+ "BANDWIDTH"
+ ],
+ "type": "string"
+}
addedInput schema / properties / unitPrice / description
Added value: +"Unit price of the resource to buy."
removedInput schema / properties / unitPrice / exclusiveMinimum
Removed value: -0
changedInput schema / required
Previous value: -[
- "receiver",
- "buyResourceAmount",
- "unitPrice",
- "durationSec",
- "allowPartialFill"
-]New value: +[
+ "buyResourceAmount"
+]
addedOutput schema / properties / availableResource
Added value: +{
+ "description": "Available resource amount",
+ "type": "number"
+}
addedOutput schema / properties / durationSec
Added value: +{
+ "description": "Delegated duration in seconds",
+ "type": "number"
+}
removedOutput schema / properties / estimate
Removed value: -{
- "additionalProperties": false,
- "properties": {
- "availableResource": {
- "type": "number"
- },
- "buyResourcePrice": {
- "type": "number"
- },
- "discountPercent": {
- "type": "number"
- },
- "maxAvailableResource": {
- "type": "number"
- },
- "minResourcePrice": {
- "type": "number"
- },
- "totalEstimateResource": {
- "type": "number"
- }
- },
- "required": [
- "totalEstimateResource",
- "availableResource",
- "maxAvailableResource",
- "discountPercent",
- "buyResourcePrice",
- "minResourcePrice"
- ],
- "type": "object"
-}
addedOutput schema / properties / estimateTrx
Added value: +{
+ "description": "Estimated TRX cost in SUN",
+ "type": "number"
+}
removedOutput schema / properties / systemDepositAddress
Removed value: -{
- "minLength": 1,
- "type": "string"
-}
addedOutput schema / properties / unitPrice
Added value: +{
+ "description": "Unit price in SUN",
+ "type": "number"
+}
changedOutput schema / required
Previous value: -[
- "estimate",
- "systemDepositAddress"
-]New value: +[
+ "unitPrice",
+ "durationSec",
+ "estimateTrx",
+ "availableResource"
+]