Skip to content

Commit

Permalink
Merge branch 'main' into siyujiang/fix-cached-routes-cached-invalidation
Browse files Browse the repository at this point in the history
  • Loading branch information
jsy1218 authored Oct 18, 2024
2 parents 5aa1b96 + b3b8555 commit 5236650
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 34 deletions.
60 changes: 30 additions & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@
"@uniswap/default-token-list": "^11.13.0",
"@uniswap/permit2-sdk": "^1.3.0",
"@uniswap/router-sdk": "^1.14.0",
"@uniswap/sdk-core": "^5.8.3",
"@uniswap/sdk-core": "^5.8.5",
"@uniswap/swap-router-contracts": "^1.3.1",
"@uniswap/token-lists": "^1.0.0-beta.31",
"@uniswap/universal-router": "^1.6.0",
"@uniswap/universal-router-sdk": "^4.4.2",
"@uniswap/universal-router-sdk": "^4.6.1",
"@uniswap/v2-sdk": "^4.6.1",
"@uniswap/v3-sdk": "^3.17.1",
"@uniswap/v4-sdk": "^1.10.0",
Expand Down
3 changes: 2 additions & 1 deletion test/unit/providers/on-chain-quote-provider.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ import { ProviderConfig } from '../../../src/providers/provider';
dotenv.config();

describe('on chain quote provider', () => {
describe('v4 quote test', () => {
// skip for now, because SOR updated state view and quoter address
describe.skip('v4 quote test', () => {
const chain = ChainId.SEPOLIA;
const chainProvider = ID_TO_PROVIDER(chain);
const provider = new JsonRpcProvider(chainProvider, chain);
Expand Down
3 changes: 2 additions & 1 deletion test/unit/providers/v4/subgraph-provider.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import { ChainId } from '@uniswap/sdk-core';
dotenv.config();

describe('SubgraphProvider', () => {
it('can fetch subgraph pools', async () => {
// no v4 pool on new pool manager yet
it.skip('can fetch subgraph pools', async () => {
const subgraphProvider = new V4SubgraphProvider(ChainId.MAINNET, 2, 30000, true, 0.01, Number.MAX_VALUE, process.env.SUBGRAPH_URL_SEPOLIA);
const pools = await subgraphProvider.getPools();
pools.filter(pool => (pool as V4SubgraphPool).id === '0xa40318dea5fabf21971f683f641b54d6d7d86f5b083cd6f0af9332c5c7a9ec06')
Expand Down

0 comments on commit 5236650

Please sign in to comment.