rubic-sdk
Version:
Simplify dApp creation
243 lines • 9.48 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.HORIZONDEX_UNISWAP_V3_SWAP_ROUTER_CONTRACT_ABI = exports.HORIZONDEX_UNISWAP_V3_SWAP_ROUTER_CONTRACT_ADDRESS = exports.HORIZONDEX_ROUTER_CONFIGURATION = void 0;
const wrapped_native_tokens_1 = require("../../../../../../../../common/tokens/constants/wrapped-native-tokens");
const blockchain_name_1 = require("../../../../../../../../core/blockchain/models/blockchain-name");
/**
* Most popular tokens in uni v3 to use in a route.
*/
const tokensSymbols = ['WETH', 'BNB', 'BUSD', 'MATIC', 'HZN', 'NFTE'];
const routerTokens = {
WETH: wrapped_native_tokens_1.wrappedNativeTokensList[blockchain_name_1.BLOCKCHAIN_NAME.LINEA].address,
BNB: '0xf5C6825015280CdfD0b56903F9F8B5A2233476F5',
BUSD: '0x7d43AABC515C356145049227CeE54B608342c0ad',
MATIC: '0x265b25e22bcd7f10a5bd6e6410f10537cc7567e8',
HZN: '0x0B1A02A7309dFbfAD1Cd4adC096582C87e8A3Ac1',
NFTE: '0x2140Ea50bc3B6Ac3971F9e9Ea93A1442665670e4'
};
const routerLiquidityPools = [
{
poolAddress: '0xe2df725e44ab983e8513ecfc9c3e13bc21ea867e',
tokenSymbolA: 'BUSD',
tokenSymbolB: 'WETH',
fee: 300
},
{
poolAddress: '0x0330fddd733ea64f92b348ff19a2bb4d29d379d5',
tokenSymbolA: 'MATIC',
tokenSymbolB: 'WETH',
fee: 300
},
{
poolAddress: '0xfe7a3ab43d8db17643ba5dc2f132a74049dcf42f',
tokenSymbolA: 'BUSD',
tokenSymbolB: 'BNB',
fee: 300
},
{
poolAddress: '0xa6a69fddec12e7ee44474a92e9c549a612519411',
tokenSymbolA: 'WETH',
tokenSymbolB: 'BNB',
fee: 300
},
{
poolAddress: '0x0003ecc56c19953ea2e2de626e44111ade02ad6e',
tokenSymbolA: 'HZN',
tokenSymbolB: 'WETH',
fee: 300
},
{
poolAddress: '0xa24b6a8698ee173ccf5a97f73f1f2d8bb7032feb',
tokenSymbolA: 'HZN',
tokenSymbolB: 'WETH',
fee: 1000
},
{
poolAddress: '0xc9dc3eda8f6b664e2e25d632bb4d4f28ab58ee3c',
tokenSymbolA: 'NFTE',
tokenSymbolB: 'WETH',
fee: 1000
}
];
exports.HORIZONDEX_ROUTER_CONFIGURATION = {
tokens: routerTokens,
liquidityPools: routerLiquidityPools
};
exports.HORIZONDEX_UNISWAP_V3_SWAP_ROUTER_CONTRACT_ADDRESS = '0x272e156df8da513c69cb41cc7a99185d53f926bb';
exports.HORIZONDEX_UNISWAP_V3_SWAP_ROUTER_CONTRACT_ABI = [
{
inputs: [
{ internalType: 'address', name: '_factory', type: 'address' },
{ internalType: 'address', name: '_WETH', type: 'address' }
],
stateMutability: 'nonpayable',
type: 'constructor'
},
{
inputs: [],
name: 'WETH',
outputs: [{ internalType: 'address', name: '', type: 'address' }],
stateMutability: 'view',
type: 'function'
},
{
inputs: [],
name: 'factory',
outputs: [{ internalType: 'address', name: '', type: 'address' }],
stateMutability: 'view',
type: 'function'
},
{
inputs: [{ internalType: 'bytes[]', name: 'data', type: 'bytes[]' }],
name: 'multicall',
outputs: [{ internalType: 'bytes[]', name: 'results', type: 'bytes[]' }],
stateMutability: 'payable',
type: 'function'
},
{ inputs: [], name: 'refundEth', outputs: [], stateMutability: 'payable', type: 'function' },
{
inputs: [
{ internalType: 'int256', name: 'deltaQty0', type: 'int256' },
{ internalType: 'int256', name: 'deltaQty1', type: 'int256' },
{ internalType: 'bytes', name: 'data', type: 'bytes' }
],
name: 'swapCallback',
outputs: [],
stateMutability: 'nonpayable',
type: 'function'
},
{
inputs: [
{
components: [
{ internalType: 'bytes', name: 'path', type: 'bytes' },
{ internalType: 'address', name: 'recipient', type: 'address' },
{ internalType: 'uint256', name: 'deadline', type: 'uint256' },
{ internalType: 'uint256', name: 'amountIn', type: 'uint256' },
{ internalType: 'uint256', name: 'minAmountOut', type: 'uint256' }
],
internalType: 'struct IRouter.ExactInputParams',
name: 'params',
type: 'tuple'
}
],
name: 'swapExactInput',
outputs: [{ internalType: 'uint256', name: 'amountOut', type: 'uint256' }],
stateMutability: 'payable',
type: 'function'
},
{
inputs: [
{
components: [
{ internalType: 'address', name: 'tokenIn', type: 'address' },
{ internalType: 'address', name: 'tokenOut', type: 'address' },
{ internalType: 'uint24', name: 'fee', type: 'uint24' },
{ internalType: 'address', name: 'recipient', type: 'address' },
{ internalType: 'uint256', name: 'deadline', type: 'uint256' },
{ internalType: 'uint256', name: 'amountIn', type: 'uint256' },
{ internalType: 'uint256', name: 'minAmountOut', type: 'uint256' },
{ internalType: 'uint160', name: 'limitSqrtP', type: 'uint160' }
],
internalType: 'struct IRouter.ExactInputSingleParams',
name: 'params',
type: 'tuple'
}
],
name: 'swapExactInputSingle',
outputs: [{ internalType: 'uint256', name: 'amountOut', type: 'uint256' }],
stateMutability: 'payable',
type: 'function'
},
{
inputs: [
{
components: [
{ internalType: 'bytes', name: 'path', type: 'bytes' },
{ internalType: 'address', name: 'recipient', type: 'address' },
{ internalType: 'uint256', name: 'deadline', type: 'uint256' },
{ internalType: 'uint256', name: 'amountOut', type: 'uint256' },
{ internalType: 'uint256', name: 'maxAmountIn', type: 'uint256' }
],
internalType: 'struct IRouter.ExactOutputParams',
name: 'params',
type: 'tuple'
}
],
name: 'swapExactOutput',
outputs: [{ internalType: 'uint256', name: 'amountIn', type: 'uint256' }],
stateMutability: 'payable',
type: 'function'
},
{
inputs: [
{
components: [
{ internalType: 'address', name: 'tokenIn', type: 'address' },
{ internalType: 'address', name: 'tokenOut', type: 'address' },
{ internalType: 'uint24', name: 'fee', type: 'uint24' },
{ internalType: 'address', name: 'recipient', type: 'address' },
{ internalType: 'uint256', name: 'deadline', type: 'uint256' },
{ internalType: 'uint256', name: 'amountOut', type: 'uint256' },
{ internalType: 'uint256', name: 'maxAmountIn', type: 'uint256' },
{ internalType: 'uint160', name: 'limitSqrtP', type: 'uint160' }
],
internalType: 'struct IRouter.ExactOutputSingleParams',
name: 'params',
type: 'tuple'
}
],
name: 'swapExactOutputSingle',
outputs: [{ internalType: 'uint256', name: 'amountIn', type: 'uint256' }],
stateMutability: 'payable',
type: 'function'
},
{
inputs: [
{ internalType: 'address', name: 'token', type: 'address' },
{ internalType: 'uint256', name: 'minAmount', type: 'uint256' },
{ internalType: 'address', name: 'recipient', type: 'address' }
],
name: 'transferAllTokens',
outputs: [],
stateMutability: 'payable',
type: 'function'
},
{
inputs: [
{ internalType: 'address', name: 'token', type: 'address' },
{ internalType: 'uint256', name: 'minAmount', type: 'uint256' },
{ internalType: 'address', name: 'recipient', type: 'address' },
{ internalType: 'uint256', name: 'feeUnits', type: 'uint256' },
{ internalType: 'address', name: 'feeRecipient', type: 'address' }
],
name: 'transferAllTokensWithFee',
outputs: [],
stateMutability: 'payable',
type: 'function'
},
{
inputs: [
{ internalType: 'uint256', name: 'minAmount', type: 'uint256' },
{ internalType: 'address', name: 'recipient', type: 'address' }
],
name: 'unwrapWeth',
outputs: [],
stateMutability: 'payable',
type: 'function'
},
{
inputs: [
{ internalType: 'uint256', name: 'minAmount', type: 'uint256' },
{ internalType: 'address', name: 'recipient', type: 'address' },
{ internalType: 'uint256', name: 'feeUnits', type: 'uint256' },
{ internalType: 'address', name: 'feeRecipient', type: 'address' }
],
name: 'unwrapWethWithFee',
outputs: [],
stateMutability: 'payable',
type: 'function'
},
{ stateMutability: 'payable', type: 'receive' }
];
//# sourceMappingURL=router-configuration.js.map