Skip to content

Commit 8d336f4

Browse files
Release 1.175.0 (packages/sources/hashnote)
1 parent da638ce commit 8d336f4

File tree

3 files changed

+61
-3
lines changed

3 files changed

+61
-3
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# @chainlink/hashnote-adapter
2+
3+
## 1.0.0
4+
5+
### Major Changes
6+
7+
- [#3913](https://github.com/smartcontractkit/external-adapters-js/pull/3913) [`72382d5`](https://github.com/smartcontractkit/external-adapters-js/commit/72382d56d93185861fcd1befa751847d3ee89fcc) Thanks [@dskloetc](https://github.com/dskloetc)! - Hashnote EA initial release

packages/sources/hashnote/README.md

Lines changed: 53 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,54 @@
1-
# Chainlink External Adapter for hashnote
1+
# HASHNOTE
22

3-
This README will be generated automatically when code is merged to `main`. If you would like to generate a preview of the README, please run `yarn generate:readme hashnote`.
3+
![1.0.0](https://img.shields.io/github/package-json/v/smartcontractkit/external-adapters-js?filename=packages/sources/hashnote/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+
| | USYC_API_ENDPOINT | URL for the USYC price report API | string | | `https://usyc.hashnote.com/api/price-reports` |
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 | | API only updates once per day |
20+
21+
---
22+
23+
## Input Parameters
24+
25+
| Required? | Name | Description | Type | Options | Default |
26+
| :-------: | :------: | :-----------------: | :----: | :----------------------: | :-----: |
27+
| | endpoint | The endpoint to use | string | [price](#price-endpoint) | `price` |
28+
29+
## Price Endpoint
30+
31+
`price` 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+
| | token | | The token to get the price report for. Currently only USYC is supported. | string | | `USYC` | | |
38+
39+
### Example
40+
41+
Request:
42+
43+
```json
44+
{
45+
"data": {
46+
"endpoint": "price",
47+
"token": "USYC"
48+
}
49+
}
50+
```
51+
52+
---
53+
54+
MIT License

packages/sources/hashnote/package.json

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

0 commit comments

Comments
 (0)