Skip to content

Commit ce4dd35

Browse files
Release 1.340.0 (#4986)
Co-authored-by: app-token-issuer-data-feeds[bot] <134377064+app-token-issuer-data-feeds[bot]@users.noreply.github.com>
1 parent f2ee004 commit ce4dd35

11 files changed

Lines changed: 263 additions & 224 deletions

.changeset/chilly-buses-start.md

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

.changeset/clean-stars-arrive.md

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

.changeset/rare-horses-cheer.md

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

.changeset/seven-wombats-double.md

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

.changeset/tangy-rules-kiss.md

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

.changeset/tidy-apples-repair.md

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

MASTERLIST.md

Lines changed: 190 additions & 190 deletions
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.339.0",
3+
"version": "1.340.0",
44
"license": "MIT",
55
"private": true,
66
"workspaces": [
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# @chainlink/lo-tech-adapter
2+
3+
## 1.0.0
4+
5+
### Major Changes
6+
7+
- [#4983](https://github.com/smartcontractkit/external-adapters-js/pull/4983) [`b17eb9f`](https://github.com/smartcontractkit/external-adapters-js/commit/b17eb9f3925cb13545f94205eb40aa8cfa5d2e3b) Thanks [@dskloetc](https://github.com/dskloetc)! - Use different websockets for different regions
8+
9+
- [#4975](https://github.com/smartcontractkit/external-adapters-js/pull/4975) [`cfe4b6a`](https://github.com/smartcontractkit/external-adapters-js/commit/cfe4b6a0afef522d10bd33414ac919337bce738b) Thanks [@dskloetc](https://github.com/dskloetc)! - Initial code
10+
11+
### Patch Changes
12+
13+
- [#4985](https://github.com/smartcontractkit/external-adapters-js/pull/4985) [`f2ee004`](https://github.com/smartcontractkit/external-adapters-js/commit/f2ee0042c5ff9e1c004ea8f586e435e594b26268) Thanks [@dskloetc](https://github.com/dskloetc)! - Update framework dependency
14+
15+
- [#4984](https://github.com/smartcontractkit/external-adapters-js/pull/4984) [`5d942d9`](https://github.com/smartcontractkit/external-adapters-js/commit/5d942d9bda8c1dae591bd3b113af8cc7d1f65be2) Thanks [@dskloetc](https://github.com/dskloetc)! - Add zero volume and human readable ingress time
16+
17+
- [#4978](https://github.com/smartcontractkit/external-adapters-js/pull/4978) [`44fc361`](https://github.com/smartcontractkit/external-adapters-js/commit/44fc361ee8c0a5590783573c1117328fdd43985f) Thanks [@dskloetc](https://github.com/dskloetc)! - Add unit test for StockQuotesWebSocketTransport
18+
19+
- [#4982](https://github.com/smartcontractkit/external-adapters-js/pull/4982) [`ce5ff45`](https://github.com/smartcontractkit/external-adapters-js/commit/ce5ff453ad3519582c8a7c55c0501a66fb5aaa43) Thanks [@dskloetc](https://github.com/dskloetc)! - Send keep-alive ping on heartbeat

packages/sources/lo-tech/README.md

Lines changed: 52 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,53 @@
1-
# Chainlink External Adapter for lo-tech
1+
# LO_TECH
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 lo-tech`.
3+
![1.0.0](https://img.shields.io/github/package-json/v/smartcontractkit/external-adapters-js?filename=packages/sources/lo-tech/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+
|| ${REGION}\_API_KEY | Lo-Tech API key for the given ${REGION}. Region can be "US" or "ASIA" | string | | |
12+
|| ${REGION}\_WS_API_ENDPOINT | Lo-Tech websocket endpoint for the given ${REGION}. Region can be "US" or "ASIA" | string | | |
13+
14+
---
15+
16+
## Data Provider Rate Limits
17+
18+
There are no rate limits for this adapter.
19+
20+
---
21+
22+
## Input Parameters
23+
24+
| Required? | Name | Description | Type | Options | Default |
25+
| :-------: | :------: | :-----------------: | :----: | :------------------------------------: | :------------: |
26+
| | endpoint | The endpoint to use | string | [stock_quotes](#stock_quotes-endpoint) | `stock_quotes` |
27+
28+
## Stock_quotes Endpoint
29+
30+
`stock_quotes` is the only supported name for this endpoint.
31+
32+
### Input Params
33+
34+
| Required? | Name | Aliases | Description | Type | Options | Default | Depends On | Not Valid With |
35+
| :-------: | :--: | :-----------------------------------------: | :-----------------------: | :----: | :-----: | :-----: | :--------: | :------------: |
36+
|| base | `asset`, `coin`, `from`, `symbol`, `ticker` | The stock ticker to query | string | | | | |
37+
38+
### Example
39+
40+
Request:
41+
42+
```json
43+
{
44+
"data": {
45+
"endpoint": "stock_quotes",
46+
"base": "9988-HKD:SPOT"
47+
}
48+
}
49+
```
50+
51+
---
52+
53+
MIT License

0 commit comments

Comments
 (0)