@uniswap/router-sdk 1.11.0 → 1.11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ import { Currency } from '@uniswap/sdk-core';
2
+ import { Pool as V4Pool } from '@uniswap/v4-sdk';
3
+ import { Pair } from '@uniswap/v2-sdk';
4
+ import { Pool as V3Pool } from '@uniswap/v3-sdk';
5
+ declare type TPool = Pair | V3Pool | V4Pool;
6
+ export declare function isValidTokenPath(prevPool: TPool, currentPool: TPool, inputToken: Currency): boolean;
7
+ export {};
package/package.json CHANGED
@@ -70,5 +70,5 @@
70
70
  ]
71
71
  ]
72
72
  },
73
- "version": "1.11.0"
73
+ "version": "1.11.1"
74
74
  }