Skip to content

Commit

Permalink
tests: remove unused structure
Browse files Browse the repository at this point in the history
  • Loading branch information
simsbluebox committed Jul 19, 2024
1 parent 60ba9b7 commit 46dcc65
Showing 1 changed file with 1 addition and 19 deletions.
20 changes: 1 addition & 19 deletions test/mock-data/alexSDKMockResponses.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
import {
AlexSDKResponse,
PoolData,
PriceData,
TokenInfo,
} from '../../src/types';
import { AlexSDKResponse, PriceData, TokenInfo } from '../../src/types';
import { TxToBroadCast } from '../../src/helpers/SwapHelper';
import { Currency } from '../../src';
import { AMMRouteSegment } from '../../src/utils/ammRouteResolver';
Expand Down Expand Up @@ -102,19 +97,6 @@ export const dummyCurrencies: TokenInfo[] = [
},
];

export const dummyPools: PoolData[] = [
{
tokenX: dummyTokenA,
tokenY: dummyTokenC,
factor: BigInt(5000000),
},
{
tokenX: dummyTokenC,
tokenY: dummyTokenB,
factor: BigInt(5000000),
},
];

export const dummyAlexSDKData: AlexSDKResponse = {
tokens: dummyCurrencies,
pools: [],
Expand Down

0 comments on commit 46dcc65

Please sign in to comment.