Pavel Strakhov 0763cb050f refactor(target_chains/starknet): add common deploy utils for tests (#1642) 1 年之前
..
deploy 07306eeb1a feat(target_chains/starknet): add remaining pyth contract getters (#1631) 1 年之前
src 07306eeb1a feat(target_chains/starknet): add remaining pyth contract getters (#1631) 1 年之前
tests 0763cb050f refactor(target_chains/starknet): add common deploy utils for tests (#1642) 1 年之前
.gitignore 6e62328528 test(target_chains/starknet): add wormhole contract tests 1 年之前
.tool-versions b30604c5ba doc(target_chains/starknet): add local deployment script 1 年之前
README.md 74f02c46ff hore(target_chains/starknet): automate test data generation (#1587) 1 年之前
Scarb.lock 4e630edac0 feat(target_chains/starknet): fee collection (#1527) 1 年之前
Scarb.toml 4e630edac0 feat(target_chains/starknet): fee collection (#1527) 1 年之前

README.md

Pyth Starknet Contract

This directory contains the Pyth contract on Starknet.

Installation

  1. Install Scarb (the Cairo and Starknet development toolchain) by following the installation instructions.
  2. Install Starknet Foundry by following the installation instructions.

The .tool-versions file in this directory specifies the tool versions used by the contract.

Testing

Run snforge test in this directory to run the contract unit tests and integration tests.

The tests/data.cairo file contains input data that was generated with test_vaas tool. To regenerate it, run the following commands from the repository root (requires Rust installation):

cd target_chains/starknet/tools/test_vaas
cargo run --bin generate_test_data > ../../contracts/tests/data.cairo

Formatting

Run scarb fmt to automatically format the source code.

Local deployment

  1. Install Starkli (a cli tool for Starknet) by following the installation instructions.
  2. Install Katana (a local Starknet node) by following the installation instructions.
  3. Run the deploy/local_deploy setup script.