1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-26 19:49:26 +01:00

use orders instead of consumes

This commit is contained in:
Alex Coseru 2022-02-10 13:25:19 +02:00 committed by GitHub
parent 3b556c550d
commit 200feac918
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -570,14 +570,14 @@ The `stats` section contains different statistics fields.
| Attribute | Type | Description | | Attribute | Type | Description |
| -------------- | -------- | ------------------------------------------------------------------------------------------------------------- | | -------------- | -------- | ------------------------------------------------------------------------------------------------------------- |
| **`consumes`** | `number` | How often an asset was consumed, meaning how often it was either downloaded or used as part of a compute job. | | **`orders`** | `number` | How often an asset was ordered, meaning how often it was either downloaded or used as part of a compute job. |
Example: Example:
```json ```json
{ {
"stats": { "stats": {
"consumes": 4 "orders": 4
} }
} }
``` ```
@ -693,7 +693,7 @@ Example:
}, },
"stats": { "stats": {
"consumes": 4 "orders": 4
} }
} }
``` ```