Skip to content

Commit 2db36c5

Browse files
authored
Merge branch 'main' into withdraw-fees
2 parents b130e98 + 871e7e8 commit 2db36c5

File tree

133 files changed

+7966
-7426
lines changed

Some content is hidden

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

133 files changed

+7966
-7426
lines changed

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@
1616
.git
1717

1818
!apps/hermes/server/src/state/cache.rs
19+
!apps/hermes/server/src/config/cache.rs

.github/CODEOWNERS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ packages/fonts @pyth-network/web-team
88
packages/known-publishers @pyth-network/web-team
99
packages/next-root @pyth-network/web-team
1010
Dockerfile.node @pyth-network/web-team
11-
lerna.json @pyth-network/web-team
1211
package.json @pyth-network/web-team
1312
pnpm-workspace.yaml @pyth-network/web-team
1413
turbo.json @pyth-network/web-team

.github/workflows/ci-fortuna.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
paths:
66
- .github/workflows/ci-fortuna.yml
77
- apps/fortuna/**
8+
- target_chains/ethereum/entropy_sdk/solidity/abis/**
89
push:
910
branches: [main]
1011
jobs:

.github/workflows/publish-js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ jobs:
2727
env:
2828
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2929
- run: pnpm run turbo build
30-
- run: pnpm run publish
30+
- run: pnpm publish -r --no-git-checks
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Publish Rust package pyth-lazer-publisher-sdk to crates.io
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
tags:
7+
- rust-pyth-lazer-publisher-sdk-v*
8+
jobs:
9+
publish-pyth-lazer-publisher-sdk:
10+
name: Publish Rust package pyth-lazer-publisher-sdk to crates.io
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout sources
14+
uses: actions/checkout@v2
15+
16+
- run: cargo publish --token ${CARGO_REGISTRY_TOKEN}
17+
env:
18+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
19+
working-directory: "lazer/publisher_sdk/rust"

.npmrc

Lines changed: 0 additions & 2 deletions
This file was deleted.

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v22.13.0
1+
v22.14.0

.tool-versions

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
nodejs 22.13.0
2-
pnpm 9.15.4
1+
nodejs 22.14.0
2+
pnpm 10.7.0
33
rust 1.78.0
44
python 3.12.4

Dockerfile.node

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22.13.0-slim@sha256:f5a0871ab03b035c58bdb3007c3d177b001c2145c18e81817b71624dcf7d8bff as builder-base
1+
FROM node:22.14.0-slim@sha256:bac8ff0b5302b06924a5e288fb4ceecef9c8bb0bb92515985d2efdc3a2447052 as builder-base
22
WORKDIR /usr/src/pyth
33
ENV PNPM_HOME="/pnpm"
44
ENV PATH="$PNPM_HOME:$PATH"
@@ -8,7 +8,7 @@ COPY ./ .
88
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
99

1010

11-
FROM node:22.13.0-alpine3.21@sha256:f2dc6eea95f787e25f173ba9904c9d0647ab2506178c7b5b7c5a3d02bc4af145 as runner-base
11+
FROM node:22.14.0-alpine3.21@sha256:9bef0ef1e268f60627da9ba7d7605e8831d5b56ad07487d24d1aa386336d1944 as runner-base
1212
WORKDIR /srv
1313
ENV NODE_ENV production
1414
RUN addgroup --system --gid 1001 pyth && adduser --system --uid 1001 pyth -g pyth && chown pyth:pyth .
@@ -19,7 +19,7 @@ FROM builder-base AS builder
1919
ARG package
2020
ENV CI true
2121
RUN pnpm turbo build --filter $package
22-
RUN pnpm deploy --filter $package --prod /srv/$package
22+
RUN pnpm deploy --legacy --filter $package --prod /srv/$package
2323

2424

2525
FROM runner-base AS runner

apps/api-reference/next.config.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ export default {
2929
return config;
3030
},
3131

32-
transpilePackages: ["@pythnetwork/*"],
33-
3432
headers: () => [
3533
{
3634
source: "/:path*",

0 commit comments

Comments
 (0)