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/curly-chefs-lie.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/floppy-symbols-serve.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fresh-fans-sit.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/polite-cats-purr.md

This file was deleted.

4 changes: 2 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.333.0",
"version": "1.334.0",
"license": "MIT",
"private": true,
"workspaces": [
Expand Down
14 changes: 14 additions & 0 deletions packages/sources/solana-functions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @chainlink/solana-functions-adapter

## 1.4.0

### Minor Changes

- [#4917](https://github.com/smartcontractkit/external-adapters-js/pull/4917) [`cf1cdb5`](https://github.com/smartcontractkit/external-adapters-js/commit/cf1cdb5145b18cff139b8f9ec37b6c6eb9cdf7cc) Thanks [@dskloetc](https://github.com/dskloetc)! - Add pool-token-rate endpoint

- [#4350](https://github.com/smartcontractkit/external-adapters-js/pull/4350) [`4f17e00`](https://github.com/smartcontractkit/external-adapters-js/commit/4f17e00f1c0762294fb09c62b95de9ecba7bee30) Thanks [@chray-zhang](https://github.com/chray-zhang)! - Added support for Token Accounts

### Patch Changes

- [#4622](https://github.com/smartcontractkit/external-adapters-js/pull/4622) [`8488e03`](https://github.com/smartcontractkit/external-adapters-js/commit/8488e033e8783383b0a25d440b89b6e5d6d470b4) Thanks [@johnnymugs](https://github.com/johnnymugs)! - Bumped framework version

- [#4598](https://github.com/smartcontractkit/external-adapters-js/pull/4598) [`14788ce`](https://github.com/smartcontractkit/external-adapters-js/commit/14788cecd69a8655f95b1af159fcbfae2d30b9fc) Thanks [@Fletch153](https://github.com/Fletch153)! - Bumped framework version

## 1.3.0

### Minor Changes
Expand Down
33 changes: 29 additions & 4 deletions packages/sources/solana-functions/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SOLANA_FUNCTIONS

![1.3.0](https://img.shields.io/github/package-json/v/smartcontractkit/external-adapters-js?filename=packages/sources/solana-functions/package.json) ![v3](https://img.shields.io/badge/framework%20version-v3-blueviolet)
![1.4.0](https://img.shields.io/github/package-json/v/smartcontractkit/external-adapters-js?filename=packages/sources/solana-functions/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 Expand Up @@ -40,9 +40,9 @@ There are no rate limits for this adapter.

## Input Parameters

| Required? | Name | Description | Type | Options | Default |
| :-------: | :------: | :-----------------: | :----: | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------: |
| | endpoint | The endpoint to use | string | [anchor-data](#anchor-data-endpoint), [buffer-layout](#buffer-layout-endpoint), [eusx-price](#eusx-price-endpoint), [extension](#extension-endpoint), [sanctum-infinity](#sanctum-infinity-endpoint) | `eusx-price` |
| Required? | Name | Description | Type | Options | Default |
| :-------: | :------: | :-----------------: | :----: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :----------: |
| | endpoint | The endpoint to use | string | [anchor-data](#anchor-data-endpoint), [buffer-layout](#buffer-layout-endpoint), [eusx-price](#eusx-price-endpoint), [extension](#extension-endpoint), [pool-token-rate](#pool-token-rate-endpoint), [sanctum-infinity](#sanctum-infinity-endpoint) | `eusx-price` |

## Eusx-price Endpoint

Expand Down Expand Up @@ -210,4 +210,29 @@ Request:

---

## Pool-token-rate Endpoint

`pool-token-rate` is the only supported name for this endpoint.

### Input Params

| Required? | Name | Aliases | Description | Type | Options | Default | Depends On | Not Valid With |
| :-------: | :---------------------: | :-----: | :--------------------------------------------------------------------: | :----: | :-----: | :-----: | :--------: | :------------: |
| ✅ | stakePoolAccountAddress | | The address of the stake pool account to fetch the pool token rate for | string | | | | |

### Example

Request:

```json
{
"data": {
"endpoint": "pool-token-rate",
"stakePoolAccountAddress": "Jito4APyf642JPZPx3hGc6WWJ8zPKtRbRs4P815Awbb"
}
}
```

---

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