Skip to content

Commit 3c2a7f5

Browse files
committed
merge
2 parents c0444e0 + f394787 commit 3c2a7f5

File tree

559 files changed

+44372
-9432
lines changed

Some content is hidden

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

559 files changed

+44372
-9432
lines changed

.github/CODEOWNERS

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,8 @@ apps/api-reference @pyth-network/web-team
22
apps/entropy-debugger @pyth-network/web-team
33
apps/insights @pyth-network/web-team
44
apps/staking @pyth-network/web-team
5-
packages/app-logger @pyth-network/web-team
65
packages/component-library @pyth-network/web-team
7-
packages/fonts @pyth-network/web-team
86
packages/known-publishers @pyth-network/web-team
9-
packages/next-root @pyth-network/web-team
107
Dockerfile.node @pyth-network/web-team
118
package.json @pyth-network/web-team
129
pnpm-workspace.yaml @pyth-network/web-team

.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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: |
3030
wget http://nz2.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb
3131
sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2_amd64.deb
32-
sh -c "$(curl -sSfL https://release.solana.com/v1.14.18/install)"
32+
sh -c "$(curl -sSfL https://release.anza.xyz/v1.17.34/install)"
3333
echo "/home/runner/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH
3434
- name: Install Anchor
3535
run: |

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
workspaces: "governance/remote_executor -> target"
2828
- name: Install Solana
2929
run: |
30-
sh -c "$(curl -sSfL https://release.solana.com/v1.18.23/install)"
30+
sh -c "$(curl -sSfL https://release.anza.xyz/v1.18.23/install)"
3131
echo "/home/runner/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH
3232
- name: Format check
3333
run: cargo fmt --all -- --check

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
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/publish-rust-lazer-publisher-sdk.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ jobs:
1212
steps:
1313
- name: Checkout sources
1414
uses: actions/checkout@v2
15+
- name: Install Protoc
16+
uses: arduino/setup-protoc@v3
17+
with:
18+
version: "30.2"
1519

1620
- run: ./publish.sh
1721
env:

apps/api-reference/src/evm-networks.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -893,6 +893,12 @@ export const NETWORK_INFO = {
893893
isMainnet: true,
894894
contractAddress: "0x2880aB155794e7179c9eE2e38200202908C17B43",
895895
},
896+
[146]: {
897+
name: "sonic_mainnet",
898+
rpcUrl: " https://rpc.soniclabs.com",
899+
isMainnet: true,
900+
contractAddress: "0x2880aB155794e7179c9eE2e38200202908C17B43",
901+
},
896902
} satisfies Record<number, NetworkInfo>;
897903

898904
export const NETWORK_IDS = Object.keys(NETWORK_INFO).map((key) =>

0 commit comments

Comments
 (0)