removed monorepo structure
This commit is contained in:
parent
ef0ecc1c60
commit
94d63ceb71
|
@ -1,49 +0,0 @@
|
|||
name: Deploy to GitHub Pages
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
paths:
|
||||
[
|
||||
website/**,
|
||||
".github/workflows/*",
|
||||
"idl/**",
|
||||
"libraries/sbv2-lite/src/**",
|
||||
"libraries/sbv2-utils/src/**",
|
||||
"libraries/ts/src/**",
|
||||
"cli/src/**",
|
||||
]
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
name: Deploy to GitHub Pages
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: 16.x
|
||||
cache: yarn
|
||||
cache-dependency-path: "yarn.lock"
|
||||
- name: Setup npmrc
|
||||
run: echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_AUTH_TOKEN}}" > .npmrc
|
||||
- name: Setup yarnrc
|
||||
run: echo "registry \"https://registry.npmjs.org\"" > .yarnrc
|
||||
- name: Build website
|
||||
run: |
|
||||
yarn install --frozen-lockfile
|
||||
yarn workspaces run build
|
||||
yarn docs:build
|
||||
# Popular action to deploy to GitHub Pages:
|
||||
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus
|
||||
- name: Deploy to GitHub Pages
|
||||
uses: peaceiris/actions-gh-pages@v3
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
# Build output to publish to the `gh-pages` branch:
|
||||
publish_dir: ./website/public
|
||||
# Assign commit authorship to the official GH-Actions bot for deploys to `gh-pages` branch:
|
||||
# https://github.com/actions/checkout/issues/13#issuecomment-724415212
|
||||
# The GH actions bot is used by default if you didn't specify the two fields.
|
||||
# You can swap them out with your own user credentials.
|
||||
user_name: github-actions[bot]
|
||||
user_email: 41898282+github-actions[bot]@users.noreply.github.com
|
|
@ -1,36 +0,0 @@
|
|||
name: Test deployment
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [main]
|
||||
paths:
|
||||
[
|
||||
website/**,
|
||||
".github/workflows/*",
|
||||
"idl/**",
|
||||
"libraries/sbv2-lite/src/**",
|
||||
"libraries/sbv2-utils/src/**",
|
||||
"libraries/ts/src/**",
|
||||
"cli/src/**",
|
||||
]
|
||||
|
||||
jobs:
|
||||
test-deploy:
|
||||
name: Test deployment
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: 16.x
|
||||
cache: yarn
|
||||
cache-dependency-path: "yarn.lock"
|
||||
- name: Setup npmrc
|
||||
run: echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_AUTH_TOKEN}}" > .npmrc
|
||||
- name: Setup yarnrc
|
||||
run: echo "registry \"https://registry.npmjs.org\"" > .yarnrc
|
||||
- name: Test build
|
||||
run: |
|
||||
yarn install --frozen-lockfile
|
||||
yarn workspaces run build
|
||||
yarn docs:build
|
|
@ -1,3 +0,0 @@
|
|||
The latest oracle docker image is:
|
||||
|
||||
dev-v2-07-18-22
|
|
@ -1,86 +0,0 @@
|
|||
# Publishing
|
||||
|
||||
- [Checking for Changes](./Publishing.md#checking-for-changes)
|
||||
- [Publishing to NPM](./Publishing.md#publishing-to-npm)
|
||||
- [Lerna Commands](./Publishing.md#lerna-commands)
|
||||
|
||||
## Checking for Changes
|
||||
|
||||
The command bellow will
|
||||
|
||||
- detect any version changes and increment when needed
|
||||
- skip any private packages
|
||||
- push a commit to github
|
||||
- tag the commit with the changed package versions
|
||||
|
||||
```
|
||||
lerna version patch --no-private --yes
|
||||
```
|
||||
|
||||
Run the following command to skip any git actions
|
||||
|
||||
```
|
||||
lerna version patch --no-private --yes --no-push --no-git-tag-version
|
||||
```
|
||||
|
||||
## Publishing to NPM
|
||||
|
||||
The command below will
|
||||
|
||||
- check for any changes since the last release and patch the versions
|
||||
- push a git commit and add tags for each changed version
|
||||
- publish any changes to NPM
|
||||
|
||||
```
|
||||
lerna version patch --no-private --yes
|
||||
lerna publish from-git --yes
|
||||
```
|
||||
|
||||
If the above command fails halfway, use the following command to check for any version differences between NPM and only publish the missing packages.
|
||||
|
||||
```
|
||||
lerna publish from-package --yes
|
||||
```
|
||||
|
||||
## Lerna Commands
|
||||
|
||||
### Lerna Version
|
||||
|
||||
Source: [Lerna Version](https://github.com/lerna/lerna/blob/main/commands/version/README.md)
|
||||
|
||||
```
|
||||
lerna version [major | minor | patch | premajor | preminor | prepatch | prerelease]
|
||||
# uses the next semantic version(s) value and this skips `Select a new version for...` prompt
|
||||
```
|
||||
|
||||
#### `--no-private`
|
||||
|
||||
By default, lerna version will include private packages when choosing versions, making commits, and tagging releases. Pass --no-private to disable this behavior.
|
||||
|
||||
#### `--yes`
|
||||
|
||||
When run with this flag, lerna version will skip all confirmation prompts. Useful in Continuous integration (CI) to automatically answer the publish confirmation prompt.
|
||||
|
||||
#### `--no-git-tag-version` and `--no-push`
|
||||
|
||||
By default, lerna version will commit changes to package.json files and tag the release. Pass `--no-git-tag-version` to disable the behavior.
|
||||
|
||||
By default, lerna version will push the committed and tagged changes to the configured git remote. Pass `--no-push` to disable this behavior.
|
||||
|
||||
### Lerna Publish
|
||||
|
||||
Source: [Lerna Publish](https://github.com/lerna/lerna/blob/main/commands/publish/README.md)
|
||||
|
||||
```
|
||||
lerna publish # publish packages that have changed since the last release
|
||||
lerna publish from-git # explicitly publish packages tagged in the current commit
|
||||
lerna publish from-package # explicitly publish packages where the latest version is not present in the registry
|
||||
```
|
||||
|
||||
#### bump `from-git`
|
||||
|
||||
In addition to the semver keywords supported by lerna version, lerna publish also supports the from-git keyword. This will identify packages tagged by lerna version and publish them to npm. This is useful in CI scenarios where you wish to manually increment versions, but have the package contents themselves consistently published by an automated process.
|
||||
|
||||
#### bump `from-package`
|
||||
|
||||
Similar to the `from-git` keyword except the list of packages to publish is determined by inspecting each package.json and determining if any package version is not present in the registry. Any versions not present in the registry will be published. This is useful when a previous lerna publish failed to publish all packages to the registry.
|
110
README.md
110
README.md
|
@ -1,111 +1 @@
|
|||
# switchboard-v2
|
||||
|
||||
A monorepo containing APIs, Utils, and examples for Switchboard V2.
|
||||
|
||||
## Table of Contents
|
||||
|
||||
### Libraries
|
||||
|
||||
| Package | Description |
|
||||
| ---------------------------------------------- | -------------------------------------------------------------- |
|
||||
| [Protobufs](./libraries/protos) | Protocol buffers used by the oracle to fetch and publish data. |
|
||||
| [Typescript](./libraries/ts) | Typescript client to interact with Switchboard V2. |
|
||||
| [Typescript **_Lite_**](./libraries/sbv2-lite) | Typescript "Lite" client to deserialize aggregator accounts |
|
||||
| [Sbv2 Utils](./libraries/sbv2-utils) | Typescript library with helpful utility functions |
|
||||
| [Python](./libraries/py) | Python client to interact with Switchboard V2. |
|
||||
| [Rust](./libraries/rs) | Rust client to interact with Switchboard V2. |
|
||||
| [CLI](./cli) | Command Line Interface (CLI) to interact with Switchboard V2. |
|
||||
|
||||
### Program Examples
|
||||
|
||||
| Package | Description |
|
||||
| ---------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------- |
|
||||
| [anchor-feed-parser](./examples/programs/anchor-feed-parser) | Anchor example program demonstrating how to deserialize and read an onchain aggregator account. |
|
||||
| [native-feed-parser](./examples/programs/native-feed-parser) | Solana Program Library example demonstrating how to deserialize and read an onchain aggregator account. |
|
||||
| [anchor-vrf-parser](./examples/programs/anchor-vrf-parser) | Anchor example program demonstrating how to deserialize and read an onchain verifiable randomness function (VRF) account. |
|
||||
| [anchor-buffer-parser](./examples/programs/anchor-buffer-parser) | Anchor example program demonstrating how to deserialize and read an onchain buffer relayer account. |
|
||||
|
||||
### Client Examples
|
||||
|
||||
| Package | Description |
|
||||
| ------------------------------------------------------- | --------------------------------------------------------------------------------------------------------- |
|
||||
| [feed-parser](./examples/clients/feed-parser) | Typescript example demonstrating how to read an aggregator account. |
|
||||
| [feed-walkthrough](./examples/clients/feed-walkthrough) | Typescript example demonstrating how to create and manage your own oracle queue. |
|
||||
| [lease-observer](./examples/clients/lease-observer) | Typescript example demonstrating how to send PagerDuty alerts when your aggregator lease is low on funds. |
|
||||
|
||||
## Dependencies
|
||||
|
||||
- [Node and Yarn](https://github.com/nvm-sh/nvm#installing-and-updating)
|
||||
- [Docker Compose](https://docs.docker.com/compose/install)
|
||||
- [Rust](https://www.rust-lang.org/tools/install)
|
||||
- [Solana](https://docs.solana.com/cli/install-solana-cli-tools)
|
||||
- [Anchor](https://project-serum.github.io/anchor/getting-started/installation.html#install-anchor)
|
||||
- [Python3](https://www.python.org/downloads/)
|
||||
|
||||
## Setup
|
||||
|
||||
```
|
||||
yarn install
|
||||
yarn workspaces run build
|
||||
yarn workspace @switchboard-xyz/switchboardv2-cli link
|
||||
anchor build && node ./scripts/setup-example-programs.js
|
||||
```
|
||||
|
||||
## Website
|
||||
|
||||
Run live server
|
||||
|
||||
```
|
||||
yarn workspace website start
|
||||
```
|
||||
|
||||
Build
|
||||
|
||||
```
|
||||
yarn docs:build
|
||||
```
|
||||
|
||||
## Publishing
|
||||
|
||||
See [./Publishing.md](./Publishing.md) for a detailed guide.
|
||||
|
||||
```
|
||||
lerna version patch --no-private --yes
|
||||
lerna publish from-git --yes
|
||||
```
|
||||
|
||||
### Localnet Testing Setup
|
||||
|
||||
The SDK supports copying a Switchboard devnet environment to your localnet
|
||||
environment for integration testing. This is useful if you want to see how your
|
||||
program will react to Switchboard data feed updates.
|
||||
|
||||
First, set the _[provider.cluster]_ in `Anchor.toml` to localnet.
|
||||
|
||||
Next, create a Switchboard devnet queue and oracle.
|
||||
|
||||
```
|
||||
sbv2 localnet:env --keypair ../payer-keypair.json -o .switchboard
|
||||
```
|
||||
|
||||
This command will output:
|
||||
|
||||
- **start-local-validator.sh**: starts a local Solana validator with the
|
||||
Switchboard program, IDL, and our devnet environment pre-loaded
|
||||
- **start-oracle.sh**: start a Switchboard oracle and start heartbeating on the
|
||||
localnet queue
|
||||
- **docker-compose.yml**: docker file with the Switchboard oracle environment
|
||||
- **switchboard.env**: contains your Switchboard accounts
|
||||
|
||||
In three separate shells, run the following commands in this order:
|
||||
|
||||
- `./.switchboard/start-local-validator.sh`
|
||||
- `./.switchboard/start-oracle.sh`
|
||||
- `anchor test --skip-local-validator`
|
||||
|
||||
The anchor test are configured to first fetch the account info for the
|
||||
Switchboard DAO controlled devnet permissionless queue. If the account info is
|
||||
not found, it assumes a localnet connection and looks for the `switchboard.env`
|
||||
with your Switchboard environment specific public keys. If a`.switchboard`
|
||||
directory or `switchboard.env` file is not found in the root project directory,
|
||||
it will look 2 levels higher until giving up.
|
||||
|
|
|
@ -0,0 +1,16 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
# Imports
|
||||
project_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
||||
program_dir="$project_dir"/programs
|
||||
|
||||
cd "$program_dir"/anchor-buffer-parser
|
||||
anchor test
|
||||
|
||||
cd "$program_dir"/anchor-feed-parser
|
||||
anchor test
|
||||
|
||||
cd "$program_dir"/anchor-vrf-parser
|
||||
anchor test
|
|
@ -1,7 +0,0 @@
|
|||
# Examples
|
||||
|
||||
This directory contains some examples to get started with Switchboard V2.
|
||||
|
||||
- **Programs** - On-chain examples for reading and checking Sbv2 data feeds, VRF, and buffer relayers.
|
||||
- **Clients** - Off-chain examples to read and update Sbv2 accounts.
|
||||
- **Job Definitions** - Some example job definitions to fetch and publish data on-chain.
|
|
@ -1,7 +0,0 @@
|
|||
# Switchboard V2 Client Examples
|
||||
|
||||
| Package | Description |
|
||||
| -------------------------------------- | --------------------------------------------------------------------------------------------------------- |
|
||||
| [feed-parser](./feed-parser) | Typescript example demonstrating how to read an aggregator account. |
|
||||
| [feed-walkthrough](./feed-walkthrough) | Typescript example demonstrating how to create and manage your own oracle queue. |
|
||||
| [lease-observer](./lease-observer) | Typescript example demonstrating how to send PagerDuty alerts when your aggregator lease is low on funds. |
|
|
@ -1,14 +0,0 @@
|
|||
{
|
||||
"extends": "../../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "dist",
|
||||
"rootDir": "src",
|
||||
"paths": {
|
||||
"@switchboard-xyz/switchboard-v2": ["../../../libraries/ts"]
|
||||
}
|
||||
},
|
||||
"include": ["src/**/*"],
|
||||
"exclude": ["esbuild.js", "dist"],
|
||||
"references": [{ "path": "../../../libraries/ts" }],
|
||||
"files": ["src/main.ts"]
|
||||
}
|
|
@ -1,17 +0,0 @@
|
|||
version: "3.3"
|
||||
services:
|
||||
oracle:
|
||||
image: "switchboardlabs/node:dev-v2-09-13-22"
|
||||
network_mode: host
|
||||
restart: always
|
||||
secrets:
|
||||
- PAYER_SECRETS
|
||||
environment:
|
||||
- LIVE=1
|
||||
- CLUSTER=devnet
|
||||
- HEARTBEAT_INTERVAL=15 # Seconds
|
||||
- ORACLE_KEY=${ORACLE_KEY}
|
||||
- RPC_URL=${RPC_URL}
|
||||
secrets:
|
||||
PAYER_SECRETS:
|
||||
file: ${PAYER_KEYPAIR}
|
|
@ -1 +0,0 @@
|
|||
# feed-observer
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"tasks": [
|
||||
{ "valueTask": { "value": 10 } },
|
||||
{
|
||||
"addTask": {
|
||||
"job": {
|
||||
"tasks": [{ "valueTask": { "value": 15 } }]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,17 +0,0 @@
|
|||
{
|
||||
"tasks": [
|
||||
{
|
||||
"defiKingdomsTask": {
|
||||
"provider": "https://api.harmony.one",
|
||||
"inToken": {
|
||||
"address": "0x72cb10c6bfa5624dd07ef608027e366bd690048f",
|
||||
"decimals": 18
|
||||
},
|
||||
"outToken": {
|
||||
"address": "0x985458E523dB3d53125813eD68c274899e9DfAb4",
|
||||
"decimals": 6
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,25 +0,0 @@
|
|||
{
|
||||
"jobs": [
|
||||
{
|
||||
"name": "ASG Gold Price",
|
||||
"tasks": [
|
||||
{
|
||||
"httpTask": {
|
||||
"url": "https://data-asg.goldprice.org/dbXRates/USD",
|
||||
"headers": [
|
||||
{
|
||||
"key": "Authorization",
|
||||
"value": "Bearer XXXX"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"jsonParseTask": {
|
||||
"path": "$.items[?(@.curr == \"USD\")].xauPrice"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,16 +0,0 @@
|
|||
{
|
||||
"name": "UXP/USD",
|
||||
"tasks": [
|
||||
{
|
||||
"jupiterSwapTask": {
|
||||
"inTokenAddress": "UXPhBoR3qG4UCiGNJfV7MqhHyFqKN68g45GoYvAeL2M",
|
||||
"outTokenAddress": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
|
||||
}
|
||||
},
|
||||
{
|
||||
"multiplyTask": {
|
||||
"aggregatorPubkey": "BjUgj6YCnFBZ49wF54ddBVA9qu8TeqkFtkbqmZcee8uW"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"name": "JET BTC Borrow Rate",
|
||||
"tasks": [
|
||||
{
|
||||
"lendingRateTask": {
|
||||
"protocol": "jet",
|
||||
"assetMint": "9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E",
|
||||
"field": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"name": "JET BTC Lend Rate",
|
||||
"tasks": [
|
||||
{
|
||||
"lendingRateTask": {
|
||||
"protocol": "jet",
|
||||
"assetMint": "9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E",
|
||||
"field": 0
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"name": "Solend SLND Borrow Rate",
|
||||
"tasks": [
|
||||
{
|
||||
"lendingRateTask": {
|
||||
"protocol": "solend",
|
||||
"assetMint": "SLNDpmoWTVADgEdndyvWzroNL7zSi1dF9PC3xHGtPwp",
|
||||
"field": 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"name": "Solend SLND Lend Rate",
|
||||
"tasks": [
|
||||
{
|
||||
"lendingRateTask": {
|
||||
"protocol": "solend",
|
||||
"assetMint": "SLNDpmoWTVADgEdndyvWzroNL7zSi1dF9PC3xHGtPwp",
|
||||
"field": 0
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"name": "Mercurial Finance PAI-3Pool",
|
||||
"tasks": [
|
||||
{
|
||||
"lpExchangeRateTask": {
|
||||
"mercurialPoolAddress": "SWABtvDnJwWwAb9CbSA3nv7nTnrtYjrACAVtuP3gyBB",
|
||||
"inTokenAddress": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
|
||||
"outTokenAddress": "Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,16 +0,0 @@
|
|||
{
|
||||
"name": "Mercurial Finance PAI-3Pool",
|
||||
"tasks": [
|
||||
{
|
||||
"lpTokenPriceTask": {
|
||||
"useFairPrice": true,
|
||||
"mercurialPoolAddress": "SWABtvDnJwWwAb9CbSA3nv7nTnrtYjrACAVtuP3gyBB",
|
||||
"priceFeedAddresses": [
|
||||
"BjUgj6YCnFBZ49wF54ddBVA9qu8TeqkFtkbqmZcee8uW",
|
||||
"ETAaeeuQBwsh9mC2gCov9WdhJENZuffRMXY2HgjCcSL9",
|
||||
"DKayKbGmnby8XUagUL3bVLcN7NZKy6j5ugyBmHzwpqc8"
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
{
|
||||
"name": "Mango BTC/USD Perp Price",
|
||||
"tasks": [
|
||||
{
|
||||
"mangoPerpMarketTask": {
|
||||
"perpMarketAddress": "DtEcjPLyD4YtTBB4q8xwFZ9q49W89xZCZtJyrGebi5t8"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
{
|
||||
"name": "Chainlink SOL/USD Devnet Price",
|
||||
"tasks": [
|
||||
{
|
||||
"oracleTask": {
|
||||
"chainlinkAddress": "EdWr4ww1Dq82vPe8GFjjcVPo2Qno3Nhn6baCgM3dCy28"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"name": "Pyth SOL/USD Price",
|
||||
"tasks": [
|
||||
{
|
||||
"oracleTask": {
|
||||
"pythAddress": "H6ARHf6YXhGYeQfUzQNGk6rDNnLBQKrenN712K4AQJEG",
|
||||
"pythAllowedConfidenceInterval": 11.5
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
{
|
||||
"name": "Switchboard SOL/USD Price",
|
||||
"tasks": [
|
||||
{
|
||||
"oracleTask": {
|
||||
"switchboardAddress": "GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
{
|
||||
"name": "Aleph USDC",
|
||||
"tasks": [
|
||||
{
|
||||
"serumSwapTask": {
|
||||
"serumPoolAddress": "GcoKtAmTy5QyuijXSmJKBtFdt99e6Buza18Js7j9AJ6e"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,33 +0,0 @@
|
|||
{
|
||||
"name": "MonkeeDao Token Price",
|
||||
"tasks": [
|
||||
{
|
||||
"splStakePoolTask": {
|
||||
"pubkey": "7ge2xKsZXmqPxa3YmXxXmzCp9Hc2ezrTxh6PECaxCwrL"
|
||||
}
|
||||
},
|
||||
{
|
||||
"jsonParseTask": {
|
||||
"path": "$.poolTokenSupply"
|
||||
}
|
||||
},
|
||||
{
|
||||
"divideTask": {
|
||||
"job": {
|
||||
"tasks": [
|
||||
{
|
||||
"splStakePoolTask": {
|
||||
"pubkey": "7ge2xKsZXmqPxa3YmXxXmzCp9Hc2ezrTxh6PECaxCwrL"
|
||||
}
|
||||
},
|
||||
{
|
||||
"jsonParseTask": {
|
||||
"path": "$.poolTokenSupply"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,15 +0,0 @@
|
|||
{
|
||||
"name": "DaoSOL decimals",
|
||||
"tasks": [
|
||||
{
|
||||
"splTokenParseTask": {
|
||||
"tokenAccountAddress": "7xJRVi15yFB67vovu3f6Wai9EaQ8XDss6SCWB4FnSzDc"
|
||||
}
|
||||
},
|
||||
{
|
||||
"jsonParseTask": {
|
||||
"path": "$.uiAmount"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
"name": "SOL/USD 30min TWAP",
|
||||
"tasks": [
|
||||
{
|
||||
"twapTask": {
|
||||
"aggregatorPubkey": "GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR",
|
||||
"period": 1800,
|
||||
"weightByPropagationTime": true,
|
||||
"minSamples": 20
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
{
|
||||
"name": "Sol Aggregator",
|
||||
"tasks": [
|
||||
{
|
||||
"valueTask": {
|
||||
"aggregatorPubkey": "GvDMxPzN1sCj7L26YDK2HnMRXEQmQ2aemov8YBtPS7vR"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,18 +0,0 @@
|
|||
{
|
||||
"name": "Coinbase BTC/USD",
|
||||
"tasks": [
|
||||
{
|
||||
"websocketTask": {
|
||||
"url": "wss://ws-feed.pro.coinbase.com",
|
||||
"subscription": "{\"type\":\"subscribe\",\"product_ids\":[\"BTC-USD\"],\"channels\":[\"ticker\",{\"name\":\"ticker\",\"product_ids\":[\"BTC-USD\"]}]}",
|
||||
"maxDataAgeSeconds": 15,
|
||||
"filter": "$[?(@.type == 'ticker' && @.product_id == 'BTC-USD')]"
|
||||
}
|
||||
},
|
||||
{
|
||||
"jsonParseTask": {
|
||||
"path": "$.price"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,34 +0,0 @@
|
|||
{
|
||||
"name": "FtxCom BTC/USD",
|
||||
"tasks": [
|
||||
{
|
||||
"websocketTask": {
|
||||
"url": "wss://ftx.com/ws/",
|
||||
"subscription": "{\"op\":\"subscribe\",\"channel\":\"ticker\",\"market\":\"BTC/USD\"}",
|
||||
"maxDataAgeSeconds": 15,
|
||||
"filter": "$[?(@.type == 'update' && @.channel == 'ticker' && @.market == 'BTC/USD')]"
|
||||
}
|
||||
},
|
||||
{
|
||||
"medianTask": {
|
||||
"tasks": [
|
||||
{
|
||||
"jsonParseTask": {
|
||||
"path": "$.data.bid"
|
||||
}
|
||||
},
|
||||
{
|
||||
"jsonParseTask": {
|
||||
"path": "$.data.ask"
|
||||
}
|
||||
},
|
||||
{
|
||||
"jsonParseTask": {
|
||||
"path": "$.data.last"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,39 +0,0 @@
|
|||
{
|
||||
"name": "xStep",
|
||||
"tasks": [
|
||||
{
|
||||
"xstepPriceTask": {
|
||||
"stepJob": {
|
||||
"jobs": [
|
||||
{
|
||||
"tasks": [
|
||||
{
|
||||
"httpTask": { "url": "https://ftx.com/api/markets/step/usd" }
|
||||
},
|
||||
{ "jsonParseTask": { "path": "$.result.price" } }
|
||||
]
|
||||
},
|
||||
{
|
||||
"tasks": [
|
||||
{
|
||||
"httpTask": {
|
||||
"url": "https://api.gateio.ws/api/v4/spot/tickers?currency_pair=STEP_USDT"
|
||||
}
|
||||
},
|
||||
{
|
||||
"medianTask": {
|
||||
"tasks": [
|
||||
{ "jsonParseTask": { "path": "$[0].lowest_ask" } },
|
||||
{ "jsonParseTask": { "path": "$[0].highest_bid" } },
|
||||
{ "jsonParseTask": { "path": "$[0].last" } }
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,23 +0,0 @@
|
|||
{
|
||||
"extends": "../../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"types": ["mocha", "chai"],
|
||||
"typeRoots": ["./node_modules/@types"],
|
||||
"module": "CommonJS",
|
||||
"noEmit": true,
|
||||
"esModuleInterop": true,
|
||||
"paths": {
|
||||
"@switchboard-xyz/switchboard-v2": ["../../../libraries/ts"],
|
||||
"@switchboard-xyz/sbv2-utils": ["../../../libraries/sbv2-utils"]
|
||||
}
|
||||
},
|
||||
"include": [
|
||||
"tests/**/*",
|
||||
"client/**/*",
|
||||
"../../../target/types/anchor_feed_parser"
|
||||
],
|
||||
"references": [
|
||||
{ "path": "../../../libraries/ts" },
|
||||
{ "path": "../../../libraries/sbv2-utils" }
|
||||
]
|
||||
}
|
|
@ -1,23 +0,0 @@
|
|||
{
|
||||
"extends": "../../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"types": ["mocha", "chai"],
|
||||
"typeRoots": ["./node_modules/@types"],
|
||||
"module": "CommonJS",
|
||||
"noEmit": true,
|
||||
"esModuleInterop": true,
|
||||
"paths": {
|
||||
"@switchboard-xyz/switchboard-v2": ["../../../libraries/ts"],
|
||||
"@switchboard-xyz/sbv2-utils": ["../../../libraries/sbv2-utils"]
|
||||
}
|
||||
},
|
||||
"include": [
|
||||
"tests/**/*",
|
||||
"client/**/*",
|
||||
"../../../target/types/anchor_feed_parser"
|
||||
],
|
||||
"references": [
|
||||
{ "path": "../../../libraries/ts" },
|
||||
{ "path": "../../../libraries/sbv2-utils" }
|
||||
]
|
||||
}
|
|
@ -1,15 +1,16 @@
|
|||
# Switchboard V2 Feed Parser
|
||||
|
||||
Basic example showing how to load the Switchboard program and output the latest value
|
||||
Basic example showing how to load the Switchboard program and output the latest
|
||||
value
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
npm install
|
||||
yarn install
|
||||
```
|
||||
|
||||
## Start
|
||||
|
||||
```
|
||||
npm start
|
||||
yarn start
|
||||
```
|
|
@ -6,7 +6,7 @@
|
|||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/switchboard-xyz/switchboard-v2",
|
||||
"directory": "packages/feed-parser"
|
||||
"directory": "javascript/feed-parser"
|
||||
},
|
||||
"homepage": "https://docs.switchboard.xyz",
|
||||
"main": "dist/index.js",
|
||||
|
@ -20,7 +20,7 @@
|
|||
"dependencies": {
|
||||
"@project-serum/anchor": "^0.24.2",
|
||||
"@solana/web3.js": "^1.33.0",
|
||||
"@switchboard-xyz/switchboard-v2": "^0.0.135",
|
||||
"@switchboard-xyz/switchboard-v2": "^0.0.136",
|
||||
"big.js": "^6.1.1"
|
||||
},
|
||||
"devDependencies": {
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
"extends": "../../../tsconfig.json",
|
||||
"ts-node": {
|
||||
// It is faster to skip typechecking.
|
||||
// Remove if you want ts-node to do typechecking.
|
||||
|
@ -13,18 +12,21 @@
|
|||
}
|
||||
},
|
||||
"compilerOptions": {
|
||||
"target": "ES2019",
|
||||
"lib": ["es2019", "dom"],
|
||||
"module": "es2022",
|
||||
"esModuleInterop": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"skipLibCheck": true,
|
||||
"moduleResolution": "node",
|
||||
"outDir": "dist",
|
||||
"rootDir": "src",
|
||||
"paths": {
|
||||
"@switchboard-xyz/switchboard-v2": ["../../../libraries/ts"],
|
||||
"@solana/spl-token": [
|
||||
"../../../node_modules/@solana/spl-token",
|
||||
"./node_modules/@solana/spl-token"
|
||||
]
|
||||
"@switchboard-xyz/switchboard-v2": ["../solana.js"]
|
||||
}
|
||||
},
|
||||
"include": ["src/**/*"],
|
||||
"exclude": ["esbuild.js", "dist"],
|
||||
"references": [{ "path": "../../../libraries/ts" }],
|
||||
"references": [{ "path": "../solana.js" }],
|
||||
"files": ["src/main.ts"]
|
||||
}
|
File diff suppressed because it is too large
Load Diff
|
@ -7,7 +7,7 @@
|
|||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/switchboard-xyz/switchboard-v2",
|
||||
"directory": "packages/feed-walkthrough"
|
||||
"directory": "javascript/feed-walkthrough"
|
||||
},
|
||||
"homepage": "https://docs.switchboard.xyz",
|
||||
"main": "dist/main.js",
|
||||
|
@ -21,14 +21,18 @@
|
|||
"@solana/spl-token-v2": "npm:@solana/spl-token@^0.2.0",
|
||||
"@solana/web3.js": "^1.50.1",
|
||||
"@switchboard-xyz/common": "^2.0.0",
|
||||
"@switchboard-xyz/switchboard-v2": "^0.0.135",
|
||||
"@switchboard-xyz/switchboard-v2": "^0.0.136",
|
||||
"chalk": "^4.1.2",
|
||||
"dotenv": "^16.0.1",
|
||||
"readline-sync": "^1.4.10"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^18.7.18",
|
||||
"@types/readline-sync": "^1.4.4",
|
||||
"esbuild-node-externals": "^1.4.1",
|
||||
"estrella": "^1.4.1"
|
||||
"estrella": "^1.4.1",
|
||||
"rimraf": "^3.0.2",
|
||||
"ts-node": "^10.9.1",
|
||||
"typescript": "^4.8.3"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,33 @@
|
|||
{
|
||||
"ts-node": {
|
||||
// It is faster to skip typechecking.
|
||||
// Remove if you want ts-node to do typechecking.
|
||||
"transpileOnly": true,
|
||||
"files": true,
|
||||
"compilerOptions": {
|
||||
// compilerOptions specified here will override those declared below,
|
||||
// but *only* in ts-node. Useful if you want ts-node and tsc to use
|
||||
// different options with a single tsconfig.json.
|
||||
"module": "commonjs"
|
||||
}
|
||||
},
|
||||
"compilerOptions": {
|
||||
"target": "ES2019",
|
||||
"lib": ["es2019", "dom"],
|
||||
"module": "es2022",
|
||||
"esModuleInterop": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"skipLibCheck": true,
|
||||
"moduleResolution": "node",
|
||||
"outDir": "dist",
|
||||
"rootDir": "src",
|
||||
"paths": {
|
||||
"@switchboard-xyz/switchboard-v2": ["../solana.js"],
|
||||
"@solana/spl-token": ["./node_modules/@solana/spl-token"]
|
||||
}
|
||||
},
|
||||
"include": ["src/**/*"],
|
||||
"exclude": ["esbuild.js", "dist"],
|
||||
"references": [{ "path": "../solana.js" }],
|
||||
"files": ["src/main.ts"]
|
||||
}
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,15 @@
|
|||
# Lease Observer
|
||||
|
||||
Get PagerDuty alerts when a feed's lease is below `$PAGE_THRESHOLD`
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
yarn install
|
||||
```
|
||||
|
||||
## Start
|
||||
|
||||
```
|
||||
yarn start
|
||||
```
|
|
@ -7,27 +7,27 @@
|
|||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/switchboard-xyz/switchboard-v2",
|
||||
"directory": "packages/lease-observer"
|
||||
"directory": "javascript/lease-observer"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "ts-node main.ts",
|
||||
"start": "ts-node src/main.ts",
|
||||
"build": "rimraf lib && ./esbuild.js",
|
||||
"test": "echo \"No test script for @switchboard-xyz/lease-observer\" && exit 0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@project-serum/anchor": "^0.24.2",
|
||||
"@solana/web3.js": "1.33.0",
|
||||
"@switchboard-xyz/sbv2-utils": "^0.1.43",
|
||||
"@switchboard-xyz/switchboard-v2": "^0.0.135",
|
||||
"@switchboard-xyz/sbv2-utils": "^0.1.49",
|
||||
"@switchboard-xyz/switchboard-v2": "^0.0.136",
|
||||
"dotenv": "^16.0.1",
|
||||
"node-pagerduty": "^1.3.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^17.0.45",
|
||||
"@types/node": "^18.7.18",
|
||||
"esbuild-node-externals": "^1.4.1",
|
||||
"estrella": "^1.4.1",
|
||||
"rimraf": "^3.0.2",
|
||||
"ts-node": "^10.7.0",
|
||||
"typescript": "^4.2.4"
|
||||
"ts-node": "^10.9.1",
|
||||
"typescript": "^4.8.3"
|
||||
}
|
||||
}
|
|
@ -7,15 +7,24 @@ import { Pager } from "./pager";
|
|||
dotenv.config();
|
||||
|
||||
async function main() {
|
||||
if (!process.env.CLUSTER) {
|
||||
throw new Error(`Must provide $CLUSTER`);
|
||||
}
|
||||
const cluster = process.env.CLUSTER;
|
||||
if (cluster !== "devnet" && cluster !== "mainnet-beta") {
|
||||
throw new Error(`Invalid cluster ${cluster}`);
|
||||
}
|
||||
if (!process.env.RPC_URL) {
|
||||
throw new Error(`Must provide $RPC_URL`);
|
||||
}
|
||||
const program = await sbv2.loadSwitchboardProgram(
|
||||
cluster,
|
||||
new Connection(process.env.RPC_URL)
|
||||
new Connection(process.env.RPC_URL ?? "")
|
||||
);
|
||||
const aggregatorPubkey = new PublicKey(process.env.AGGREGATOR_KEY);
|
||||
if (!process.env.AGGREGATOR_KEY) {
|
||||
throw new Error(`Must provide $AGGREGATOR_KEY`);
|
||||
}
|
||||
const aggregatorPubkey = new PublicKey(process.env.AGGREGATOR_KEY ?? "");
|
||||
const aggregatorAccount = new sbv2.AggregatorAccount({
|
||||
program,
|
||||
publicKey: aggregatorPubkey,
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
"extends": "../../../tsconfig.json",
|
||||
"ts-node": {
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
|
@ -15,23 +14,24 @@
|
|||
}
|
||||
},
|
||||
"compilerOptions": {
|
||||
"target": "ES2019",
|
||||
"lib": ["es2019", "dom"],
|
||||
"module": "es2022",
|
||||
"esModuleInterop": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"skipLibCheck": true,
|
||||
"moduleResolution": "node",
|
||||
"outDir": "dist",
|
||||
"rootDir": "src",
|
||||
"strict": false,
|
||||
"paths": {
|
||||
"@switchboard-xyz/switchboard-v2": ["../../../libraries/ts"],
|
||||
"@switchboard-xyz/sbv2-utils": ["../../../libraries/sbv2-utils"],
|
||||
"@solana/spl-token": [
|
||||
"../../../node_modules/@solana/spl-token",
|
||||
"./node_modules/@solana/spl-token"
|
||||
]
|
||||
"@switchboard-xyz/switchboard-v2": ["../solana.js"],
|
||||
"@switchboard-xyz/sbv2-utils": ["../sbv2-utils"],
|
||||
"@solana/spl-token": ["./node_modules/@solana/spl-token"]
|
||||
}
|
||||
},
|
||||
"include": ["src/**/*"],
|
||||
"exclude": ["node_modules", "dist"],
|
||||
"references": [
|
||||
{ "path": "../../../libraries/ts" },
|
||||
{ "path": "../../../libraries/sbv2-utils" }
|
||||
],
|
||||
"references": [{ "path": "../solana.js" }, { "path": "../sbv2-utils" }],
|
||||
"files": ["src/main.ts"]
|
||||
}
|
File diff suppressed because it is too large
Load Diff
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "@switchboard-xyz/sbv2-lite",
|
||||
"version": "0.1.5",
|
||||
"version": "0.1.6",
|
||||
"description": "",
|
||||
"private": false,
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/switchboard-xyz/switchboard-v2",
|
||||
"directory": "libraries/sbv2-lite"
|
||||
"directory": "javascript/sbv2-lite"
|
||||
},
|
||||
"homepage": "https://docs.switchboard.xyz",
|
||||
"files": [
|
||||
|
@ -39,6 +39,7 @@
|
|||
"@types/big.js": "^6.1.3",
|
||||
"@types/chai": "^4.3.1",
|
||||
"@types/mocha": "^9.1.0",
|
||||
"@types/node": "^18.7.18",
|
||||
"assert": "^2.0.0",
|
||||
"chai": "^4.3.6",
|
||||
"mocha": "^9.2.2",
|
||||
|
@ -46,5 +47,8 @@
|
|||
"ts-node": "^10.7.0",
|
||||
"typedoc": "^0.23.8",
|
||||
"typescript": "^4.6.3"
|
||||
}
|
||||
},
|
||||
"pre-commit": [
|
||||
"build"
|
||||
]
|
||||
}
|
File diff suppressed because it is too large
Load Diff
|
@ -1,13 +1,13 @@
|
|||
{
|
||||
"name": "@switchboard-xyz/sbv2-utils",
|
||||
"version": "0.1.48",
|
||||
"version": "0.1.49",
|
||||
"description": "some basic utility functions when working with switchboard-v2",
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/switchboard-xyz/switchboard-v2",
|
||||
"directory": "libraries/sbv2-utils"
|
||||
"directory": "javascript/sbv2-utils"
|
||||
},
|
||||
"homepage": "https://docs.switchboard.xyz",
|
||||
"files": [
|
||||
|
@ -40,7 +40,7 @@
|
|||
"@solana/spl-token-v2": "npm:@solana/spl-token@^0.2.0",
|
||||
"@solana/web3.js": "^1.43.5",
|
||||
"@switchboard-xyz/common": "^2.0.0",
|
||||
"@switchboard-xyz/switchboard-v2": "^0.0.135",
|
||||
"@switchboard-xyz/switchboard-v2": "^0.0.136",
|
||||
"big.js": "^6.2.1",
|
||||
"bn.js": "^5.2.1",
|
||||
"chalk": "4",
|
|
@ -27,8 +27,8 @@
|
|||
"noImplicitReturns": true,
|
||||
"strictPropertyInitialization": true,
|
||||
"paths": {
|
||||
"@switchboard-xyz/switchboard-v2": ["../ts"]
|
||||
"@switchboard-xyz/switchboard-v2": ["../solana.js"]
|
||||
}
|
||||
},
|
||||
"references": [{ "path": "../ts" }]
|
||||
"references": [{ "path": "../solana.js" }]
|
||||
}
|
|
@ -9,7 +9,6 @@
|
|||
"rootDir": "./src",
|
||||
"paths": {
|
||||
"@solana/spl-token": [
|
||||
"../../node_modules/@solana/spl-token",
|
||||
"./node_modules/@solana/spl-token"
|
||||
]
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue