Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into pxrl/lensSepoliaMul…
Browse files Browse the repository at this point in the history
…ticall
  • Loading branch information
pxrl committed Feb 13, 2025
2 parents 19f558c + 5d4db39 commit 8778ede
Show file tree
Hide file tree
Showing 67 changed files with 3,832 additions and 1,373 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
- run: yarn install
- run: yarn build

2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
- run: yarn install
- run: yarn lint-check
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: "18.x"
node-version: "20.x"
always-auth: true
registry-url: "https://registry.npmjs.org"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
- run: yarn install
- run: yarn test
env:
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18
20
57 changes: 0 additions & 57 deletions e2e/oracle.e2e.ts

This file was deleted.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "@across-protocol/sdk",
"author": "UMA Team",
"version": "3.3.32",
"version": "4.1.9",
"license": "AGPL-3.0",
"homepage": "https://docs.across.to/reference/sdk",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=16.18.0"
"node": ">=20.18.0"
},
"scripts": {
"start": "yarn typechain && nodemon -e ts,tsx,json,js,jsx --watch ./src --ignore ./dist --exec 'yarn dev'",
Expand Down Expand Up @@ -99,8 +99,8 @@
},
"dependencies": {
"@across-protocol/across-token": "^1.0.0",
"@across-protocol/constants": "^3.1.25",
"@across-protocol/contracts": "^3.0.19",
"@across-protocol/constants": "^3.1.34",
"@across-protocol/contracts": "4.0.0",
"@eth-optimism/sdk": "^3.3.1",
"@ethersproject/bignumber": "^5.7.0",
"@pinata/sdk": "^2.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/caching/Arweave/ArweaveClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export class ArweaveClient {
// If the data does not match the validator, log a warning and return null.
this.logger.warn({
at: "ArweaveClient:get",
message: "Retrieved value from Arweave does not match the expected type",
message: `Retrieved value from Arweave does not match the expected type: ${e}`,
});
return null;
}
Expand Down
Loading

0 comments on commit 8778ede

Please sign in to comment.