Skip to content

Commit

Permalink
Update to Seaport v1.6 (#516)
Browse files Browse the repository at this point in the history
* update to seaport v1.6

* upgrade min node version

* fix package-lock
  • Loading branch information
ryanio authored Mar 25, 2024
1 parent 1e4ee7b commit 12778a8
Show file tree
Hide file tree
Showing 15 changed files with 1,984 additions and 2,531 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20.x
cache: npm

- name: Install dependencies
Expand All @@ -32,10 +33,11 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20.x
cache: npm

- name: Install dependencies
Expand All @@ -52,10 +54,11 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20.x
cache: npm

- name: Install dependencies
Expand Down
12 changes: 11 additions & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ const config: HardhatUserConfig = {
solidity: {
compilers: [
{
version: "0.8.13",
version: "0.8.24",
settings: {
evmVersion: "cancun",
optimizer: {
enabled: true,
runs: 200,
Expand All @@ -27,6 +28,15 @@ const config: HardhatUserConfig = {
},
},
},
{
version: "0.8.14",
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
],
},
networks: {
Expand Down
Loading

0 comments on commit 12778a8

Please sign in to comment.