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/unlucky-carpets-design.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/warm-hornets-compete.md

This file was deleted.

5 changes: 3 additions & 2 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.194.0",
"version": "1.195.0",
"license": "MIT",
"private": true,
"workspaces": [
Expand Down
1 change: 1 addition & 0 deletions packages/sources/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ This document was generated automatically. Please see [Master List Generator](..
- [renvm-address-set](./renvm-address-set/README.md)
- [s3-csv-reader](./s3-csv-reader/README.md)
- [satoshitango](./satoshitango/README.md)
- [securitize](./securitize/README.md)
- [snowflake](./snowflake/README.md)
- [sochain](./sochain/README.md)
- [solactive](./solactive/README.md)
Expand Down
6 changes: 6 additions & 0 deletions packages/sources/ftse-sftp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @chainlink/ftse-sftp-adapter

## 1.0.0

### Major Changes

- [#4036](https://github.com/smartcontractkit/external-adapters-js/pull/4036) [`725e85e`](https://github.com/smartcontractkit/external-adapters-js/commit/725e85ebbc8d26b3cc25178efcd19e4ad8eac542) Thanks [@dskloetc](https://github.com/dskloetc)! - Adding Downloading and parsing logic for russell and ftse csv files from ftse sftp server

## 0.2.0

### Minor Changes
Expand Down
95 changes: 95 additions & 0 deletions packages/sources/ftse-sftp/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
# FTSE_SFTP

![1.0.0](https://img.shields.io/github/package-json/v/smartcontractkit/external-adapters-js?filename=packages/sources/ftse-sftp/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 |
| :-------: | :-------------------: | :---------------------------------------------------------------------------------------: | :----: | :-----: | :-----: |
| ✅ | SFTP_HOST | SFTP server hostname or IP address | string | | |
| | SFTP_PORT | SFTP server port | number | | `22` |
| ✅ | SFTP_USERNAME | SFTP username for authentication | string | | |
| ✅ | SFTP_PASSWORD | SFTP password for authentication | string | | |
| | SFTP_READY_TIMEOUT_MS | How long (in milliseconds) to wait for the SSH handshake to complete | number | | `30000` |
| | 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 | [sftp](#sftp-endpoint) | `sftp` |

## Sftp Endpoint

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

### Input Params

| Required? | Name | Aliases | Description | Type | Options | Default | Depends On | Not Valid With |
| :-------: | :--------: | :-----: | :----------------------------------------------------: | :----: | :------------------------------------------------------------------------: | :-----: | :--------: | :------------: |
| ✅ | instrument | | Abstract identifier of the index to fetch the data for | string | `FTSE100INDEX`, `Russell1000INDEX`, `Russell2000INDEX`, `Russell3000INDEX` | | | |

### Example

Request:

```json
{
"data": {
"endpoint": "sftp",
"instrument": "FTSE100INDEX"
}
}
```

<details>
<summary>Additional Examples</summary>

Request:

```json
{
"data": {
"endpoint": "sftp",
"instrument": "Russell1000INDEX"
}
}
```

Request:

```json
{
"data": {
"endpoint": "sftp",
"instrument": "Russell2000INDEX"
}
}
```

Request:

```json
{
"data": {
"endpoint": "sftp",
"instrument": "Russell3000INDEX"
}
}
```

</details>

---

MIT License
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.2.0",
"version": "1.0.0",
"description": "Chainlink ftse-sftp adapter.",
"keywords": [
"Chainlink",
Expand Down
7 changes: 7 additions & 0 deletions packages/sources/securitize/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @chainlink/securitize-adapter

## 1.0.0

### Major Changes

- [#4013](https://github.com/smartcontractkit/external-adapters-js/pull/4013) [`5c7de6f`](https://github.com/smartcontractkit/external-adapters-js/commit/5c7de6f6b54af9fc19c0a833f1c0c8f800b4dc77) Thanks [@mmcallister-cll](https://github.com/mmcallister-cll)! - Securitize Initial release
58 changes: 56 additions & 2 deletions packages/sources/securitize/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,57 @@
# Chainlink External Adapter for securitize
# SECURITIZE

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 securitize`.
![1.0.0](https://img.shields.io/github/package-json/v/smartcontractkit/external-adapters-js?filename=packages/sources/securitize/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 |
| :-------: | :----------: | :---------------------------------: | :----: | :-----: | :-----------------------------------------------------------: |
| ✅ | API_KEY | An API key for Securitize NAV | string | | |
| | API_ENDPOINT | The API endpoint for Securitize NAV | string | | `https://partners-api.securitize.io/asset-metrics/api/v1/nav` |

---

## Data Provider Rate Limits

| Name | Requests/credits per second | Requests/credits per minute | Requests/credits per hour | Note |
| :-----: | :-------------------------: | :-------------------------: | :-----------------------: | :--------------------------------------: |
| default | | 30 | | 500/minute but setting reasonable limits |

---

## 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 |
| :-------: | :----------: | :-----: | :-------------------------------------------------------------------: | :----: | :-----: | :-----: | :--------: | :------------: |
| ✅ | assetId | | The assetId of the fund | string | | | | |
| ✅ | envVarPrefix | | Maps the assetId to the {envVarPrefix.toUpperCase()}\_PUBKEYS env var | string | | | | |

### Example

Request:

```json
{
"data": {
"endpoint": "nav",
"assetId": "c52c3d79-8317-4692-86f8-4e0dfd508672",
"envVarPrefix": "testAsset"
}
}
```

---

MIT License
2 changes: 1 addition & 1 deletion packages/sources/securitize/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chainlink/securitize-adapter",
"version": "0.0.0",
"version": "1.0.0",
"description": "Chainlink securitize adapter.",
"keywords": [
"Chainlink",
Expand Down
Loading