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/new-drinks-suffer.md

This file was deleted.

387 changes: 193 additions & 194 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.265.0",
"version": "1.266.0",
"license": "MIT",
"private": true,
"workspaces": [
Expand Down
1 change: 0 additions & 1 deletion packages/composites/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ docker run -p 8080:8080 --env-file="~/PATH_TO_ENV" -it proof-of-reserves-adapter
- [implied-price](./implied-price/README.md)
- [implied-price-test](./implied-price-test/README.md)
- [llama-guard](./llama-guard/README.md)
- [market-closure](./market-closure/README.md)
- [market-status](./market-status/README.md)
- [medianizer](./medianizer/README.md)
- [multi-address-list](./multi-address-list/README.md)
Expand Down
2 changes: 1 addition & 1 deletion packages/sources/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ This document was generated automatically. Please see [Master List Generator](..
- [deribit](./deribit/README.md)
- [deutsche-boerse](./deutsche-boerse/README.md)
- [dlc-btc-por](./dlc-btc-por/README.md)
- [dlc-cbtc-por](./dlc-cbtc-por/README.md)
- [dns-query](./dns-query/README.md)
- [dxfeed](./dxfeed/README.md)
- [elwood](./elwood/README.md)
Expand All @@ -67,7 +68,6 @@ This document was generated automatically. Please see [Master List Generator](..
- [ethgaswatch](./ethgaswatch/README.md)
- [exchange-copter](./exchange-copter/README.md)
- [expand-network](./expand-network/README.md)
- [fcsapi](./fcsapi/README.md)
- [finage](./finage/README.md)
- [finalto](./finalto/README.md)
- [finnhub](./finnhub/README.md)
Expand Down
7 changes: 7 additions & 0 deletions packages/sources/dlc-cbtc-por/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @chainlink/dlc-cbtc-por-adapter

## 1.0.0

### Major Changes

- [#4443](https://github.com/smartcontractkit/external-adapters-js/pull/4443) [`3a73c41`](https://github.com/smartcontractkit/external-adapters-js/commit/3a73c41eefa657c9b4826f752d4e522cbc4df6c9) Thanks [@Fletch153](https://github.com/Fletch153)! - dlc-cbtc-por initial release
97 changes: 97 additions & 0 deletions packages/sources/dlc-cbtc-por/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
# DLC_CBTC_POR

![1.0.0](https://img.shields.io/github/package-json/v/smartcontractkit/external-adapters-js?filename=packages/sources/dlc-cbtc-por/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 |
| :-------: | :-------------------: | :-----------------------------------------------------------------: | :----: | :-------------------------------------------------: | :--------------: |
| ✅ | ATTESTER_API_URLS | Comma-separated list of DLC.Link Attester API URLs | string | | |
| | CANTON_API_URL | Digital Asset API endpoint URL for CBTC token metadata | string | | |
| | CHAIN_NAME | Chain name to filter addresses from Attester API | enum | `canton-devnet`, `canton-mainnet`, `canton-testnet` | `canton-mainnet` |
| ✅ | BITCOIN_RPC_ENDPOINT | Electrs-compatible Bitcoin blockchain API endpoint for UTXO queries | string | | |
| | BACKGROUND_EXECUTE_MS | Interval in milliseconds between background executions | 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 | [attestersupply](#attestersupply-endpoint), [dasupply](#dasupply-endpoint), [por](#reserves-endpoint), [reserves](#reserves-endpoint) | `attestersupply` |

## Attestersupply Endpoint

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

### Input Params

There are no input parameters for this endpoint.

### Example

Request:

```json
{
"data": {
"endpoint": "attestersupply"
}
}
```

---

## Dasupply Endpoint

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

### Input Params

There are no input parameters for this endpoint.

### Example

Request:

```json
{
"data": {
"endpoint": "dasupply"
}
}
```

---

## Reserves Endpoint

Supported names for this endpoint are: `por`, `reserves`.

### Input Params

There are no input parameters for this endpoint.

### Example

Request:

```json
{
"data": {
"endpoint": "reserves"
}
}
```

---

MIT License
2 changes: 1 addition & 1 deletion packages/sources/dlc-cbtc-por/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chainlink/dlc-cbtc-por-adapter",
"version": "0.0.0",
"version": "1.0.0",
"description": "Chainlink DLC CBTC Proof of Reserves adapter. Queries Attester APIs, Digital Asset API, and Bitcoin blockchain for CBTC reserves.",
"keywords": [
"Chainlink",
Expand Down
Loading