@paraswap/dex-lib 3.8.23 → 3.8.24
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.
- package/build/abi/{integral/pool.json → inception/inception-ineth-pool.json} +558 -537
- package/build/abi/inception/inception-ineth.json +609 -0
- package/build/abi/inception/inception-ratio-feed.json +93 -0
- package/build/abi/inception/inception-vault.json +991 -0
- package/build/abi/infusion/InfusionFactory.json +147 -0
- package/build/abi/infusion/InfusionPair.json +658 -0
- package/build/abi/infusion/InfusionRouter.json +442 -0
- package/build/dex/aave-v1/aave-v1.d.ts +2 -1
- package/build/dex/aave-v1/aave-v1.js +22 -0
- package/build/dex/aave-v1/aave-v1.js.map +1 -1
- package/build/dex/idle-dao/idle-dao-pool.d.ts +56 -0
- package/build/dex/idle-dao/idle-dao-pool.js +176 -0
- package/build/dex/idle-dao/idle-dao-pool.js.map +1 -0
- package/build/dex/idle-dao/idle-dao-pooling-pool.d.ts +16 -0
- package/build/dex/idle-dao/idle-dao-pooling-pool.js +57 -0
- package/build/dex/idle-dao/idle-dao-pooling-pool.js.map +1 -0
- package/build/dex/idle-dao/scripts.d.ts +9 -0
- package/build/dex/idle-dao/scripts.js +552 -0
- package/build/dex/idle-dao/scripts.js.map +1 -0
- package/build/dex/inception/config.d.ts +5 -0
- package/build/dex/inception/config.js +112 -0
- package/build/dex/inception/config.js.map +1 -0
- package/build/dex/inception/inception-event-pool.d.ts +23 -0
- package/build/dex/inception/inception-event-pool.js +34 -0
- package/build/dex/inception/inception-event-pool.js.map +1 -0
- package/build/dex/{integral/integral.d.ts → inception/inception-native.d.ts} +21 -19
- package/build/dex/inception/inception-native.js +131 -0
- package/build/dex/inception/inception-native.js.map +1 -0
- package/build/dex/inception/inception-pool.d.ts +18 -0
- package/build/dex/inception/inception-pool.js +32 -0
- package/build/dex/inception/inception-pool.js.map +1 -0
- package/build/dex/inception/inception-price-feed.d.ts +19 -0
- package/build/dex/inception/inception-price-feed.js +51 -0
- package/build/dex/inception/inception-price-feed.js.map +1 -0
- package/build/dex/inception/inception.d.ts +44 -0
- package/build/dex/inception/inception.js +162 -0
- package/build/dex/inception/inception.js.map +1 -0
- package/build/dex/inception/tokens.d.ts +9 -0
- package/build/dex/inception/tokens.js +28 -0
- package/build/dex/inception/tokens.js.map +1 -0
- package/build/dex/inception/types.d.ts +22 -0
- package/build/dex/inception/types.js +3 -0
- package/build/dex/inception/types.js.map +1 -0
- package/build/dex/inception/utils.d.ts +7 -0
- package/build/dex/inception/utils.js +58 -0
- package/build/dex/inception/utils.js.map +1 -0
- package/build/dex/index.js +2 -0
- package/build/dex/index.js.map +1 -1
- package/build/dex/infusion/config.d.ts +3 -0
- package/build/dex/infusion/config.js +20 -0
- package/build/dex/infusion/config.js.map +1 -0
- package/build/dex/infusion/infusion-stable-pool.d.ts +4 -0
- package/build/dex/infusion/infusion-stable-pool.js +74 -0
- package/build/dex/infusion/infusion-stable-pool.js.map +1 -0
- package/build/dex/infusion/infusion.d.ts +51 -0
- package/build/dex/infusion/infusion.js +457 -0
- package/build/dex/infusion/infusion.js.map +1 -0
- package/build/dex/infusion/types.d.ts +45 -0
- package/build/dex/infusion/types.js +3 -0
- package/build/dex/infusion/types.js.map +1 -0
- package/build/dex/infusion/utils/isStablePair.d.ts +2 -0
- package/build/dex/infusion/utils/isStablePair.js +18 -0
- package/build/dex/infusion/utils/isStablePair.js.map +1 -0
- package/build/dex/lite-psm/lite-psm.js +2 -5
- package/build/dex/lite-psm/lite-psm.js.map +1 -1
- package/build/dex/maker-psm/maker-psm.js +2 -6
- package/build/dex/maker-psm/maker-psm.js.map +1 -1
- package/build/dex/oswap/oswap.d.ts +2 -2
- package/build/dex/oswap/oswap.js +43 -36
- package/build/dex/oswap/oswap.js.map +1 -1
- package/build/dex/platypus/platypus.d.ts +2 -1
- package/build/dex/platypus/platypus.js +31 -0
- package/build/dex/platypus/platypus.js.map +1 -1
- package/build/dex/swaap-v1/swaap-v1.d.ts +2 -1
- package/build/dex/swaap-v1/swaap-v1.js +10 -0
- package/build/dex/swaap-v1/swaap-v1.js.map +1 -1
- package/package.json +1 -1
- package/src/abi/infusion/InfusionFactory.json +147 -0
- package/src/abi/infusion/InfusionPair.json +658 -0
- package/src/abi/infusion/InfusionRouter.json +442 -0
- package/src/dex/index.ts +2 -0
- package/src/dex/infusion/config.ts +21 -0
- package/src/dex/infusion/infusion-e2e.test.ts +110 -0
- package/src/dex/infusion/infusion-integration.test.ts +232 -0
- package/src/dex/infusion/infusion-stable-pool.ts +91 -0
- package/src/dex/infusion/infusion.ts +652 -0
- package/src/dex/infusion/types.ts +60 -0
- package/src/dex/infusion/utils/isStablePair.ts +18 -0
- package/src/dex/lite-psm/lite-psm.ts +2 -5
- package/src/dex/maker-psm/maker-psm.ts +2 -6
- package/tests/constants-e2e.ts +1 -1
- package/.vscode/launch.json +0 -16
- package/.vscode/settings.json +0 -3
- package/build/abi/Uncompressor.json +0 -250
- package/build/abi/integral/factory.json +0 -333
- package/build/abi/integral/oracle.json +0 -501
- package/build/abi/integral/relayer.json +0 -1536
- package/build/dex/bProtocol.d.ts +0 -18
- package/build/dex/bProtocol.js +0 -39
- package/build/dex/bProtocol.js.map +0 -1
- package/build/dex/bancor.d.ts +0 -26
- package/build/dex/bancor.js +0 -58
- package/build/dex/bancor.js.map +0 -1
- package/build/dex/compound.d.ts +0 -18
- package/build/dex/compound.js +0 -46
- package/build/dex/compound.js.map +0 -1
- package/build/dex/curve-v2.d.ts +0 -58
- package/build/dex/curve-v2.js +0 -180
- package/build/dex/curve-v2.js.map +0 -1
- package/build/dex/dodo-v1.d.ts +0 -33
- package/build/dex/dodo-v1.js +0 -63
- package/build/dex/dodo-v1.js.map +0 -1
- package/build/dex/etherfi/etherfi.d.ts +0 -26
- package/build/dex/etherfi/etherfi.js +0 -96
- package/build/dex/etherfi/etherfi.js.map +0 -1
- package/build/dex/integral/config.d.ts +0 -4
- package/build/dex/integral/config.js +0 -20
- package/build/dex/integral/config.js.map +0 -1
- package/build/dex/integral/context.d.ts +0 -40
- package/build/dex/integral/context.js +0 -158
- package/build/dex/integral/context.js.map +0 -1
- package/build/dex/integral/helpers.d.ts +0 -17
- package/build/dex/integral/helpers.js +0 -157
- package/build/dex/integral/helpers.js.map +0 -1
- package/build/dex/integral/integral-factory.d.ts +0 -24
- package/build/dex/integral/integral-factory.js +0 -95
- package/build/dex/integral/integral-factory.js.map +0 -1
- package/build/dex/integral/integral-pool.d.ts +0 -50
- package/build/dex/integral/integral-pool.js +0 -149
- package/build/dex/integral/integral-pool.js.map +0 -1
- package/build/dex/integral/integral-pricing.d.ts +0 -18
- package/build/dex/integral/integral-pricing.js +0 -114
- package/build/dex/integral/integral-pricing.js.map +0 -1
- package/build/dex/integral/integral-relayer.d.ts +0 -42
- package/build/dex/integral/integral-relayer.js +0 -192
- package/build/dex/integral/integral-relayer.js.map +0 -1
- package/build/dex/integral/integral-token.d.ts +0 -27
- package/build/dex/integral/integral-token.js +0 -59
- package/build/dex/integral/integral-token.js.map +0 -1
- package/build/dex/integral/integral.js +0 -376
- package/build/dex/integral/integral.js.map +0 -1
- package/build/dex/integral/types.d.ts +0 -85
- package/build/dex/integral/types.js +0 -9
- package/build/dex/integral/types.js.map +0 -1
- package/build/dex/integral/utils-e2e.d.ts +0 -9
- package/build/dex/integral/utils-e2e.js +0 -131
- package/build/dex/integral/utils-e2e.js.map +0 -1
- package/build/dex/integral/utils.d.ts +0 -17
- package/build/dex/integral/utils.js +0 -94
- package/build/dex/integral/utils.js.map +0 -1
- package/build/dex/lido.d.ts +0 -19
- package/build/dex/lido.js +0 -42
- package/build/dex/lido.js.map +0 -1
- package/build/dex/onebit.d.ts +0 -25
- package/build/dex/onebit.js +0 -42
- package/build/dex/onebit.js.map +0 -1
- package/build/dex/sdai/config.d.ts +0 -11
- package/build/dex/sdai/config.js +0 -21
- package/build/dex/sdai/config.js.map +0 -1
- package/build/dex/sdai/constants.d.ts +0 -2
- package/build/dex/sdai/constants.js +0 -6
- package/build/dex/sdai/constants.js.map +0 -1
- package/build/dex/sdai/scripts/validate-state.d.ts +0 -1
- package/build/dex/sdai/scripts/validate-state.js +0 -102
- package/build/dex/sdai/scripts/validate-state.js.map +0 -1
- package/build/dex/sdai/sdai-pool.d.ts +0 -16
- package/build/dex/sdai/sdai-pool.js +0 -85
- package/build/dex/sdai/sdai-pool.js.map +0 -1
- package/build/dex/sdai/sdai.d.ts +0 -51
- package/build/dex/sdai/sdai.js +0 -172
- package/build/dex/sdai/sdai.js.map +0 -1
- package/build/dex/sdai/types.d.ts +0 -21
- package/build/dex/sdai/types.js +0 -11
- package/build/dex/sdai/types.js.map +0 -1
- package/build/dex/sdai/utils.d.ts +0 -4
- package/build/dex/sdai/utils.js +0 -39
- package/build/dex/sdai/utils.js.map +0 -1
- package/build/dex/smoothy.d.ts +0 -26
- package/build/dex/smoothy.js +0 -48
- package/build/dex/smoothy.js.map +0 -1
- package/build/dex/stable-pool.d.ts +0 -28
- package/build/dex/stable-pool.js +0 -62
- package/build/dex/stable-pool.js.map +0 -1
- package/build/dex/trader-joe-v2.1/optimizer.d.ts +0 -2
- package/build/dex/trader-joe-v2.1/optimizer.js +0 -44
- package/build/dex/trader-joe-v2.1/optimizer.js.map +0 -1
- package/build/dex/trader-joe-v2.1.d.ts +0 -43
- package/build/dex/trader-joe-v2.1.js +0 -79
- package/build/dex/trader-joe-v2.1.js.map +0 -1
- package/build/executor/compressor/Compressor.d.ts +0 -23
- package/build/executor/compressor/Compressor.js +0 -144
- package/build/executor/compressor/Compressor.js.map +0 -1
- package/build/executor/compressor/compress.d.ts +0 -17
- package/build/executor/compressor/compress.js +0 -187
- package/build/executor/compressor/compress.js.map +0 -1
- package/build/executor/compressor/compress_functions/addressSubstitution.d.ts +0 -6
- package/build/executor/compressor/compress_functions/addressSubstitution.js +0 -29
- package/build/executor/compressor/compress_functions/addressSubstitution.js.map +0 -1
- package/build/executor/compressor/compress_functions/addressSubstitutionFromObject.d.ts +0 -10
- package/build/executor/compressor/compress_functions/addressSubstitutionFromObject.js +0 -40
- package/build/executor/compressor/compress_functions/addressSubstitutionFromObject.js.map +0 -1
- package/build/executor/compressor/compress_functions/byteSubstitution.d.ts +0 -11
- package/build/executor/compressor/compress_functions/byteSubstitution.js +0 -64
- package/build/executor/compressor/compress_functions/byteSubstitution.js.map +0 -1
- package/build/executor/compressor/compress_functions/ffSubstitution.d.ts +0 -7
- package/build/executor/compressor/compress_functions/ffSubstitution.js +0 -54
- package/build/executor/compressor/compress_functions/ffSubstitution.js.map +0 -1
- package/build/executor/compressor/compress_functions/findLongestAndSubstitute.d.ts +0 -8
- package/build/executor/compressor/compress_functions/findLongestAndSubstitute.js +0 -67
- package/build/executor/compressor/compress_functions/findLongestAndSubstitute.js.map +0 -1
- package/build/executor/compressor/compress_functions/findLongestAndSubstitute_old.d.ts +0 -8
- package/build/executor/compressor/compress_functions/findLongestAndSubstitute_old.js +0 -61
- package/build/executor/compressor/compress_functions/findLongestAndSubstitute_old.js.map +0 -1
- package/build/executor/compressor/compress_functions/reverseAddressSubstitution.d.ts +0 -6
- package/build/executor/compressor/compress_functions/reverseAddressSubstitution.js +0 -37
- package/build/executor/compressor/compress_functions/reverseAddressSubstitution.js.map +0 -1
- package/build/executor/compressor/compress_functions/searchUnusedBytes.d.ts +0 -9
- package/build/executor/compressor/compress_functions/searchUnusedBytes.js +0 -33
- package/build/executor/compressor/compress_functions/searchUnusedBytes.js.map +0 -1
- package/build/executor/compressor/fetchSaved.d.ts +0 -0
- package/build/executor/compressor/fetchSaved.js +0 -17
- package/build/executor/compressor/fetchSaved.js.map +0 -1
- package/build/executor/compressor/utils/computeCostL2.d.ts +0 -2
- package/build/executor/compressor/utils/computeCostL2.js +0 -14
- package/build/executor/compressor/utils/computeCostL2.js.map +0 -1
- package/build/executor/compressor/utils/findLongestDuplicatedString.d.ts +0 -2
- package/build/executor/compressor/utils/findLongestDuplicatedString.js +0 -30
- package/build/executor/compressor/utils/findLongestDuplicatedString.js.map +0 -1
- package/build/executor/compressor/utils/getAllIndexes.d.ts +0 -2
- package/build/executor/compressor/utils/getAllIndexes.js +0 -12
- package/build/executor/compressor/utils/getAllIndexes.js.map +0 -1
- package/build/executor/compressor/utils/getByteForAddress.d.ts +0 -2
- package/build/executor/compressor/utils/getByteForAddress.js +0 -14
- package/build/executor/compressor/utils/getByteForAddress.js.map +0 -1
- package/build/executor/compressor/utils/intTo2Bytes.d.ts +0 -2
- package/build/executor/compressor/utils/intTo2Bytes.js +0 -14
- package/build/executor/compressor/utils/intTo2Bytes.js.map +0 -1
- package/build/executor/compressor/utils/intTo3Bytes.d.ts +0 -2
- package/build/executor/compressor/utils/intTo3Bytes.js +0 -18
- package/build/executor/compressor/utils/intTo3Bytes.js.map +0 -1
- package/build/executor/compressor/utils/intToByte.d.ts +0 -2
- package/build/executor/compressor/utils/intToByte.js +0 -10
- package/build/executor/compressor/utils/intToByte.js.map +0 -1
|
@@ -0,0 +1,652 @@
|
|
|
1
|
+
import { UniswapV2 } from '../uniswap-v2/uniswap-v2';
|
|
2
|
+
import {
|
|
3
|
+
Network,
|
|
4
|
+
NULL_ADDRESS,
|
|
5
|
+
SUBGRAPH_TIMEOUT,
|
|
6
|
+
DEST_TOKEN_PARASWAP_TRANSFERS,
|
|
7
|
+
SRC_TOKEN_PARASWAP_TRANSFERS,
|
|
8
|
+
} from '../../constants';
|
|
9
|
+
import {
|
|
10
|
+
AdapterExchangeParam,
|
|
11
|
+
Address,
|
|
12
|
+
DexExchangeParam,
|
|
13
|
+
ExchangePrices,
|
|
14
|
+
PoolLiquidity,
|
|
15
|
+
Token,
|
|
16
|
+
TransferFeeParams,
|
|
17
|
+
} from '../../types';
|
|
18
|
+
import { IDexHelper } from '../../dex-helper';
|
|
19
|
+
import erc20ABI from '../../abi/erc20.json';
|
|
20
|
+
import { getBigIntPow, getDexKeysWithNetwork, isETHAddress } from '../../utils';
|
|
21
|
+
import infusionFactoryABI from '../../abi/infusion/InfusionFactory.json';
|
|
22
|
+
import infusionPairABI from '../../abi/infusion/InfusionPair.json';
|
|
23
|
+
import infusionRouterABI from '../../abi/infusion/InfusionRouter.json';
|
|
24
|
+
import _ from 'lodash';
|
|
25
|
+
import { NumberAsString, SwapSide } from '@paraswap/core';
|
|
26
|
+
import { Interface, AbiCoder } from '@ethersproject/abi';
|
|
27
|
+
import { InfusionStablePool } from './infusion-stable-pool';
|
|
28
|
+
import { Uniswapv2ConstantProductPool } from '../uniswap-v2/uniswap-v2-constant-product-pool';
|
|
29
|
+
import {
|
|
30
|
+
PoolState,
|
|
31
|
+
InfusionData,
|
|
32
|
+
InfusionPair,
|
|
33
|
+
InfusionPoolOrderedParams,
|
|
34
|
+
InfusionParam,
|
|
35
|
+
} from './types';
|
|
36
|
+
import { InfusionConfig } from './config';
|
|
37
|
+
import { applyTransferFee } from '../../lib/token-transfer-fee';
|
|
38
|
+
import { isStablePair } from './utils/isStablePair';
|
|
39
|
+
|
|
40
|
+
export enum InfusionRouterFunctions {
|
|
41
|
+
sellExactEth = 'swapExactETHForTokens',
|
|
42
|
+
sellExactToken = 'swapExactTokensForETH',
|
|
43
|
+
swapExactIn = 'swapExactTokensForTokens',
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
const VelodromeFactoryABI = [
|
|
47
|
+
{
|
|
48
|
+
inputs: [{ internalType: 'bool', name: '_stable', type: 'bool' }],
|
|
49
|
+
name: 'getFee',
|
|
50
|
+
outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }],
|
|
51
|
+
stateMutability: 'view',
|
|
52
|
+
type: 'function',
|
|
53
|
+
},
|
|
54
|
+
];
|
|
55
|
+
|
|
56
|
+
const velodromeFactoryIface = new Interface(VelodromeFactoryABI);
|
|
57
|
+
const erc20Iface = new Interface(erc20ABI);
|
|
58
|
+
const infusionPairIface = new Interface(infusionPairABI);
|
|
59
|
+
const defaultAbiCoder = new AbiCoder();
|
|
60
|
+
|
|
61
|
+
export class Infusion extends UniswapV2 {
|
|
62
|
+
pairs: { [key: string]: InfusionPair } = {};
|
|
63
|
+
stableFee?: number;
|
|
64
|
+
volatileFee?: number;
|
|
65
|
+
|
|
66
|
+
readonly isFeeOnTransferSupported: boolean = true;
|
|
67
|
+
readonly SRC_TOKEN_DEX_TRANSFERS = 1;
|
|
68
|
+
readonly DEST_TOKEN_DEX_TRANSFERS = 1;
|
|
69
|
+
|
|
70
|
+
public static dexKeysWithNetwork: { key: string; networks: Network[] }[] =
|
|
71
|
+
getDexKeysWithNetwork(_.pick(InfusionConfig, ['Infusion']));
|
|
72
|
+
|
|
73
|
+
constructor(
|
|
74
|
+
protected network: Network,
|
|
75
|
+
dexKey: string,
|
|
76
|
+
protected dexHelper: IDexHelper,
|
|
77
|
+
isDynamicFees = true,
|
|
78
|
+
factoryAddress?: Address,
|
|
79
|
+
subgraphURL?: string,
|
|
80
|
+
initCode?: string,
|
|
81
|
+
feeCode?: number,
|
|
82
|
+
poolGasCost?: number,
|
|
83
|
+
routerAddress?: Address,
|
|
84
|
+
) {
|
|
85
|
+
super(
|
|
86
|
+
network,
|
|
87
|
+
dexKey,
|
|
88
|
+
dexHelper,
|
|
89
|
+
isDynamicFees,
|
|
90
|
+
factoryAddress !== undefined
|
|
91
|
+
? factoryAddress
|
|
92
|
+
: InfusionConfig[dexKey][network].factoryAddress,
|
|
93
|
+
subgraphURL === ''
|
|
94
|
+
? undefined
|
|
95
|
+
: subgraphURL !== undefined
|
|
96
|
+
? subgraphURL
|
|
97
|
+
: InfusionConfig[dexKey][network].subgraphURL,
|
|
98
|
+
initCode !== undefined
|
|
99
|
+
? initCode
|
|
100
|
+
: InfusionConfig[dexKey][network].initCode,
|
|
101
|
+
feeCode !== undefined ? feeCode : InfusionConfig[dexKey][network].feeCode,
|
|
102
|
+
poolGasCost !== undefined
|
|
103
|
+
? poolGasCost
|
|
104
|
+
: InfusionConfig[dexKey][network].poolGasCost,
|
|
105
|
+
infusionPairIface,
|
|
106
|
+
);
|
|
107
|
+
|
|
108
|
+
this.stableFee = InfusionConfig[dexKey][network].stableFee;
|
|
109
|
+
this.volatileFee = InfusionConfig[dexKey][network].volatileFee;
|
|
110
|
+
|
|
111
|
+
this.factory = new dexHelper.web3Provider.eth.Contract(
|
|
112
|
+
infusionFactoryABI as any,
|
|
113
|
+
factoryAddress !== undefined
|
|
114
|
+
? factoryAddress
|
|
115
|
+
: InfusionConfig[dexKey][network].factoryAddress,
|
|
116
|
+
);
|
|
117
|
+
|
|
118
|
+
this.router =
|
|
119
|
+
routerAddress !== undefined
|
|
120
|
+
? routerAddress
|
|
121
|
+
: InfusionConfig[dexKey][network].router || '';
|
|
122
|
+
|
|
123
|
+
this.feeFactor =
|
|
124
|
+
InfusionConfig[dexKey][network].feeFactor || this.feeFactor;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
async findInfusionPair(from: Token, to: Token, stable: boolean) {
|
|
128
|
+
if (from.address.toLowerCase() === to.address.toLowerCase()) return null;
|
|
129
|
+
const [token0, token1] =
|
|
130
|
+
from.address.toLowerCase() < to.address.toLowerCase()
|
|
131
|
+
? [from, to]
|
|
132
|
+
: [to, from];
|
|
133
|
+
|
|
134
|
+
const typePostfix = this.poolPostfix(stable);
|
|
135
|
+
const key = `${token0.address.toLowerCase()}-${token1.address.toLowerCase()}-${typePostfix}`;
|
|
136
|
+
let pair = this.pairs[key];
|
|
137
|
+
if (pair) return pair;
|
|
138
|
+
|
|
139
|
+
let exchange = await this.factory.methods
|
|
140
|
+
// Infusion has additional boolean parameter "StablePool"
|
|
141
|
+
// At first we look for uniswap-like volatile pool
|
|
142
|
+
.getPair(token0.address, token1.address, stable)
|
|
143
|
+
.call();
|
|
144
|
+
|
|
145
|
+
if (exchange === NULL_ADDRESS) {
|
|
146
|
+
pair = { token0, token1, stable };
|
|
147
|
+
} else {
|
|
148
|
+
pair = { token0, token1, exchange, stable };
|
|
149
|
+
}
|
|
150
|
+
this.pairs[key] = pair;
|
|
151
|
+
return pair;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
async batchCatchUpPairs(pairs: [Token, Token][], blockNumber: number) {
|
|
155
|
+
if (!blockNumber) return;
|
|
156
|
+
const pairsToFetch: InfusionPair[] = [];
|
|
157
|
+
for (const _pair of pairs) {
|
|
158
|
+
const pairs = await Promise.all([
|
|
159
|
+
this.findInfusionPair(_pair[0], _pair[1], true),
|
|
160
|
+
this.findInfusionPair(_pair[0], _pair[1], false),
|
|
161
|
+
]);
|
|
162
|
+
for (const pair of pairs) {
|
|
163
|
+
if (!(pair && pair.exchange)) continue;
|
|
164
|
+
if (!pair.pool) {
|
|
165
|
+
pairsToFetch.push(pair);
|
|
166
|
+
} else if (!pair.pool.getState(blockNumber)) {
|
|
167
|
+
pairsToFetch.push(pair);
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
if (!pairsToFetch.length) return;
|
|
173
|
+
|
|
174
|
+
const reserves = await this.getManyPoolReserves(pairsToFetch, blockNumber);
|
|
175
|
+
|
|
176
|
+
if (reserves.length !== pairsToFetch.length) {
|
|
177
|
+
this.logger.error(
|
|
178
|
+
`Error_getManyPoolReserves didn't get any pool reserves`,
|
|
179
|
+
);
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
for (let i = 0; i < pairsToFetch.length; i++) {
|
|
183
|
+
const pairState = reserves[i];
|
|
184
|
+
const pair = pairsToFetch[i];
|
|
185
|
+
if (!pair.pool) {
|
|
186
|
+
await this.addPool(
|
|
187
|
+
pair,
|
|
188
|
+
pairState.reserves0,
|
|
189
|
+
pairState.reserves1,
|
|
190
|
+
pairState.feeCode,
|
|
191
|
+
blockNumber,
|
|
192
|
+
);
|
|
193
|
+
} else pair.pool.setState(pairState, blockNumber);
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
async getManyPoolReserves(
|
|
198
|
+
pairs: InfusionPair[],
|
|
199
|
+
blockNumber: number,
|
|
200
|
+
): Promise<PoolState[]> {
|
|
201
|
+
try {
|
|
202
|
+
const multiCallFeeData = pairs.map(pair =>
|
|
203
|
+
this.getFeesMultiCallData(pair),
|
|
204
|
+
);
|
|
205
|
+
const calldata = pairs
|
|
206
|
+
.map((pair, i) => {
|
|
207
|
+
let calldata = [
|
|
208
|
+
{
|
|
209
|
+
target: pair.token0.address,
|
|
210
|
+
callData: erc20Iface.encodeFunctionData('balanceOf', [
|
|
211
|
+
pair.exchange!,
|
|
212
|
+
]),
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
target: pair.token1.address,
|
|
216
|
+
callData: erc20Iface.encodeFunctionData('balanceOf', [
|
|
217
|
+
pair.exchange!,
|
|
218
|
+
]),
|
|
219
|
+
},
|
|
220
|
+
];
|
|
221
|
+
if (this.isDynamicFees) calldata.push(multiCallFeeData[i]!.callEntry);
|
|
222
|
+
return calldata;
|
|
223
|
+
})
|
|
224
|
+
.flat();
|
|
225
|
+
|
|
226
|
+
const data: { returnData: any[] } =
|
|
227
|
+
await this.dexHelper.multiContract.methods
|
|
228
|
+
.aggregate(calldata)
|
|
229
|
+
.call({}, blockNumber);
|
|
230
|
+
|
|
231
|
+
const returnData = _.chunk(data.returnData, this.isDynamicFees ? 3 : 2);
|
|
232
|
+
|
|
233
|
+
return pairs.map((pair, i) => ({
|
|
234
|
+
reserves0: defaultAbiCoder
|
|
235
|
+
.decode(['uint256'], returnData[i][0])[0]
|
|
236
|
+
.toString(),
|
|
237
|
+
reserves1: defaultAbiCoder
|
|
238
|
+
.decode(['uint256'], returnData[i][1])[0]
|
|
239
|
+
.toString(),
|
|
240
|
+
feeCode: this.isDynamicFees
|
|
241
|
+
? multiCallFeeData[i]!.callDecoder(returnData[i][2])
|
|
242
|
+
: (pair.stable ? this.stableFee : this.volatileFee) || this.feeCode,
|
|
243
|
+
}));
|
|
244
|
+
} catch (e) {
|
|
245
|
+
this.logger.error(
|
|
246
|
+
`Error_getManyPoolReserves could not get reserves with error:`,
|
|
247
|
+
e,
|
|
248
|
+
);
|
|
249
|
+
return [];
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
async getSellPrice(
|
|
254
|
+
priceParams: InfusionPoolOrderedParams,
|
|
255
|
+
srcAmount: bigint,
|
|
256
|
+
): Promise<bigint> {
|
|
257
|
+
return priceParams.stable
|
|
258
|
+
? InfusionStablePool.getSellPrice(priceParams, srcAmount, this.feeFactor)
|
|
259
|
+
: Uniswapv2ConstantProductPool.getSellPrice(
|
|
260
|
+
priceParams,
|
|
261
|
+
srcAmount,
|
|
262
|
+
this.feeFactor,
|
|
263
|
+
);
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
async getPricesVolume(
|
|
267
|
+
_from: Token,
|
|
268
|
+
_to: Token,
|
|
269
|
+
amounts: bigint[],
|
|
270
|
+
side: SwapSide,
|
|
271
|
+
blockNumber: number,
|
|
272
|
+
// list of pool identifiers to use for pricing, if undefined use all pools
|
|
273
|
+
limitPools?: string[],
|
|
274
|
+
transferFees: TransferFeeParams = {
|
|
275
|
+
srcFee: 0,
|
|
276
|
+
destFee: 0,
|
|
277
|
+
srcDexFee: 0,
|
|
278
|
+
destDexFee: 0,
|
|
279
|
+
},
|
|
280
|
+
): Promise<ExchangePrices<InfusionData> | null> {
|
|
281
|
+
try {
|
|
282
|
+
if (side === SwapSide.BUY) return null; // Buy side not implemented yet
|
|
283
|
+
const from = this.dexHelper.config.wrapETH(_from);
|
|
284
|
+
const to = this.dexHelper.config.wrapETH(_to);
|
|
285
|
+
|
|
286
|
+
if (from.address.toLowerCase() === to.address.toLowerCase()) {
|
|
287
|
+
return null;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
const tokenAddress = [
|
|
291
|
+
from.address.toLowerCase(),
|
|
292
|
+
to.address.toLowerCase(),
|
|
293
|
+
]
|
|
294
|
+
.sort((a, b) => (a > b ? 1 : -1))
|
|
295
|
+
.join('_');
|
|
296
|
+
|
|
297
|
+
await this.batchCatchUpPairs([[from, to]], blockNumber);
|
|
298
|
+
|
|
299
|
+
const resultPromises = [false, true].map(async stable => {
|
|
300
|
+
// We don't support fee on transfer for stable pools yet
|
|
301
|
+
if (
|
|
302
|
+
stable &&
|
|
303
|
+
(transferFees.srcFee !== 0 || transferFees.srcDexFee !== 0)
|
|
304
|
+
) {
|
|
305
|
+
return null;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
const poolIdentifier =
|
|
309
|
+
`${this.dexKey}_${tokenAddress}` + this.poolPostfix(stable);
|
|
310
|
+
|
|
311
|
+
if (limitPools && limitPools.every(p => p !== poolIdentifier))
|
|
312
|
+
return null;
|
|
313
|
+
|
|
314
|
+
const isSell = side === SwapSide.SELL;
|
|
315
|
+
const pairParam = await this.getInfusionPairOrderedParams(
|
|
316
|
+
from,
|
|
317
|
+
to,
|
|
318
|
+
blockNumber,
|
|
319
|
+
stable,
|
|
320
|
+
transferFees.srcDexFee,
|
|
321
|
+
);
|
|
322
|
+
|
|
323
|
+
if (!pairParam) return null;
|
|
324
|
+
|
|
325
|
+
const unitAmount = getBigIntPow(from.decimals);
|
|
326
|
+
|
|
327
|
+
const [unitVolumeWithFee, ...amountsWithFee] = applyTransferFee(
|
|
328
|
+
[unitAmount, ...amounts],
|
|
329
|
+
side,
|
|
330
|
+
isSell ? transferFees.srcFee : transferFees.destFee,
|
|
331
|
+
isSell ? SRC_TOKEN_PARASWAP_TRANSFERS : DEST_TOKEN_PARASWAP_TRANSFERS,
|
|
332
|
+
);
|
|
333
|
+
|
|
334
|
+
const unit = await this.getSellPricePath(unitVolumeWithFee, [
|
|
335
|
+
pairParam,
|
|
336
|
+
]);
|
|
337
|
+
|
|
338
|
+
const prices = await Promise.all(
|
|
339
|
+
amountsWithFee.map(amount =>
|
|
340
|
+
amount === 0n ? 0n : this.getSellPricePath(amount, [pairParam]),
|
|
341
|
+
),
|
|
342
|
+
);
|
|
343
|
+
|
|
344
|
+
const [unitOutWithFee, ...outputsWithFee] = applyTransferFee(
|
|
345
|
+
[unit, ...prices],
|
|
346
|
+
side,
|
|
347
|
+
// This part is confusing, because we treat differently SELL and BUY fees
|
|
348
|
+
// If Buy, we should apply transfer fee on srcToken on top of dexFee applied earlier
|
|
349
|
+
// But for Sell we should apply only one dexFee
|
|
350
|
+
isSell ? transferFees.destDexFee : transferFees.srcFee,
|
|
351
|
+
isSell ? this.DEST_TOKEN_DEX_TRANSFERS : SRC_TOKEN_PARASWAP_TRANSFERS,
|
|
352
|
+
);
|
|
353
|
+
|
|
354
|
+
return {
|
|
355
|
+
prices: outputsWithFee,
|
|
356
|
+
unit: unitOutWithFee,
|
|
357
|
+
data: {
|
|
358
|
+
router: this.router,
|
|
359
|
+
path: [from.address.toLowerCase(), to.address.toLowerCase()],
|
|
360
|
+
factory: this.factoryAddress,
|
|
361
|
+
initCode: this.initCode,
|
|
362
|
+
feeFactor: this.feeFactor,
|
|
363
|
+
isFeeTokenInRoute: Object.values(transferFees).some(f => f !== 0),
|
|
364
|
+
pools: [
|
|
365
|
+
{
|
|
366
|
+
address: pairParam.exchange,
|
|
367
|
+
fee: parseInt(pairParam.fee),
|
|
368
|
+
direction: pairParam.direction,
|
|
369
|
+
},
|
|
370
|
+
],
|
|
371
|
+
},
|
|
372
|
+
exchange: this.dexKey,
|
|
373
|
+
poolIdentifier,
|
|
374
|
+
gasCost: this.poolGasCost,
|
|
375
|
+
poolAddresses: [pairParam.exchange],
|
|
376
|
+
};
|
|
377
|
+
});
|
|
378
|
+
|
|
379
|
+
const resultPools = (await Promise.all(
|
|
380
|
+
resultPromises,
|
|
381
|
+
)) as ExchangePrices<InfusionData>;
|
|
382
|
+
const resultPoolsFiltered = resultPools.filter(item => !!item); // filter null elements
|
|
383
|
+
return resultPoolsFiltered.length > 0 ? resultPoolsFiltered : null;
|
|
384
|
+
} catch (e) {
|
|
385
|
+
if (blockNumber === 0)
|
|
386
|
+
this.logger.error(
|
|
387
|
+
`Error_getPricesVolume: Aurelius block manager not yet instantiated`,
|
|
388
|
+
);
|
|
389
|
+
this.logger.error(`Error_getPrices:`, e);
|
|
390
|
+
return null;
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
async getTopPoolsForToken(
|
|
395
|
+
tokenAddress: Address,
|
|
396
|
+
count: number,
|
|
397
|
+
): Promise<PoolLiquidity[]> {
|
|
398
|
+
if (!this.subgraphURL) return [];
|
|
399
|
+
|
|
400
|
+
let stableFieldKey = 'isStable';
|
|
401
|
+
|
|
402
|
+
const query = `query ($token: Bytes!, $count: Int) {
|
|
403
|
+
pools0: pairs(first: $count, orderBy: reserveUSD, orderDirection: desc, where: {token0: $token, reserve0_gt: 1, reserve1_gt: 1}) {
|
|
404
|
+
id
|
|
405
|
+
${stableFieldKey}
|
|
406
|
+
token0 {
|
|
407
|
+
id
|
|
408
|
+
decimals
|
|
409
|
+
}
|
|
410
|
+
token1 {
|
|
411
|
+
id
|
|
412
|
+
decimals
|
|
413
|
+
}
|
|
414
|
+
reserveUSD
|
|
415
|
+
}
|
|
416
|
+
pools1: pairs(first: $count, orderBy: reserveUSD, orderDirection: desc, where: {token1: $token, reserve0_gt: 1, reserve1_gt: 1}) {
|
|
417
|
+
id
|
|
418
|
+
${stableFieldKey}
|
|
419
|
+
token0 {
|
|
420
|
+
id
|
|
421
|
+
decimals
|
|
422
|
+
}
|
|
423
|
+
token1 {
|
|
424
|
+
id
|
|
425
|
+
decimals
|
|
426
|
+
}
|
|
427
|
+
reserveUSD
|
|
428
|
+
}
|
|
429
|
+
}`;
|
|
430
|
+
|
|
431
|
+
const { data } = await this.dexHelper.httpRequest.post(
|
|
432
|
+
this.subgraphURL,
|
|
433
|
+
{
|
|
434
|
+
query,
|
|
435
|
+
variables: { token: tokenAddress.toLowerCase(), count },
|
|
436
|
+
},
|
|
437
|
+
SUBGRAPH_TIMEOUT,
|
|
438
|
+
);
|
|
439
|
+
|
|
440
|
+
if (!(data && data.pools0 && data.pools1))
|
|
441
|
+
throw new Error("Couldn't fetch the pools from the subgraph");
|
|
442
|
+
const pools0 = _.map(data.pools0, pool => ({
|
|
443
|
+
exchange: this.dexKey,
|
|
444
|
+
stable: pool[stableFieldKey],
|
|
445
|
+
address: pool.id.toLowerCase(),
|
|
446
|
+
connectorTokens: [
|
|
447
|
+
{
|
|
448
|
+
address: pool.token1.id.toLowerCase(),
|
|
449
|
+
decimals: parseInt(pool.token1.decimals),
|
|
450
|
+
},
|
|
451
|
+
],
|
|
452
|
+
liquidityUSD: parseFloat(pool.reserveUSD),
|
|
453
|
+
}));
|
|
454
|
+
|
|
455
|
+
const pools1 = _.map(data.pools1, pool => ({
|
|
456
|
+
exchange: this.dexKey,
|
|
457
|
+
stable: pool[stableFieldKey],
|
|
458
|
+
address: pool.id.toLowerCase(),
|
|
459
|
+
connectorTokens: [
|
|
460
|
+
{
|
|
461
|
+
address: pool.token0.id.toLowerCase(),
|
|
462
|
+
decimals: parseInt(pool.token0.decimals),
|
|
463
|
+
},
|
|
464
|
+
],
|
|
465
|
+
liquidityUSD: parseFloat(pool.reserveUSD),
|
|
466
|
+
}));
|
|
467
|
+
|
|
468
|
+
return _.slice(
|
|
469
|
+
_.sortBy(_.concat(pools0, pools1), [pool => -1 * pool.liquidityUSD]),
|
|
470
|
+
0,
|
|
471
|
+
count,
|
|
472
|
+
);
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
// Same as at uniswap-v2-pool.json, but extended with decimals and stable
|
|
476
|
+
async getInfusionPairOrderedParams(
|
|
477
|
+
from: Token,
|
|
478
|
+
to: Token,
|
|
479
|
+
blockNumber: number,
|
|
480
|
+
stable: boolean,
|
|
481
|
+
tokenDexTransferFee: number,
|
|
482
|
+
): Promise<InfusionPoolOrderedParams | null> {
|
|
483
|
+
const pair = await this.findInfusionPair(from, to, stable);
|
|
484
|
+
if (!(pair && pair.pool && pair.exchange)) return null;
|
|
485
|
+
const pairState = pair?.pool.getState(blockNumber);
|
|
486
|
+
|
|
487
|
+
if (!pairState) {
|
|
488
|
+
this.logger.error(
|
|
489
|
+
`Error_orderPairParams expected reserves, got none (maybe the pool doesn't exist) ${
|
|
490
|
+
from.symbol || from.address
|
|
491
|
+
} ${to.symbol || to.address}`,
|
|
492
|
+
);
|
|
493
|
+
return null;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
const fee = (pairState.feeCode + tokenDexTransferFee).toString();
|
|
497
|
+
const pairReversed =
|
|
498
|
+
pair.token1.address.toLowerCase() === from.address.toLowerCase();
|
|
499
|
+
if (pairReversed) {
|
|
500
|
+
return {
|
|
501
|
+
tokenIn: from.address,
|
|
502
|
+
tokenOut: to.address,
|
|
503
|
+
reservesIn: pairState.reserves1,
|
|
504
|
+
reservesOut: pairState.reserves0,
|
|
505
|
+
fee,
|
|
506
|
+
direction: false,
|
|
507
|
+
exchange: pair.exchange,
|
|
508
|
+
decimalsIn: from.decimals,
|
|
509
|
+
decimalsOut: to.decimals,
|
|
510
|
+
stable,
|
|
511
|
+
};
|
|
512
|
+
}
|
|
513
|
+
return {
|
|
514
|
+
tokenIn: from.address,
|
|
515
|
+
tokenOut: to.address,
|
|
516
|
+
reservesIn: pairState.reserves0,
|
|
517
|
+
reservesOut: pairState.reserves1,
|
|
518
|
+
fee,
|
|
519
|
+
direction: true,
|
|
520
|
+
exchange: pair.exchange,
|
|
521
|
+
decimalsIn: from.decimals,
|
|
522
|
+
decimalsOut: to.decimals,
|
|
523
|
+
stable,
|
|
524
|
+
};
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
async getPoolIdentifiers(
|
|
528
|
+
_from: Token,
|
|
529
|
+
_to: Token,
|
|
530
|
+
side: SwapSide,
|
|
531
|
+
blockNumber: number,
|
|
532
|
+
): Promise<string[]> {
|
|
533
|
+
if (side === SwapSide.BUY) return [];
|
|
534
|
+
|
|
535
|
+
const from = this.dexHelper.config.wrapETH(_from);
|
|
536
|
+
const to = this.dexHelper.config.wrapETH(_to);
|
|
537
|
+
|
|
538
|
+
if (from.address.toLowerCase() === to.address.toLowerCase()) {
|
|
539
|
+
return [];
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
const tokenAddress = [from.address.toLowerCase(), to.address.toLowerCase()]
|
|
543
|
+
.sort((a, b) => (a > b ? 1 : -1))
|
|
544
|
+
.join('_');
|
|
545
|
+
|
|
546
|
+
const poolIdentifier = `${this.dexKey}_${tokenAddress}`;
|
|
547
|
+
const poolIdentifierUniswap = poolIdentifier + this.poolPostfix(false);
|
|
548
|
+
const poolIdentifierStable = poolIdentifier + this.poolPostfix(true);
|
|
549
|
+
return [poolIdentifierUniswap, poolIdentifierStable];
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
poolPostfix(stable: boolean) {
|
|
553
|
+
return stable ? 'S' : 'V';
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
getAdapters(side: SwapSide): { name: string; index: number }[] | null {
|
|
557
|
+
return null;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
getAdapterParam(
|
|
561
|
+
srcToken: Address,
|
|
562
|
+
destToken: Address,
|
|
563
|
+
srcAmount: NumberAsString,
|
|
564
|
+
toAmount: NumberAsString, // required for buy case
|
|
565
|
+
data: InfusionData,
|
|
566
|
+
side: SwapSide,
|
|
567
|
+
): AdapterExchangeParam {
|
|
568
|
+
return {
|
|
569
|
+
targetExchange: data.router,
|
|
570
|
+
payload: '',
|
|
571
|
+
networkFee: '0',
|
|
572
|
+
};
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
getDexParam(
|
|
576
|
+
src: Address,
|
|
577
|
+
dest: Address,
|
|
578
|
+
srcAmount: NumberAsString,
|
|
579
|
+
destAmount: NumberAsString,
|
|
580
|
+
recipient: Address,
|
|
581
|
+
data: InfusionData,
|
|
582
|
+
side: SwapSide,
|
|
583
|
+
): DexExchangeParam {
|
|
584
|
+
if (side === SwapSide.BUY) throw new Error(`Buy not supported`);
|
|
585
|
+
|
|
586
|
+
let routerMethod: any;
|
|
587
|
+
let routerArgs: InfusionParam;
|
|
588
|
+
const stable = isStablePair(this.network, src, dest);
|
|
589
|
+
|
|
590
|
+
const from = isETHAddress(src)
|
|
591
|
+
? this.dexHelper.config.data.wrappedNativeTokenAddress
|
|
592
|
+
: src;
|
|
593
|
+
const to = isETHAddress(dest)
|
|
594
|
+
? this.dexHelper.config.data.wrappedNativeTokenAddress
|
|
595
|
+
: dest;
|
|
596
|
+
|
|
597
|
+
routerMethod = isETHAddress(src)
|
|
598
|
+
? InfusionRouterFunctions.sellExactEth
|
|
599
|
+
: InfusionRouterFunctions.swapExactIn;
|
|
600
|
+
routerMethod = isETHAddress(dest)
|
|
601
|
+
? InfusionRouterFunctions.sellExactToken
|
|
602
|
+
: routerMethod;
|
|
603
|
+
|
|
604
|
+
routerArgs = isETHAddress(src)
|
|
605
|
+
? [
|
|
606
|
+
destAmount,
|
|
607
|
+
[{ from, to, stable }],
|
|
608
|
+
recipient,
|
|
609
|
+
Math.floor(new Date().getTime() / 1000) + 120,
|
|
610
|
+
]
|
|
611
|
+
: [
|
|
612
|
+
srcAmount,
|
|
613
|
+
destAmount,
|
|
614
|
+
[{ from, to, stable }],
|
|
615
|
+
recipient,
|
|
616
|
+
Math.floor(new Date().getTime() / 1000) + 120,
|
|
617
|
+
];
|
|
618
|
+
|
|
619
|
+
const exchangeData = new Interface(infusionRouterABI).encodeFunctionData(
|
|
620
|
+
routerMethod,
|
|
621
|
+
routerArgs as InfusionParam,
|
|
622
|
+
);
|
|
623
|
+
|
|
624
|
+
return {
|
|
625
|
+
needWrapNative: this.needWrapNative,
|
|
626
|
+
dexFuncHasRecipient: true,
|
|
627
|
+
exchangeData,
|
|
628
|
+
targetExchange: data.router,
|
|
629
|
+
returnAmountPos: undefined,
|
|
630
|
+
};
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
protected getFeesMultiCallData(pair: InfusionPair) {
|
|
634
|
+
const callEntry = {
|
|
635
|
+
target: this.factoryAddress,
|
|
636
|
+
callData: velodromeFactoryIface.encodeFunctionData('getFee', [
|
|
637
|
+
pair.stable,
|
|
638
|
+
]),
|
|
639
|
+
};
|
|
640
|
+
const callDecoder = (values: any[]) =>
|
|
641
|
+
parseInt(
|
|
642
|
+
velodromeFactoryIface
|
|
643
|
+
.decodeFunctionResult('getFee', values)[0]
|
|
644
|
+
.toString(),
|
|
645
|
+
);
|
|
646
|
+
|
|
647
|
+
return {
|
|
648
|
+
callEntry,
|
|
649
|
+
callDecoder,
|
|
650
|
+
};
|
|
651
|
+
}
|
|
652
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import {
|
|
2
|
+
UniswapV2Data,
|
|
3
|
+
UniswapV2PoolOrderedParams,
|
|
4
|
+
DexParams as UniswapV2DexParams,
|
|
5
|
+
UniswapPool,
|
|
6
|
+
} from '../uniswap-v2/types';
|
|
7
|
+
import { UniswapV2Pair } from '../uniswap-v2/uniswap-v2';
|
|
8
|
+
|
|
9
|
+
export type PoolState = {
|
|
10
|
+
reserves0: string;
|
|
11
|
+
reserves1: string;
|
|
12
|
+
feeCode: number;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
// to calculate prices for stable pool, we need decimals of the stable tokens
|
|
16
|
+
export interface InfusionPoolOrderedParams extends UniswapV2PoolOrderedParams {
|
|
17
|
+
decimalsIn: number;
|
|
18
|
+
decimalsOut: number;
|
|
19
|
+
stable: boolean;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export type InfusionData = UniswapV2Data;
|
|
23
|
+
|
|
24
|
+
export type InfusionPool = UniswapPool;
|
|
25
|
+
|
|
26
|
+
export interface DexParams extends Omit<UniswapV2DexParams, 'feeCode'> {
|
|
27
|
+
feeCode: number;
|
|
28
|
+
stableFee?: number;
|
|
29
|
+
volatileFee?: number;
|
|
30
|
+
feeFactor?: number;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export interface InfusionPair extends UniswapV2Pair {
|
|
34
|
+
stable: boolean;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export type InfusionParam = SellOnInfusionParam | SellETHOnInfusionParam;
|
|
38
|
+
|
|
39
|
+
export type SellOnInfusionParam = [
|
|
40
|
+
amountIn: string,
|
|
41
|
+
amountOutMin: string,
|
|
42
|
+
routes: {
|
|
43
|
+
from: string;
|
|
44
|
+
to: string;
|
|
45
|
+
stable: boolean;
|
|
46
|
+
}[],
|
|
47
|
+
to: string,
|
|
48
|
+
deadline: number,
|
|
49
|
+
];
|
|
50
|
+
|
|
51
|
+
export type SellETHOnInfusionParam = [
|
|
52
|
+
amountOutMin: string,
|
|
53
|
+
routes: {
|
|
54
|
+
from: string;
|
|
55
|
+
to: string;
|
|
56
|
+
stable: boolean;
|
|
57
|
+
}[],
|
|
58
|
+
to: string,
|
|
59
|
+
deadline: number,
|
|
60
|
+
];
|