Skip to content

Commit 2d1bc74

Browse files
committed
Merge branch 'main' of github.com:pyth-network/pyth-crosschain into tb/pulse/solidity-sdk
2 parents 9905073 + 1acf74b commit 2d1bc74

File tree

525 files changed

+24756
-7761
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

525 files changed

+24756
-7761
lines changed

.github/CODEOWNERS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@ turbo.json @pyth-network/web-team
1616
.github/workflows/ci-turbo-build.yml @pyth-network/web-team
1717
.github/workflows/ci-turbo-test.yml @pyth-network/web-team
1818

19+
/lazer/contracts/aptos @Riateche @ali-bahjati
20+
/lazer/contracts/evm @Riateche @ali-bahjati
21+
/lazer/contracts/solana @Riateche @ali-bahjati
22+
/lazer/publisher_sdk @darunrs @Riateche
23+
/lazer/sdk/js @ali-bahjati @keyvankhademi
24+
/lazer/sdk/rust @darunrs @Riateche
25+
1926
flake.lock @cprussin
2027
*.nix @cprussin
2128
.envrc @cprussin

.github/workflows/ci-cosmwasm-contract.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
- uses: actions/checkout@v2
2424
- uses: actions-rs/toolchain@v1
2525
with:
26-
profile: minimal
2726
toolchain: 1.82.0
2827
components: rustfmt, clippy
2928
override: true

.github/workflows/ci-fortuna.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
workspaces: "apps/fortuna -> target"
2222
- uses: actions-rs/toolchain@v1
2323
with:
24-
profile: minimal
2524
toolchain: 1.82.0
2625
override: true
26+
components: rustfmt, clippy
2727
- name: Format check
2828
run: cargo fmt --all -- --check
2929
if: success() || failure()

.github/workflows/ci-hermes-server.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ jobs:
2020
workspaces: "apps/hermes/server -> target"
2121
- uses: actions-rs/toolchain@v1
2222
with:
23-
profile: minimal
2423
toolchain: 1.82.0
2524
components: rustfmt, clippy
2625
override: true

.github/workflows/ci-lazer-rust.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,19 @@ jobs:
2121
submodules: recursive
2222
- uses: actions-rust-lang/setup-rust-toolchain@v1
2323
with:
24-
toolchain: 1.81.0
24+
toolchain: 1.82.0
25+
components: clippy,rustfmt
2526
- uses: Swatinem/rust-cache@v2
2627
with:
2728
workspaces: "lazer -> target"
29+
- name: Install Protoc
30+
uses: arduino/setup-protoc@v3
31+
with:
32+
version: "30.2"
2833
- name: Install Foundry
2934
uses: foundry-rs/foundry-toolchain@v1
30-
- name: install extra tools
31-
run: |
32-
cargo install --locked [email protected]
33-
sudo apt-get update && sudo apt-get install -y protobuf-compiler
35+
- name: install taplo
36+
run: cargo install --locked [email protected]
3437
- name: Install Solana Cli
3538
run: |
3639
sh -c "$(curl -sSfL https://release.anza.xyz/stable/install)"

.github/workflows/ci-message-buffer.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,13 @@ jobs:
2222
workspaces: "pythnet/message_buffer -> target"
2323
- uses: actions-rs/toolchain@v1
2424
with:
25-
profile: minimal
2625
toolchain: 1.66.1
2726
components: rustfmt, clippy
2827
- name: Install Solana
2928
run: |
3029
wget http://nz2.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb
3130
sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2_amd64.deb
32-
sh -c "$(curl -sSfL https://release.solana.com/v1.14.18/install)"
31+
sh -c "$(curl -sSfL https://release.anza.xyz/v1.17.34/install)"
3332
echo "/home/runner/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH
3433
- name: Install Anchor
3534
run: |

.github/workflows/ci-pythnet-sdk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
workspaces: "pythnet/pythnet_sdk -> target"
2121
- uses: actions-rs/toolchain@v1
2222
with:
23-
profile: minimal
2423
toolchain: 1.82.0
24+
components: rustfmt, clippy
2525
override: true
2626
- name: Format check
2727
run: cargo fmt --all -- --check

.github/workflows/ci-remote-executor.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
- uses: actions/setup-python@v2
1919
- uses: actions-rs/toolchain@v1
2020
with:
21-
profile: minimal
2221
toolchain: 1.73.0
2322
components: rustfmt, clippy
2423
override: true
@@ -27,7 +26,7 @@ jobs:
2726
workspaces: "governance/remote_executor -> target"
2827
- name: Install Solana
2928
run: |
30-
sh -c "$(curl -sSfL https://release.solana.com/v1.18.23/install)"
29+
sh -c "$(curl -sSfL https://release.anza.xyz/v1.18.23/install)"
3130
echo "/home/runner/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH
3231
- name: Format check
3332
run: cargo fmt --all -- --check

.github/workflows/ci-solana-contract.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
workspaces: "target_chains/solana -> target"
2727
- uses: actions-rs/toolchain@v1
2828
with:
29-
profile: minimal
3029
toolchain: 1.73.0
30+
components: rustfmt, clippy
3131
override: true
3232
- name: Install Solana
3333
run: |
34-
sh -c "$(curl -sSfL https://release.solana.com/v1.16.20/install)"
34+
sh -c "$(curl -sSfL https://release.anza.xyz/v1.17.34/install)"
3535
echo "/home/runner/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH
3636
- name: Format check
3737
run: cargo fmt --all -- --check

.github/workflows/ci-starknet-tools.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ jobs:
1313
- uses: actions/checkout@v2
1414
- uses: actions-rs/toolchain@v1
1515
with:
16-
profile: minimal
1716
toolchain: 1.86.0
1817
components: rustfmt, clippy
1918
override: true

0 commit comments

Comments
 (0)