Skip to content

Commit

Permalink
Release 1.116.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jun 4, 2024
1 parent a9edfe2 commit 0f9a97d
Show file tree
Hide file tree
Showing 12 changed files with 237 additions and 231 deletions.
5 changes: 0 additions & 5 deletions .changeset/eleven-bees-agree.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/happy-crews-fly.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tiny-terms-leave.md

This file was deleted.

408 changes: 205 additions & 203 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.115.0",
"version": "1.116.0",
"license": "MIT",
"private": true,
"workspaces": [
Expand Down
2 changes: 2 additions & 0 deletions packages/sources/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ This document was generated automatically. Please see [Master List Generator](..
- [stader-address-list](./stader-address-list/README.md)
- [stader-balance](./stader-balance/README.md)
- [stader-labs](./stader-labs/README.md)
- [starknet-gas-price](./starknet-gas-price/README.md)
- [stasis](./stasis/README.md)
- [swell-address-list](./swell-address-list/README.md)
- [synthetix-debt-pool](./synthetix-debt-pool/README.md)
Expand All @@ -160,6 +161,7 @@ This document was generated automatically. Please see [Master List Generator](..
- [uscpi-one](./uscpi-one/README.md)
- [view-function](./view-function/README.md)
- [view-function-multi-chain](./view-function-multi-chain/README.md)
- [view-starknet-latest-answer](./view-starknet-latest-answer/README.md)
- [wbtc-address-set](./wbtc-address-set/README.md)
- [wootrade](./wootrade/README.md)
- [wrapped](./wrapped/README.md)
Expand Down
11 changes: 11 additions & 0 deletions packages/sources/starknet-gas-price/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# @chainlink/starknet-gas-price-adapter

## 1.0.0

### Major Changes

- [#3311](https://github.com/smartcontractkit/external-adapters-js/pull/3311) [`a9edfe2`](https://github.com/smartcontractkit/external-adapters-js/commit/a9edfe215033a5ae6b8d49a6124702e49ad98611) Thanks [@augustbleeds](https://github.com/augustbleeds)! - First version of starknet gas price adapter

### Minor Changes

- [#3311](https://github.com/smartcontractkit/external-adapters-js/pull/3311) [`a9edfe2`](https://github.com/smartcontractkit/external-adapters-js/commit/a9edfe215033a5ae6b8d49a6124702e49ad98611) Thanks [@augustbleeds](https://github.com/augustbleeds)! - lint changes
18 changes: 9 additions & 9 deletions packages/sources/starknet-gas-price/README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# STARKNET_GAS_PRICE

![0.0.0](https://img.shields.io/github/package-json/v/smartcontractkit/external-adapters-js?filename=packages/sources/starknet-gas-price/package.json) ![v3](https://img.shields.io/badge/framework%20version-v3-blueviolet)
![1.0.0](https://img.shields.io/github/package-json/v/smartcontractkit/external-adapters-js?filename=packages/sources/starknet-gas-price/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 |
| :-------: | :-------------------: | :---------------------------------------------------------------------------------------: | :----: | :-----: | :------: |
|| STARKNET_RPC_URL | The RPC URL used to fetch the gas price | string | | |
| | BACKGROUND_EXECUTE_MS | The amount of time the background execute should sleep before performing the next request | string | | `10_000` |
| Required? | Name | Description | Type | Options | Default |
| :-------: | :-------------------: | :---------------------------------------------------------------------------------------: | :----: | :-----: | :-----: |
|| STARKNET_RPC_URL | RPC Url For Starknet | string | | |
| | BACKGROUND_EXECUTE_MS | The amount of time the background execute should sleep before performing the next request | number | | `10000` |

---

Expand All @@ -21,13 +21,13 @@ There are no rate limits for this adapter.

## Input Parameters

| Required? | Name | Description | Type | Options | Default |
| :-------: | :------: | :-----------------: | :----: | :----------------------------: | :--------: |
| | endpoint | The endpoint to use | string | [gasprice](#gasprice-endpoint) | `gasprice` |
| Required? | Name | Description | Type | Options | Default |
| :-------: | :------: | :-----------------: | :----: | :-------------------------------------------------------------: | :--------: |
| | endpoint | The endpoint to use | string | [gas_price](#gasprice-endpoint), [gasprice](#gasprice-endpoint) | `gasprice` |

## Gasprice Endpoint

`gasprice` is the only supported name for this endpoint.
Supported names for this endpoint are: `gas_price`, `gasprice`.

### Input Params

Expand Down
2 changes: 1 addition & 1 deletion packages/sources/starknet-gas-price/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chainlink/starknet-gas-price-adapter",
"version": "0.0.0",
"version": "1.0.0",
"description": "Chainlink starknet-gas-price adapter.",
"keywords": [
"Chainlink",
Expand Down
6 changes: 6 additions & 0 deletions packages/sources/view-starknet-latest-answer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @chainlink/view-starknet-latest-answer-adapter

## 1.0.1

### Patch Changes

- [#3310](https://github.com/smartcontractkit/external-adapters-js/pull/3310) [`5419d57`](https://github.com/smartcontractkit/external-adapters-js/commit/5419d571bb23a631811879b4a1cafbad5a154940) Thanks [@cawthorne](https://github.com/cawthorne)! - Initial Version. Tested against Starknet sepolia, pre-mainnet launch.

## 1.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sources/view-starknet-latest-answer/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# VIEW_STARKNET_LATEST_ANSWER

![1.0.0](https://img.shields.io/github/package-json/v/smartcontractkit/external-adapters-js?filename=packages/sources/view-starknet-latest-answer/package.json) ![v3](https://img.shields.io/badge/framework%20version-v3-blueviolet)
![1.0.1](https://img.shields.io/github/package-json/v/smartcontractkit/external-adapters-js?filename=packages/sources/view-starknet-latest-answer/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.

Expand Down
2 changes: 1 addition & 1 deletion packages/sources/view-starknet-latest-answer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@chainlink/view-starknet-latest-answer-adapter",
"version": "1.0.0",
"version": "1.0.1",
"description": "Chainlink view-starknet-latest-answer adapter.",
"keywords": [
"Chainlink",
Expand Down

0 comments on commit 0f9a97d

Please sign in to comment.