Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/big-parrots-join.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/chatty-news-complain.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/chilled-geckos-design.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/chilly-ears-appear.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cool-crabs-clap.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/grumpy-buses-try.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/light-suns-appear.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/polite-elephants-punch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slow-pandas-cross.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wild-kids-notice.md

This file was deleted.

15 changes: 7 additions & 8 deletions MASTERLIST.md

Large diffs are not rendered by default.

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.193.0",
"version": "1.194.0",
"license": "MIT",
"private": true,
"workspaces": [
Expand Down
2 changes: 1 addition & 1 deletion packages/composites/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,14 @@ docker run -p 8080:8080 --env-file="~/PATH_TO_ENV" -it proof-of-reserves-adapter
- [curve-3pool](./curve-3pool/README.md)
- [defi-dozen](./defi-dozen/README.md)
- [defi-pulse](./defi-pulse/README.md)
- [dns-record-check](./dns-record-check/README.md)
- [dxdao](./dxdao/README.md)
- [glv-token](./glv-token/README.md)
- [gm-token](./gm-token/README.md)
- [google-weather](./google-weather/README.md)
- [historical-average](./historical-average/README.md)
- [implied-price](./implied-price/README.md)
- [linear-finance](./linear-finance/README.md)
- [llama-guard](./llama-guard/README.md)
- [market-closure](./market-closure/README.md)
- [market-status](./market-status/README.md)
- [medianizer](./medianizer/README.md)
Expand Down
11 changes: 11 additions & 0 deletions packages/composites/llama-guard/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# @chainlink/llama-guard-adapter

## 1.0.0

### Major Changes

- [#4031](https://github.com/smartcontractkit/external-adapters-js/pull/4031) [`6a2e30b`](https://github.com/smartcontractkit/external-adapters-js/commit/6a2e30b6993fd04b2e7d10392707443ee640fd2c) Thanks [@mxiao-cll](https://github.com/mxiao-cll)! - Init EA

### Patch Changes

- [#4034](https://github.com/smartcontractkit/external-adapters-js/pull/4034) [`fa12777`](https://github.com/smartcontractkit/external-adapters-js/commit/fa1277716bb1c705388a6444ff43e9cc5309163e) Thanks [@mxiao-cll](https://github.com/mxiao-cll)! - Read from aggregator
61 changes: 59 additions & 2 deletions packages/composites/llama-guard/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,60 @@
# Chainlink External Adapter for llama-guard
# LLAMA_GUARD

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 llama-guard`.
![1.0.0](https://img.shields.io/github/package-json/v/smartcontractkit/external-adapters-js?filename=packages/composites/llama-guard/package.json) ![v3](https://img.shields.io/badge/framework%20version-v3-blueviolet)

This document was generated automatically. Please see [README Generator](../../scripts#readme-generator) for more info.

## Environment Variables

| Required? | Name | Description | Type | Options | Default |
| :-------: | :-------------------: | :---------------------------------------------------------------------------------------: | :----: | :-----: | :-----: |
| ✅ | ETHEREUM_RPC_URL | RPC URL of a Mainnet ETH node | string | | |
| | ETHEREUM_RPC_CHAIN_ID | The chain id to connect to | number | | `1` |
| | BACKGROUND_EXECUTE_MS | The amount of time the background execute should sleep before performing the next request | number | | `10000` |

---

## Data Provider Rate Limits

There are no rate limits for this adapter.

---

## Input Parameters

| Required? | Name | Description | Type | Options | Default |
| :-------: | :------: | :-----------------: | :----: | :------------------: | :-----: |
| | endpoint | The endpoint to use | string | [nav](#nav-endpoint) | `nav` |

## Nav Endpoint

`nav` is the only supported name for this endpoint.

### Input Params

| Required? | Name | Aliases | Description | Type | Options | Default | Depends On | Not Valid With |
| :-------: | :---------: | :-----: | :--------------------------------------------------------------------------------: | :----: | :-----: | :-----: | :--------: | :------------: |
| ✅ | source | | Name of the Adapters that provides Nav data, requires ${source}\_EA_URL in env var | string | | | | |
| ✅ | sourceInput | | JSON input to Adapters in string format | string | | | | |
| ✅ | asset | | Address of asset in LlamaGuard's ParameterRegistry | string | | | | |
| ✅ | registry | | Contract address of LlamaGuard's ParameterRegistry | string | | | | |

### Example

Request:

```json
{
"data": {
"endpoint": "nav",
"source": "name",
"sourceInput": "{'param': '1'}",
"asset": "0x0",
"registry": "0x1"
}
}
```

---

MIT License
2 changes: 1 addition & 1 deletion packages/composites/llama-guard/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chainlink/llama-guard-adapter",
"version": "0.0.0",
"version": "1.0.0",
"description": "Chainlink llama-guard adapter.",
"keywords": [
"Chainlink",
Expand Down
13 changes: 13 additions & 0 deletions packages/composites/proof-of-reserves/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @chainlink/proof-of-reserves-adapter

## 1.30.0

### Minor Changes

- [#4023](https://github.com/smartcontractkit/external-adapters-js/pull/4023) [`5ecf6a2`](https://github.com/smartcontractkit/external-adapters-js/commit/5ecf6a236b59776545c4b5db5fda3f72be6d41e0) Thanks [@dskloetc](https://github.com/dskloetc)! - Skip custom logic for token-balance when solana-balance endpoint is used

### Patch Changes

- Updated dependencies [[`2f9d34f`](https://github.com/smartcontractkit/external-adapters-js/commit/2f9d34f2139db1e4b3b6e9529e50b8135f9c4149), [`c06b5ea`](https://github.com/smartcontractkit/external-adapters-js/commit/c06b5eada4043e8370d14f67a5b08efae35817a7)]:
- @chainlink/[email protected]
- @chainlink/[email protected]
- @chainlink/[email protected]

## 1.29.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/composites/proof-of-reserves/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chainlink/proof-of-reserves-adapter",
"version": "1.29.0",
"version": "1.30.0",
"description": "Chainlink BTC Proof of Reserves composite adapter. Combines multiple adapters to find total balance in custody for wBTC or renBTC.",
"keywords": [
"Chainlink",
Expand Down
8 changes: 8 additions & 0 deletions packages/scripts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @chainlink/ea-scripts

## 2.8.4

### Patch Changes

- [#4030](https://github.com/smartcontractkit/external-adapters-js/pull/4030) [`4737106`](https://github.com/smartcontractkit/external-adapters-js/commit/47371062e86192da52c014fd77389e0f536d1749) Thanks [@dskloetc](https://github.com/dskloetc)! - Delete dwolla EA

- [#4024](https://github.com/smartcontractkit/external-adapters-js/pull/4024) [`082bea8`](https://github.com/smartcontractkit/external-adapters-js/commit/082bea83419b42611a380e97d82c89a12ce49e66) Thanks [@dskloetc](https://github.com/dskloetc)! - Deleted dns-record-check adapter

## 2.8.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/scripts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chainlink/ea-scripts",
"version": "2.8.3",
"version": "2.8.4",
"dependencies": {
"@actions/core": "1.11.1",
"@apidevtools/json-schema-ref-parser": "9.1.2",
Expand Down
1 change: 0 additions & 1 deletion packages/sources/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ This document was generated automatically. Please see [Master List Generator](..
- [deribit](./deribit/README.md)
- [dlc-btc-por](./dlc-btc-por/README.md)
- [dns-query](./dns-query/README.md)
- [dwolla](./dwolla/README.md)
- [dxfeed](./dxfeed/README.md)
- [dxfeed-secondary](./dxfeed-secondary/README.md)
- [elven](./elven/README.md)
Expand Down
12 changes: 6 additions & 6 deletions packages/sources/enzyme/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,10 @@ Response:
{
"jobRunID": "1",
"data": {
"netValue": "10000000000000000000",
"result": "10000000000000000000"
"gav": "19995161270996618818245984471",
"result": "19995161270996618818245984471"
},
"result": "10000000000000000000",
"result": "19995161270996618818245984471",
"statusCode": 200,
"providerStatusCode": 200
}
Expand Down Expand Up @@ -185,10 +185,10 @@ Response:
{
"jobRunID": "1",
"data": {
"netShareValue": "1000000000000000000",
"result": "1000000000000000000"
"netValue": "10000000000000000000",
"result": "10000000000000000000"
},
"result": "1000000000000000000",
"result": "10000000000000000000",
"statusCode": 200,
"providerStatusCode": 200
}
Expand Down
6 changes: 6 additions & 0 deletions packages/sources/eth-balance/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @chainlink/eth-balance-adapter

## 2.1.11

### Patch Changes

- [#4022](https://github.com/smartcontractkit/external-adapters-js/pull/4022) [`c06b5ea`](https://github.com/smartcontractkit/external-adapters-js/commit/c06b5eada4043e8370d14f67a5b08efae35817a7) Thanks [@dskloetc](https://github.com/dskloetc)! - Fix documentation

## 2.1.10

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sources/eth-balance/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Chainlink External Adapter for Eth-balance

![2.1.10](https://img.shields.io/github/package-json/v/smartcontractkit/external-adapters-js?filename=packages/sources/eth-balance/package.json) ![v2](https://img.shields.io/badge/framework%20version-v2-blueviolet)
![2.1.11](https://img.shields.io/github/package-json/v/smartcontractkit/external-adapters-js?filename=packages/sources/eth-balance/package.json) ![v2](https://img.shields.io/badge/framework%20version-v2-blueviolet)

External adapter for fetching balances for ETH addresses

Expand Down
2 changes: 1 addition & 1 deletion packages/sources/eth-balance/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chainlink/eth-balance-adapter",
"version": "2.1.10",
"version": "2.1.11",
"description": "Chainlink eth-balance adapter.",
"keywords": [
"Chainlink",
Expand Down
12 changes: 12 additions & 0 deletions packages/sources/ftse-sftp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @chainlink/ftse-sftp-adapter

## 0.2.0

### Minor Changes

- [#3994](https://github.com/smartcontractkit/external-adapters-js/pull/3994) [`3581a3e`](https://github.com/smartcontractkit/external-adapters-js/commit/3581a3e3c64663eea368b84213a906d5f8292bb3) Thanks [@chray-zhang](https://github.com/chray-zhang)! - Added the SFTP Transport and Configs

### Patch Changes

- [#4032](https://github.com/smartcontractkit/external-adapters-js/pull/4032) [`174b191`](https://github.com/smartcontractkit/external-adapters-js/commit/174b19127d5d86ad06463a195e1782c2c8e48cdd) Thanks [@dskloetc](https://github.com/dskloetc)! - Add utility that's not used yet.

- [#4033](https://github.com/smartcontractkit/external-adapters-js/pull/4033) [`46fff08`](https://github.com/smartcontractkit/external-adapters-js/commit/46fff08374b4a87d4c7447e59fdcedebb134619c) Thanks [@dskloetc](https://github.com/dskloetc)! - Change interface of parser that isn't used yet

## 0.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sources/ftse-sftp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chainlink/ftse-sftp-adapter",
"version": "0.1.0",
"version": "0.2.0",
"description": "Chainlink ftse-sftp adapter.",
"keywords": [
"Chainlink",
Expand Down
7 changes: 7 additions & 0 deletions packages/sources/renvm-address-set/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @chainlink/renvm-address-set-adapter

## 1.5.125

### Patch Changes

- Updated dependencies [[`5ecf6a2`](https://github.com/smartcontractkit/external-adapters-js/commit/5ecf6a236b59776545c4b5db5fda3f72be6d41e0)]:
- @chainlink/[email protected]

## 1.5.124

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sources/renvm-address-set/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Chainlink External Adapters to query RenVM address set

![1.5.124](https://img.shields.io/github/package-json/v/smartcontractkit/external-adapters-js?filename=packages/sources/renvm-address-set/package.json) ![v2](https://img.shields.io/badge/framework%20version-v2-blueviolet)
![1.5.125](https://img.shields.io/github/package-json/v/smartcontractkit/external-adapters-js?filename=packages/sources/renvm-address-set/package.json) ![v2](https://img.shields.io/badge/framework%20version-v2-blueviolet)

This document was generated automatically. Please see [README Generator](../../scripts#readme-generator) for more info.

Expand Down
2 changes: 1 addition & 1 deletion packages/sources/renvm-address-set/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chainlink/renvm-address-set-adapter",
"version": "1.5.124",
"version": "1.5.125",
"description": "Chainlink adapter to query RenVM address set.",
"keywords": [
"Chainlink",
Expand Down
6 changes: 6 additions & 0 deletions packages/sources/token-balance/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @chainlink/token-balance-adapter

## 3.2.0

### Minor Changes

- [#4020](https://github.com/smartcontractkit/external-adapters-js/pull/4020) [`2f9d34f`](https://github.com/smartcontractkit/external-adapters-js/commit/2f9d34f2139db1e4b3b6e9529e50b8135f9c4149) Thanks [@dskloetc](https://github.com/dskloetc)! - Add solana-balance endpoint

## 3.1.0

### Minor Changes
Expand Down
Loading
Loading