Skip to content

Commit 6685f23

Browse files
Release 1.195.0 (#4037)
* Release 1.195.0 (deletions) * Release 1.195.0 (.) * Release 1.195.0 (packages/sources) * Release 1.195.0 (packages/sources/ftse-sftp) * Release 1.195.0 (packages/sources/securitize) * trigger ci --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Matthew McAllister <[email protected]>
1 parent 5c7de6f commit 6685f23

File tree

11 files changed

+171
-17
lines changed

11 files changed

+171
-17
lines changed

.changeset/unlucky-carpets-design.md

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

.changeset/warm-hornets-compete.md

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

MASTERLIST.md

Lines changed: 3 additions & 2 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.194.0",
3+
"version": "1.195.0",
44
"license": "MIT",
55
"private": true,
66
"workspaces": [

packages/sources/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ This document was generated automatically. Please see [Master List Generator](..
154154
- [renvm-address-set](./renvm-address-set/README.md)
155155
- [s3-csv-reader](./s3-csv-reader/README.md)
156156
- [satoshitango](./satoshitango/README.md)
157+
- [securitize](./securitize/README.md)
157158
- [snowflake](./snowflake/README.md)
158159
- [sochain](./sochain/README.md)
159160
- [solactive](./solactive/README.md)

packages/sources/ftse-sftp/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @chainlink/ftse-sftp-adapter
22

3+
## 1.0.0
4+
5+
### Major Changes
6+
7+
- [#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
8+
39
## 0.2.0
410

511
### Minor Changes
Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
# FTSE_SFTP
2+
3+
![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)
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+
|| SFTP_HOST | SFTP server hostname or IP address | string | | |
12+
| | SFTP_PORT | SFTP server port | number | | `22` |
13+
|| SFTP_USERNAME | SFTP username for authentication | string | | |
14+
|| SFTP_PASSWORD | SFTP password for authentication | string | | |
15+
| | SFTP_READY_TIMEOUT_MS | How long (in milliseconds) to wait for the SSH handshake to complete | number | | `30000` |
16+
| | BACKGROUND_EXECUTE_MS | The amount of time the background execute should sleep before performing the next request | number | | `10000` |
17+
18+
---
19+
20+
## Data Provider Rate Limits
21+
22+
There are no rate limits for this adapter.
23+
24+
---
25+
26+
## Input Parameters
27+
28+
| Required? | Name | Description | Type | Options | Default |
29+
| :-------: | :------: | :-----------------: | :----: | :--------------------: | :-----: |
30+
| | endpoint | The endpoint to use | string | [sftp](#sftp-endpoint) | `sftp` |
31+
32+
## Sftp Endpoint
33+
34+
`sftp` is the only supported name for this endpoint.
35+
36+
### Input Params
37+
38+
| Required? | Name | Aliases | Description | Type | Options | Default | Depends On | Not Valid With |
39+
| :-------: | :--------: | :-----: | :----------------------------------------------------: | :----: | :------------------------------------------------------------------------: | :-----: | :--------: | :------------: |
40+
|| instrument | | Abstract identifier of the index to fetch the data for | string | `FTSE100INDEX`, `Russell1000INDEX`, `Russell2000INDEX`, `Russell3000INDEX` | | | |
41+
42+
### Example
43+
44+
Request:
45+
46+
```json
47+
{
48+
"data": {
49+
"endpoint": "sftp",
50+
"instrument": "FTSE100INDEX"
51+
}
52+
}
53+
```
54+
55+
<details>
56+
<summary>Additional Examples</summary>
57+
58+
Request:
59+
60+
```json
61+
{
62+
"data": {
63+
"endpoint": "sftp",
64+
"instrument": "Russell1000INDEX"
65+
}
66+
}
67+
```
68+
69+
Request:
70+
71+
```json
72+
{
73+
"data": {
74+
"endpoint": "sftp",
75+
"instrument": "Russell2000INDEX"
76+
}
77+
}
78+
```
79+
80+
Request:
81+
82+
```json
83+
{
84+
"data": {
85+
"endpoint": "sftp",
86+
"instrument": "Russell3000INDEX"
87+
}
88+
}
89+
```
90+
91+
</details>
92+
93+
---
94+
95+
MIT License

packages/sources/ftse-sftp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chainlink/ftse-sftp-adapter",
3-
"version": "0.2.0",
3+
"version": "1.0.0",
44
"description": "Chainlink ftse-sftp adapter.",
55
"keywords": [
66
"Chainlink",
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# @chainlink/securitize-adapter
2+
3+
## 1.0.0
4+
5+
### Major Changes
6+
7+
- [#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
Lines changed: 56 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,57 @@
1-
# Chainlink External Adapter for securitize
1+
# SECURITIZE
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 securitize`.
3+
![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)
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+
|| API_KEY | An API key for Securitize NAV | string | | |
12+
| | API_ENDPOINT | The API endpoint for Securitize NAV | string | | `https://partners-api.securitize.io/asset-metrics/api/v1/nav` |
13+
14+
---
15+
16+
## Data Provider Rate Limits
17+
18+
| Name | Requests/credits per second | Requests/credits per minute | Requests/credits per hour | Note |
19+
| :-----: | :-------------------------: | :-------------------------: | :-----------------------: | :--------------------------------------: |
20+
| default | | 30 | | 500/minute but setting reasonable limits |
21+
22+
---
23+
24+
## Input Parameters
25+
26+
| Required? | Name | Description | Type | Options | Default |
27+
| :-------: | :------: | :-----------------: | :----: | :------------------: | :-----: |
28+
| | endpoint | The endpoint to use | string | [nav](#nav-endpoint) | `nav` |
29+
30+
## Nav Endpoint
31+
32+
`nav` is the only supported name for this endpoint.
33+
34+
### Input Params
35+
36+
| Required? | Name | Aliases | Description | Type | Options | Default | Depends On | Not Valid With |
37+
| :-------: | :----------: | :-----: | :-------------------------------------------------------------------: | :----: | :-----: | :-----: | :--------: | :------------: |
38+
|| assetId | | The assetId of the fund | string | | | | |
39+
|| envVarPrefix | | Maps the assetId to the {envVarPrefix.toUpperCase()}\_PUBKEYS env var | string | | | | |
40+
41+
### Example
42+
43+
Request:
44+
45+
```json
46+
{
47+
"data": {
48+
"endpoint": "nav",
49+
"assetId": "c52c3d79-8317-4692-86f8-4e0dfd508672",
50+
"envVarPrefix": "testAsset"
51+
}
52+
}
53+
```
54+
55+
---
56+
57+
MIT License

0 commit comments

Comments
 (0)