Skip to content

Commit

Permalink
Release/v1.59.0 (#2523)
Browse files Browse the repository at this point in the history
* Release v1.58.0

* add tradermade-test v3 ea (#2431)

* initial commit

* upadte ea framework version, add test for ws forex endpoint

* update ea framework version, minor changes

* fix live endpoint inputparam alias

* change live to AdapterEndpoint

* update ea framework version

* change routing transport keys

* add validation of missing websocket key

---------

Co-authored-by: amit-momin <108959691+amit-momin@users.noreply.github.com>

* refactor cryptocompare-test (#2460)

* change batchtransport to httptransport

* refactor integration tests

* fix e2e and changeset

* change error messages, RequestBody type

* add vwap endpoint

* update ea framework version

* add limit for query params

* regenerate test snapshots

* update changeset

* update ea framework version

* refactor error handling of ws transport

* refactor crypto endpoints

* fix typo

---------

Co-authored-by: amit-momin <108959691+amit-momin@users.noreply.github.com>

* Release v1.58.0 (#2510)

Co-authored-by: Jonas Hals <jonas@smartcontract.com>

* Add crypto alias for coinmetrics (#2508)

* Implement Alongside EA (#2502)

* add initial ea v3 configuration

* add crypto-js dependency

* add alongside ea v3

* add changeset

* rename adapter, reorganize folder structure, add missing collateral calculation

* fix pr comments

* fix minnor pipeline errors

* fix pr comments

* add alongside integration test

* add npmAlwaysAuth in yarncml

* fix integration test problem

* fix pr comments

* add response cache write

* Update yarn sdks (#2478)

* Add new Two Sigma EA (#2463)

* Add new Two Sigma adapter

* changeset

* Fmt fix

* Export adapter variable

* Refactor to use WebSocketTransport subclass

* Remove ws and console.log stmt

* Upgrade @chainlink/external-adapter-framework

* Add conn closed check

* Upgrade EA framework to 0.23.2

* Update yarn sdks

* Fix missing await

* Add changesets

* Add missing types

* Add changeset

* Remove v1 from changelog

* Add readme

* Simpler ws conn close check

* Fix tests

* Fix lint error

* Add 'stock' endpoint alias

---------

Co-authored-by: Austin Born <austinborn212@gmail.com>

* Fix/cmc reth override (#2511)

* DAR Cache age update (#2501)

* Feature/update fluent finance endpoint (#2514)

* Updated Fluent Finance API endpoint

* Updated fluent-finance default endpoint

---------

Co-authored-by: cl-ea <93770670+cl-ea@users.noreply.github.com>

* Feature/moonbeam address and polkadot balance adapters (#2504)

* Created Moonbeam address list adapter

* Created Polkadot balance adapter, added configs, added changeset

* Updated proof-of-reserves EA for new moonbeam/polkadot EAs

* Added changeset

* Fixed address validator logic

* Updated jest config to ignore @PolkaDot libraries

* Fixed linting issue

* Fixed moonbeam-address-list test

* Addressed PR suggestions

* Removed unneeded cache initialization

* Batched request firing

* Update Alongside to allow generic rpc provider (#2517)

* Updated env vars to allow generic rpc provider

* Fixed integration test

* Release v1.59.0

---------

Co-authored-by: Jonas Hals <jonas@smartcontract.com>
Co-authored-by: Alejo Berardino <alejoberardino@gmail.com>
Co-authored-by: karen-stepanyan <91897037+karen-stepanyan@users.noreply.github.com>
Co-authored-by: Austin Born <austinborn212@gmail.com>
Co-authored-by: AndrN <andre.neyra@gmail.com>
Co-authored-by: martin-cll <121895364+martin-cll@users.noreply.github.com>
Co-authored-by: cl-ea <93770670+cl-ea@users.noreply.github.com>
  • Loading branch information
8 people authored Mar 1, 2023
1 parent 2bcd794 commit 9efd269
Show file tree
Hide file tree
Showing 95 changed files with 144 additions and 16,377 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chainlink/external-adapters-js",
"version": "1.58.0",
"version": "1.59.0",
"license": "MIT",
"private": true,
"workspaces": [
Expand Down
99 changes: 2 additions & 97 deletions packages/sources/1forge/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,69 +42,7 @@ Supported names for this endpoint are: `forex`, `price`, `quotes`.

### Example

Request:

```json
{
"id": "1",
"data": {
"base": "USD",
"quote": "EUR",
"endpoint": "quotes"
},
"debug": {
"cacheKey": "7bgmviEbqyIiUCIfawMxKPrtU7Y=",
"batchCacheKey": "sd6ZPVkDqkZ6Jd06Y/63s1xaO58=",
"batchChildrenCacheKeys": [
[
"7bgmviEbqyIiUCIfawMxKPrtU7Y=",
{
"id": "1",
"data": {
"base": "USD",
"quote": "EUR",
"endpoint": "quotes"
}
}
]
]
},
"rateLimitMaxAge": 38400
}
```

Response:

```json
{
"jobRunID": "1",
"data": {
"payload": [
{
"p": 0.8828,
"a": 0.8828,
"b": 0.8827,
"s": "USD/EUR",
"t": 1641851954307
}
],
"result": 0.8828
},
"result": 0.8828,
"statusCode": 200,
"debug": {
"batchablePropertyPath": [
{
"name": "base"
},
{
"name": "quote"
}
]
},
"providerStatusCode": 200
}
```
There are no examples for this endpoint.

---

Expand All @@ -124,40 +62,7 @@ Response:

### Example

Request:

```json
{
"id": "1",
"data": {
"base": "USD",
"quote": "EUR",
"quantity": 1,
"endpoint": "convert"
},
"debug": {
"cacheKey": "EbMPGiWl2oE1AmSzqMaVAMCtj3I="
},
"rateLimitMaxAge": 19200
}
```

Response:

```json
{
"jobRunID": "1",
"data": {
"value": "0.862701",
"text": "1 USD is worth 0.862701 EUR",
"timestamp": 1636478097478,
"result": 0.862701
},
"result": 0.862701,
"statusCode": 200,
"providerStatusCode": 200
}
```
There are no examples for this endpoint.

---

Expand Down
Loading

0 comments on commit 9efd269

Please sign in to comment.