Skip to content

Commit cfbf48e

Browse files
Release 1.173.0 (#3905)
* Release 1.173.0 (deletions) * Release 1.173.0 (.) * Release 1.173.0 (packages/composites) * Release 1.173.0 (packages/composites/secure-mint) * Release 1.173.0 (packages/sources/mobula-state) --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 099e60d commit cfbf48e

File tree

12 files changed

+85
-24
lines changed

12 files changed

+85
-24
lines changed

.changeset/cold-boats-sniff.md

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

.changeset/gentle-horses-applaud.md

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

.changeset/short-cheetahs-promise.md

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

MASTERLIST.md

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

packages/composites/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ docker run -p 8080:8080 --env-file="~/PATH_TO_ENV" -it proof-of-reserves-adapter
8484
- [reference-transform](./reference-transform/README.md)
8585
- [rocket-pool](./rocket-pool/README.md)
8686
- [savax-price](./savax-price/README.md)
87+
- [secure-mint](./secure-mint/README.md)
8788
- [set-token-index](./set-token-index/README.md)
8889
- [synth-index](./synth-index/README.md)
8990
- [the-graph](./the-graph/README.md)
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# @chainlink/secure-mint-adapter
2+
3+
## 1.0.0
4+
5+
### Major Changes
6+
7+
- [#3902](https://github.com/smartcontractkit/external-adapters-js/pull/3902) [`6d7fb2a`](https://github.com/smartcontractkit/external-adapters-js/commit/6d7fb2a56df713d0a7b0163c75be3547fc6f5472) Thanks [@mxiao-cll](https://github.com/mxiao-cll)! - First release
8+
9+
### Patch Changes
10+
11+
- [#3906](https://github.com/smartcontractkit/external-adapters-js/pull/3906) [`099e60d`](https://github.com/smartcontractkit/external-adapters-js/commit/099e60d404221b562dc47593c6f8d883fcd46884) Thanks [@mxiao-cll](https://github.com/mxiao-cll)! - Handle errors
Lines changed: 59 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,60 @@
1-
# Chainlink External Adapter for secure-mint
1+
# SECURE_MINT
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 secure-mint`.
3+
![1.0.0](https://img.shields.io/github/package-json/v/smartcontractkit/external-adapters-js?filename=packages/composites/secure-mint/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+
|| SECURE_MINT_INDEXER_URL | Url to secure-mint-indexer | string | | |
12+
| | BITGO_RESERVES_EA_URL | Url to Bitgo Reserves EA | string | | `` |
13+
| | BACKGROUND_EXECUTE_MS | The amount of time the background execute should sleep before performing the next request | number | | `1000` |
14+
15+
---
16+
17+
## Data Provider Rate Limits
18+
19+
There are no rate limits for this adapter.
20+
21+
---
22+
23+
## Input Parameters
24+
25+
| Required? | Name | Description | Type | Options | Default |
26+
| :-------: | :------: | :-----------------: | :----: | :----------------------------: | :--------: |
27+
| | endpoint | The endpoint to use | string | [mintable](#mintable-endpoint) | `mintable` |
28+
29+
## Mintable Endpoint
30+
31+
`mintable` is the only supported name for this endpoint.
32+
33+
### Input Params
34+
35+
| Required? | Name | Aliases | Description | Type | Options | Default | Depends On | Not Valid With |
36+
| :-------: | :---------------: | :-----: | :-------------------------------------------------------: | :------: | :-----: | :-----: | :--------: | :------------: |
37+
|| token | | Name of the token | string | | | | |
38+
|| reserves | | Name of the reserve data provider | string | `Bitgo` | | | |
39+
|| supplyChains | | List of chains the token is on | string[] | | | | |
40+
|| supplyChainBlocks | | The target block correspond to each chain in supplyChains | number[] | | | | |
41+
42+
### Example
43+
44+
Request:
45+
46+
```json
47+
{
48+
"data": {
49+
"endpoint": "mintable",
50+
"token": "token1",
51+
"reserves": "Bitgo",
52+
"supplyChains": ["1", "56"],
53+
"supplyChainBlocks": [100, 400]
54+
}
55+
}
56+
```
57+
58+
---
59+
60+
MIT License

packages/composites/secure-mint/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chainlink/secure-mint-adapter",
3-
"version": "0.0.0",
3+
"version": "1.0.0",
44
"description": "Chainlink secure-mint adapter.",
55
"keywords": [
66
"Chainlink",

packages/sources/mobula-state/CHANGELOG.md

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

3+
## 1.3.4
4+
5+
### Patch Changes
6+
7+
- [#3904](https://github.com/smartcontractkit/external-adapters-js/pull/3904) [`7230c63`](https://github.com/smartcontractkit/external-adapters-js/commit/7230c63b1112b81d8444f0edefd9025751afe99f) Thanks [@fmunshi](https://github.com/fmunshi)! - When a specific exchange returns nil ignore its funding rate value
8+
39
## 1.3.3
410

511
### Patch Changes

0 commit comments

Comments
 (0)