Skip to content

Commit ea1cf0f

Browse files
authored
Merge branch 'main' into s
2 parents ef81440 + 7f31a53 commit ea1cf0f

File tree

7 files changed

+66
-8
lines changed

7 files changed

+66
-8
lines changed

.changeset/thirty-ducks-wait.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

MASTERLIST.md

Lines changed: 2 additions & 1 deletion
Large diffs are not rendered by default.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chainlink/external-adapters-js",
3-
"version": "1.224.0",
3+
"version": "1.225.0",
44
"license": "MIT",
55
"private": true,
66
"workspaces": [

packages/sources/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ This document was generated automatically. Please see [Master List Generator](..
118118
- [lido-por](./lido-por/README.md)
119119
- [linkpool](./linkpool/README.md)
120120
- [lition](./lition/README.md)
121+
- [liveart](./liveart/README.md)
121122
- [lotus](./lotus/README.md)
122123
- [m0](./m0/README.md)
123124
- [messari](./messari/README.md)
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# @chainlink/liveart-adapter
2+
3+
## 1.0.0
4+
5+
### Major Changes
6+
7+
- [#4018](https://github.com/smartcontractkit/external-adapters-js/pull/4018) [`5fb38df`](https://github.com/smartcontractkit/external-adapters-js/commit/5fb38dfffb7c41b1c6a1835406e0a8b87b2330ad) Thanks [@markhoangcll](https://github.com/markhoangcll)! - LiveArt EA initial release

packages/sources/liveart/README.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# LIVE_ART
2+
3+
![1.0.0](https://img.shields.io/github/package-json/v/smartcontractkit/external-adapters-js?filename=packages/sources/liveart/package.json) ![v3](https://img.shields.io/badge/framework%20version-v3-blueviolet)
4+
5+
This document was generated automatically. Please see [README Generator](../../scripts#readme-generator) for more info.
6+
7+
## Environment Variables
8+
9+
| Required? | Name | Description | Type | Options | Default |
10+
| :-------: | :----------: | :---------------------------------------: | :----: | :-----: | :----------------------------------------------: |
11+
|| API_BASE_URL | The API URL for the LiveArt data provider | string | | `https://artwork-price-oracle-api-ms.liveart.ai` |
12+
13+
---
14+
15+
## Data Provider Rate Limits
16+
17+
| Name | Requests/credits per second | Requests/credits per minute | Requests/credits per hour | Note |
18+
| :-----: | :-------------------------: | :-------------------------: | :-----------------------: | :-------------------------------: |
19+
| default | 1 | | | Setting reasonable default limits |
20+
21+
---
22+
23+
## Input Parameters
24+
25+
| Required? | Name | Description | Type | Options | Default |
26+
| :-------: | :------: | :-----------------: | :----: | :------------------: | :-----: |
27+
| | endpoint | The endpoint to use | string | [nav](#nav-endpoint) | `nav` |
28+
29+
## Nav Endpoint
30+
31+
`nav` is the only supported name for this endpoint.
32+
33+
### Input Params
34+
35+
| Required? | Name | Aliases | Description | Type | Options | Default | Depends On | Not Valid With |
36+
| :-------: | :-----: | :-----: | :----------------------------------: | :----: | :-----: | :-----: | :--------: | :------------: |
37+
|| assetId | | The ID of the artwork asset to fetch | string | | | | |
38+
39+
### Example
40+
41+
Request:
42+
43+
```json
44+
{
45+
"data": {
46+
"endpoint": "nav",
47+
"assetId": "KUSPUM"
48+
}
49+
}
50+
```
51+
52+
---
53+
54+
MIT License

packages/sources/liveart/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chainlink/liveart-adapter",
3-
"version": "0.0.0",
3+
"version": "1.0.0",
44
"description": "Chainlink liveart adapter.",
55
"keywords": [
66
"Chainlink",

0 commit comments

Comments
 (0)