From bd90dd4a04bb705365b9e42f1547afaf37900849 Mon Sep 17 00:00:00 2001 From: Pavel Strakhov Date: Tue, 10 Sep 2024 15:44:50 +0100 Subject: [PATCH] chore(target_chains/solana): add description and license (#1885) --- ...-pyth-price-publisher.yml => publish-pyth-price-store.yml} | 4 ++-- target_chains/solana/programs/pyth-price-store/Cargo.toml | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) rename .github/workflows/{publish-pyth-price-publisher.yml => publish-pyth-price-store.yml} (87%) diff --git a/.github/workflows/publish-pyth-price-publisher.yml b/.github/workflows/publish-pyth-price-store.yml similarity index 87% rename from .github/workflows/publish-pyth-price-publisher.yml rename to .github/workflows/publish-pyth-price-store.yml index c1f5b97944..316cb470cc 100644 --- a/.github/workflows/publish-pyth-price-publisher.yml +++ b/.github/workflows/publish-pyth-price-store.yml @@ -1,4 +1,4 @@ -name: Publish Pyth Price Publisher to crates.io +name: Publish Pyth Price Store to crates.io on: push: @@ -6,7 +6,7 @@ on: - pyth-price-store-v* jobs: publish-pyth-price-store: - name: Publish Pyth Price Publisher + name: Publish Pyth Price Store runs-on: ubuntu-latest steps: - name: Checkout sources diff --git a/target_chains/solana/programs/pyth-price-store/Cargo.toml b/target_chains/solana/programs/pyth-price-store/Cargo.toml index 061df8586b..0ab3baadf2 100644 --- a/target_chains/solana/programs/pyth-price-store/Cargo.toml +++ b/target_chains/solana/programs/pyth-price-store/Cargo.toml @@ -2,6 +2,9 @@ name = "pyth-price-store" version = "0.1.0" edition = "2021" +description = "A solana on-chain program that allows publishers to push prices on Pythnet." +license = "Apache-2.0" + [lib] crate-type = ["cdylib", "lib"]