Skip to content

Commit

Permalink
remove SFT DFNDR test case
Browse files Browse the repository at this point in the history
  • Loading branch information
jsy1218 committed Feb 12, 2025
1 parent 38a4aaa commit 6d53088
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/providers/token-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ export const DAI_BASE_SEPOLIA = new Token(
18,
'DAI',
'Dai Stablecoin'
)
);

//polygon mumbai tokens
export const WMATIC_POLYGON_MUMBAI = new Token(
Expand Down
2 changes: 1 addition & 1 deletion src/util/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const V2_SUPPORTED = [
ChainId.AVALANCHE,
ChainId.MONAD_TESTNET,
ChainId.UNICHAIN_SEPOLIA,
ChainId.UNICHAIN
ChainId.UNICHAIN,
];

export const V4_SUPPORTED = [ChainId.SEPOLIA];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ import {
const FORK_BLOCK = 20444945;
const UNIVERSAL_ROUTER_ADDRESS_V1_2 = UNIVERSAL_ROUTER_ADDRESS_BY_CHAIN(UniversalRouterVersion.V1_2, 1);
const SLIPPAGE = new Percent(15, 100); // 5% or 10_000?
const LARGE_SLIPPAGE = new Percent(45, 100); // 5% or 10_000?
const LARGE_SLIPPAGE = new Percent(75, 100); // 5% or 10_000?

// Those are the worst deviation (we intend to keep them low and strict) tested manually with FORK_BLOCK = 18222746
// We may need to tune them if we change the FORK_BLOCK
Expand Down Expand Up @@ -2888,7 +2888,6 @@ describe('alpha router integration', () => {
const tokenInAndTokenOut = [
[BULLET_WITHOUT_TAX, WETH9[ChainId.MAINNET]!],
[WETH9[ChainId.MAINNET]!, BULLET_WITHOUT_TAX],
[WETH9[ChainId.MAINNET]!, DFNDR_WITHOUT_TAX],
];

tokenInAndTokenOut.forEach(([tokenIn, tokenOut]) => {
Expand Down

0 comments on commit 6d53088

Please sign in to comment.