Skip to content

Commit f82c147

Browse files
committed
Merge origin/main and resolve conflicts
2 parents 846c7e2 + 881c94b commit f82c147

File tree

101 files changed

+5817
-1199
lines changed

Some content is hidden

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

101 files changed

+5817
-1199
lines changed

.github/scripts/data/baseline.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"timestamp": "2025-11-23T21:03:30Z",
2+
"timestamp": "2025-11-30T21:03:22Z",
33
"knownIds": [
44
"aptos-apt-usd",
55
"aptos-btc-usd",
@@ -185,6 +185,7 @@
185185
"arbitrum-eth-usd",
186186
"arbitrum-eth-usd-marketcap",
187187
"arbitrum-eth-usd-premium-prod",
188+
"arbitrum-eth-usd-svr",
188189
"arbitrum-ethfi-usd-premium-prod",
189190
"arbitrum-ethx-eth-exchange-rate",
190191
"arbitrum-eur-usd",
@@ -365,6 +366,8 @@
365366
"arbitrum-mnt-usd",
366367
"arbitrum-mnt-usd-refprice-mainnet-production",
367368
"arbitrum-mog-usd-premium-prod-v03",
369+
"arbitrum-mon-usd",
370+
"arbitrum-mon-usd-streams-cexprice-mainnet-production",
368371
"arbitrum-moodeng-usd-premium-prod-v03",
369372
"arbitrum-morpho-usd-refprice-mainnet-production",
370373
"arbitrum-mplx-usd-streams-cexprice-mainnet-production",
@@ -1499,6 +1502,7 @@
14991502
"linea-linea-usd",
15001503
"linea-link-eth",
15011504
"linea-link-usd",
1505+
"linea-m-nav-linea",
15021506
"linea-matic-usd",
15031507
"linea-musd-usd",
15041508
"linea-oseth-eth-exchange-rate",
@@ -1512,6 +1516,7 @@
15121516
"linea-rseth-eth",
15131517
"linea-rsweth-eth-exchange-rate",
15141518
"linea-savbtc-avbtc-exchange-rate",
1519+
"linea-saveth-aveth-exchange-rate",
15151520
"linea-savusd-avusd-exchange-rate",
15161521
"linea-ultraeths-eth-exchange-rate",
15171522
"linea-usd1-usd",

.github/workflows/test.yml

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ concurrency:
88

99
env:
1010
FOUNDRY_PROFILE: ci
11+
NODE_VERSION: '22'
1112

1213
# Set default permissions as restrictive as possible
1314
permissions:
@@ -26,7 +27,7 @@ jobs:
2627
- name: Setup Node.js
2728
uses: actions/setup-node@v6
2829
with:
29-
node-version: '20'
30+
node-version: ${{ env.NODE_VERSION }}
3031
cache: 'npm'
3132
cache-dependency-path: '**/package-lock.json'
3233

@@ -55,7 +56,7 @@ jobs:
5556
- name: Setup Node.js
5657
uses: actions/setup-node@v6
5758
with:
58-
node-version: '20'
59+
node-version: ${{ env.NODE_VERSION }}
5960
cache: 'npm'
6061
cache-dependency-path: '**/package-lock.json'
6162

@@ -102,7 +103,7 @@ jobs:
102103
- name: Setup Node.js
103104
uses: actions/setup-node@v6
104105
with:
105-
node-version: '20'
106+
node-version: ${{ env.NODE_VERSION }}
106107
cache: 'npm'
107108
cache-dependency-path: '**/package-lock.json'
108109

@@ -141,7 +142,7 @@ jobs:
141142
- name: Setup Node.js
142143
uses: actions/setup-node@v6
143144
with:
144-
node-version: '20'
145+
node-version: ${{ env.NODE_VERSION }}
145146
cache: 'npm'
146147
cache-dependency-path: '**/package-lock.json'
147148

@@ -173,7 +174,7 @@ jobs:
173174
- name: Setup Node.js
174175
uses: actions/setup-node@v6
175176
with:
176-
node-version: '20'
177+
node-version: ${{ env.NODE_VERSION }}
177178
cache: 'npm'
178179
cache-dependency-path: '**/package-lock.json'
179180

@@ -205,19 +206,15 @@ jobs:
205206
jest:
206207
needs: [setup]
207208
runs-on: ubuntu-latest
208-
strategy:
209-
matrix:
210-
node-version: [20.x]
211-
fail-fast: false
212209

213210
steps:
214211
- name: Checkout Repo
215212
uses: actions/checkout@v6
216213

217-
- name: Setup Node.js ${{ matrix.node-version }}
214+
- name: Setup Node.js
218215
uses: actions/setup-node@v6
219216
with:
220-
node-version: ${{ matrix.node-version }}
217+
node-version: ${{ env.NODE_VERSION }}
221218
cache: 'npm'
222219
cache-dependency-path: '**/package-lock.json'
223220

@@ -242,6 +239,6 @@ jobs:
242239
if: always()
243240
uses: actions/upload-artifact@v5
244241
with:
245-
name: coverage-report-node-${{ matrix.node-version }}
242+
name: coverage-report-node-${{ env.NODE_VERSION }}
246243
path: coverage/
247244
retention-days: 30

jest.config.cjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ module.exports = {
1313
extensionsToTreatAsEsm: [".ts", ".tsx"],
1414
moduleFileExtensions: ["js", "jsx", "ts", "tsx", "json", "node"],
1515
moduleNameMapper: {
16+
"^(\\.{1,2}/.*)\\.js$": "$1",
1617
"\\.(css)$": "<rootDir>/src/__mocks__/styleMock.ts",
1718
"^~/(.*)$": "<rootDir>/src/$1",
1819
"^@api/(.*)$": "<rootDir>/src/pages/api/$1",
@@ -29,6 +30,7 @@ module.exports = {
2930
"^@variables$": "<rootDir>/src/config/markdown-variables.ts",
3031
"^@abi$": "<rootDir>/src/features/abi/index.ts",
3132
"^@lib$": "<rootDir>/src/lib/index.ts",
33+
"^@lib/(.*)\\.js$": "<rootDir>/src/lib/$1",
3234
"^@lib/(.*)$": "<rootDir>/src/lib/$1",
3335
"\\.ya?ml$": "<rootDir>/src/__mocks__/yamlMock.ts",
3436
},

0 commit comments

Comments
 (0)