Skip to content

Commit

Permalink
fix versions
Browse files Browse the repository at this point in the history
  • Loading branch information
0xNe0x1 committed Jul 6, 2024
1 parent ca64cfb commit 3811613
Show file tree
Hide file tree
Showing 8 changed files with 1,495 additions and 30 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-evm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
with:
node-version: '16.x'
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'

- run: mv package.evm.json package.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-solana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
with:
node-version: '16.x'
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'

- run: mv package.solana.json package.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
with:
node-version: '16.x'
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install

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@v2
- uses: actions/setup-node@v2
with:
node-version: '16.x'
node-version: '18.x'
- name: Cache node modules
uses: actions/cache@v2
env:
Expand Down
2 changes: 1 addition & 1 deletion package.evm.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@
"clipboardy": "3.0.0"
},
"engines": {
"node": ">=16"
"node": ">=18"
}
}
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@
"@depay/web3-blockchains": "^9.4.2",
"@depay/web3-exchanges": "^13.8.3",
"@depay/web3-tokens": "^10.3.0",
"ethers": "^5.7.1",
"decimal.js": "^10.4.3"
"decimal.js": "^10.4.3",
"ethers": "^5.7.1"
},
"engines": {
"node": ">=16"
"node": ">=18"
},
"devDependencies": {
"@babel/core": "^7.12.9",
Expand Down Expand Up @@ -83,6 +83,7 @@
"eslint-plugin-import": "^2.22.1",
"ethers": "^5.7.1",
"fetch-mock": "^9.11.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^28.0.2",
"lodash": "^4.17.21",
"node-fetch": "^2.6.9",
Expand All @@ -97,7 +98,6 @@
"webpack": "^5.74.0"
},
"resolutions": {
"clipboardy": "3.0.0",
"lru-cache": "9.1.2"
"clipboardy": "3.0.0"
}
}
2 changes: 1 addition & 1 deletion package.solana.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@
"clipboardy": "3.0.0"
},
"engines": {
"node": ">=16"
"node": ">=18"
}
}
Loading

0 comments on commit 3811613

Please sign in to comment.