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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# EA Framework v3

[![NPM version](https://img.shields.io/npm/v/@chainlink/external-adapter-framework.svg?style=flat)](https://www.npmjs.com/package/@chainlink/external-adapter-framework)
![Coverage](https://img.shields.io/badge/coverage-99.01%25-green)
![Coverage](https://img.shields.io/badge/coverage-99.02%25-green)

Framework to create External adapters, microservices that serve as middleware to facilitate connections between Chainlink Nodes and Data Providers (DP).

Expand Down
4 changes: 2 additions & 2 deletions docs/reference-tables/ea-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@
| CACHE_REDIS_PATH | string | undefined | The UNIX socket string of the Redis server | | |
| CACHE_REDIS_PORT | number | 6379 | Port for the Redis instance to be used | - Value must be an integer<br> - Value must be above the minimum<br> - Value must be below the maximum | 1 | 65535 |
| CACHE_REDIS_TIMEOUT | number | 500 | Timeout to fail a Redis server request if no response (ms) | - Value must be an integer<br> - Value must be above the minimum<br> - Value must be below the maximum | 500 | 10000 |
| CACHE_REDIS_URL | string | undefined | The URL of the Redis server. Format: [redis[s]:]//[[user][:password@]][host][:port][/db-number]?db=db-number[&password=bar[&option=value]]] | - Value must be a valid URL | |
| CACHE_REDIS_URL | string | undefined | The URL of the Redis server. Format: [redis[s]:]//[[user][:password@]][host][:port][/db-number][?db=db-number[&password=bar[&option=value]]] | - Value must be a valid URL | |
| CACHE_TYPE | enum | local | The type of cache to use throughout the EA | | |
| CENSOR_SENSITIVE_LOGS | boolean | false | Controls whether the logging of sensitive information is enabled or disabled | | |
| COMPOSITE_TRANSPORT | boolean | false | Whether to use enableCompositeTransport parameter in AdapterEndpoint | | |
| CORRELATION_ID_ENABLED | boolean | true | Flag to enable correlation IDs for sent requests in logging | | |
| DEBUG | boolean | false | Toggles debug mode | | |
| DEBUG_ENDPOINTS | boolean | false | Whether to enable debug enpoints (/debug/\*) for this adapter. Enabling them might consume more resources. | | |
| DEBUG_ENDPOINTS | boolean | false | Whether to enable debug enpoints (/debug/*) for this adapter. Enabling them might consume more resources. | | |
| DEFAULT_CACHE_KEY | string | DEFAULT_CACHE_KEY | Default key to be used when one cannot be determined from request parameters | | |
| EA_HOST | string | :: | Host this EA will listen for REST requests on (if mode is set to "reader" or "reader-writer") | - Value must be a valid IP address | |
| EA_MODE | enum | reader-writer | Port this EA will listen for REST requests on (if mode is set to "reader" or "reader-writer") | | |
Expand Down
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-adapter-framework",
"version": "2.17.1",
"version": "2.18.0",
"main": "dist/index.js",
"license": "MIT",
"repository": "git://github.com/smartcontractkit/ea-framework-js.git",
Expand Down
Loading