Skip to content

Commit

Permalink
feat(uniswapx-sdk): add overrides to multicall to support quoting pri…
Browse files Browse the repository at this point in the history
…ority orders (#73)
  • Loading branch information
zhongeric authored Aug 13, 2024
1 parent 1ff9780 commit b2148e6
Show file tree
Hide file tree
Showing 13 changed files with 600 additions and 34 deletions.
1 change: 1 addition & 0 deletions .github/workflows/monorepo-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ jobs:
uses: nick-fields/retry@7d4a37704547a311dbb66ebdf5b23ec19374a767
env:
FORK_URL: ${{ secrets.FORK_URL }}
FORK_URL_8453: ${{ secrets.FORK_URL_8453 }}
with:
timeout_minutes: 20
retry_wait_seconds: 2
Expand Down
1 change: 1 addition & 0 deletions sdks/uniswapx-sdk/integration/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.env
6 changes: 6 additions & 0 deletions sdks/uniswapx-sdk/integration/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,17 @@ import "@nomiclabs/hardhat-ethers";
import "@nomicfoundation/hardhat-chai-matchers";
import "@typechain/hardhat";

import 'dotenv/config'

const config: HardhatUserConfig = {
solidity: "0.8.16",
networks: {
hardhat: {
chainId: 1,
forking: {
enabled: true,
url: process.env.FORK_URL!
}
},
},
};
Expand Down
1 change: 1 addition & 0 deletions sdks/uniswapx-sdk/integration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@uniswap/sdk-core": "^5.0.0",
"dotenv": "^16.0.3",
"ethers": "^5.7.0",
"typechain": "^8.1.0"
}
Expand Down
Loading

0 comments on commit b2148e6

Please sign in to comment.