Mirroring https://github.com/pyth-network/pyth-crosschain

Pavel Strakhov 44d691a97e chore: add missing package name and remove lock files (#2128) 1 سال پیش
.github 44d691a97e chore: add missing package name and remove lock files (#2128) 1 سال پیش
apps cb979900e4 chore(staking): update TOS 1 سال پیش
contract_manager 295e7fa4b9 feat(ton): update ton testnet addr (#2110) 1 سال پیش
express_relay e08052c2c4 feat: set up turborepo 1 سال پیش
governance 2a41d5e303 Merge pull request #2114 from cprussin/insights-hub-shell 1 سال پیش
lazer 44d691a97e chore: add missing package name and remove lock files (#2128) 1 سال پیش
licenses ee455f1196 [solidity sdk] Add zerolend AggregatorV3 adapter to SDK (#1437) 1 سال پیش
packages 4a605875c3 feat(insights): initial app shell & index pages 1 سال پیش
patches 29d6b9f586 Migrate to pnpm 1 سال پیش
price_service e08052c2c4 feat: set up turborepo 1 سال پیش
pythnet 1e692e1de2 Deny clippy warnings in CI properly (#2109) 1 سال پیش
target_chains 5a945e2f06 chore: benchmarks example (#2121) 1 سال پیش
wormhole_attester 955a805e85 chore: apply rustfmt 1 سال پیش
.dockerignore 9765acafb0 fix(hermes): update dockerfile path on the CI (#1689) 1 سال پیش
.envrc 5e2edf27a0 Upgrade pnpm 1 سال پیش
.gitignore e08052c2c4 feat: set up turborepo 1 سال پیش
.gitmodules 6ab44570b2 feat: add lazer contracts and sdks (#2119) 1 سال پیش
.npmrc c12813ab2e chore: upgrade node to v20 1 سال پیش
.nvmrc 4a605875c3 feat(insights): initial app shell & index pages 1 سال پیش
.pre-commit-config.yaml 6ab44570b2 feat: add lazer contracts and sdks (#2119) 1 سال پیش
.prettierignore 28caaa0dc4 feat(insights): initialize insights hub 1 سال پیش
.tool-versions 4a605875c3 feat(insights): initial app shell & index pages 1 سال پیش
Dockerfile.node 2a41d5e303 Merge pull request #2114 from cprussin/insights-hub-shell 1 سال پیش
LICENSE c0dcae183d fix(license) Update license to PDA (#1763) 1 سال پیش
README.md f14cfaaf56 fix(contract_manager) Update chains and tokens (#2101) 1 سال پیش
SECURITY.md 52f18563a3 chore: add starknet audit (#1771) 1 سال پیش
flake.lock 4a605875c3 feat(insights): initial app shell & index pages 1 سال پیش
flake.nix e08052c2c4 feat: set up turborepo 1 سال پیش
funding.json f5f5b8b3bc chore: add funding.json for op grant (#1608) 1 سال پیش
lerna.json e08052c2c4 feat: set up turborepo 1 سال پیش
package.json b56bbb3153 fix(ci): fix CI js builds 1 سال پیش
pnpm-lock.yaml 5a945e2f06 chore: benchmarks example (#2121) 1 سال پیش
pnpm-workspace.yaml 6ab44570b2 feat: add lazer contracts and sdks (#2119) 1 سال پیش
tsconfig.base.json 183081cc20 Expose pythnet message buffer idls (#865) 2 سال پیش
turbo.json 9b0d113d44 Fix xc-admin-frontend build 1 سال پیش

README.md

Pyth Crosschain

This repository acts as a monorepo for the various components that make up Pyth protocols.

Within this monorepo you will find the following subprojects:

Target Chains

target_chains

This directory contains on-chain contracts and SDKs for all of the various blockchain runtimes that Pyth supports. Each subdirectory corresponds to a blockchain runtime. Inside each subdirectory, there are subfolders for contracts and SDKs.

Hermes

hermes

Hermes is an off-chain service which constantly observes Pythnet and the Wormhole network watching for price updates emitted from the Pyth contract. It exposes all observed attestations via a public API over HTTPS/WSS which can be consumed by client-side applications that wish to use Pyth pricing data.

The price_service/client directory provides an SDK for interacting with Hermes. However, most users will interact with the price service via a chain-specific SDK

For a guide on utilising this service in your project, see the chain-specific SDK and examples for your blockchain runtime in the target_chains directory.

Fortuna

fortuna

Fortuna is an off-chain service which can be used by Entropy providers.

Development

Pull requests

Use the Conventional Commits format for your commit messages and PR titles. In the PR description, please include a summary of the changes and any relevant context. Also, please make sure to update the package versions following the Semantic Versioning rules.

Releases

The repository has a CI workflow that will release javascript packages whose version number has changed. To perform a release, follow these steps:

  1. Update the version number in the package.json file for the package(s) you wish to release. Please follow Semantic Versioning for package versions.
  2. Submit a PR with the changes and merge them in to main.
  3. Create a new tag pyth-js-v<number> and push to github. You can simply increment the version number each time -- it doesn't affect any of the published information.
  4. Pushing the tag automatically triggers a CI workflow to publish the updated packages to NPM.

If you have a javascript package that shouldn't be published, simply add "private": "true" to the package.json file and it will be excluded from the publishing workflow. If you are creating a new public javascript package, you should add the following config option to package.json:

  "publishConfig": {
    "access": "public"
  },

pre-commit hooks

pre-commit is a tool that checks and fixes simple issues (formatting, ...) before each commit. You can install it by following their website. In order to enable checks for this repo run pre-commit install from command-line in the root of this repo.

The checks are also performed in the CI to ensure the code follows consistent formatting.

Tilt CI

Integration tests run in Tilt (via the tilt ci command). The Tilt CI workflow requires approval from a member of the Pyth team. If you are a member, click on "Details" next to the "Workflow / ci-pyth-crosschain" check in a pull request, and then on the "Resume" button on the workflow page.

Typescript Monorepo

All of the typescript / javascript packages in this repository are part of a turborepo monorepo.

Setting up

If you use nix and direnv, just cd to the project directory and direnv allow.

If you use nix but not direnv, just cd to the project directory and enter a nix development shell with nix develop.

If you don't use nix at all, then install the required system packages:

  • Node.js -- match the version to .nvmrc; you can use nvm to manage your Node.js version.
  • pnpm -- match the version to the version specified in package.json; you can experiment with corepack to manage your pnpm version for you.
  • turbo

Common tasks

The following tasks are the most common ways to interact with the monorepo. Thanks to turborepo, these tasks will coordinate building any needed dependencies, and task execution will be cached and will only re-run as necessary. For any of the following tasks, you can pass any valid turbo run option after --, for instance you could run pnpm test -- --concurrency 2.

  • pnpm test: Run all unit tests, integration tests, linting, and format checks, as well as whatever other code checks any packages support.
  • pnpm fix: Run auto fixes, including reformatting code and auto-fixing lint rules where possible.
  • pnpm start:dev: Start all development servers in parallel.
  • pnpm start:prod: Run production builds and start production mode servers in parallel.

Audit / Feature Status

This software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Or plainly spoken - this is a very complex piece of software which targets a bleeding-edge, experimental smart contract runtime. Mistakes happen, and no matter how hard you try and whether you pay someone to audit it, it may eat your tokens, set your printer on fire or startle your cat. Cryptocurrencies are a high-risk investment, no matter how fancy.