/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import BN from "bn.js"; import { EventData, PastEventOptions } from "web3-eth-contract"; export interface IUniswapV3PoolContract extends Truffle.Contract { "new"(meta?: Truffle.TransactionDetails): Promise; } type AllEvents = never; export interface IUniswapV3PoolInstance extends Truffle.ContractInstance { /** * Can be used to trigger a recalculation of fees owed to a position by calling with an amount of 0Fees must be collected separately via a call to #collect * Burn liquidity from the sender and account tokens owed for the liquidity to the position * @param amount How much liquidity to burn * @param tickLower The lower tick of the position for which to burn liquidity * @param tickUpper The upper tick of the position for which to burn liquidity */ burn: { ( tickLower: number | BN | string, tickUpper: number | BN | string, amount: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise>; call( tickLower: number | BN | string, tickUpper: number | BN | string, amount: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise<{ 0: BN; 1: BN }>; sendTransaction( tickLower: number | BN | string, tickUpper: number | BN | string, amount: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise; estimateGas( tickLower: number | BN | string, tickUpper: number | BN | string, amount: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise; }; /** * Does not recompute fees earned, which must be done either via mint or burn of any amount of liquidity. Collect must be called by the position owner. To withdraw only token0 or only token1, amount0Requested or amount1Requested may be set to zero. To withdraw all tokens owed, caller may pass any value greater than the actual tokens owed, e.g. type(uint128).max. Tokens owed may be from accumulated swap fees or burned liquidity. * Collects tokens owed to a position * @param amount0Requested How much token0 should be withdrawn from the fees owed * @param amount1Requested How much token1 should be withdrawn from the fees owed * @param recipient The address which should receive the fees collected * @param tickLower The lower tick of the position for which to collect fees * @param tickUpper The upper tick of the position for which to collect fees */ collect: { ( recipient: string, tickLower: number | BN | string, tickUpper: number | BN | string, amount0Requested: number | BN | string, amount1Requested: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise>; call( recipient: string, tickLower: number | BN | string, tickUpper: number | BN | string, amount0Requested: number | BN | string, amount1Requested: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise<{ 0: BN; 1: BN }>; sendTransaction( recipient: string, tickLower: number | BN | string, tickUpper: number | BN | string, amount0Requested: number | BN | string, amount1Requested: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise; estimateGas( recipient: string, tickLower: number | BN | string, tickUpper: number | BN | string, amount0Requested: number | BN | string, amount1Requested: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise; }; /** * The contract that deployed the pool, which must adhere to the IUniswapV3Factory interface */ factory(txDetails?: Truffle.TransactionDetails): Promise; /** * The pool's fee in hundredths of a bip, i.e. 1e-6 */ fee(txDetails?: Truffle.TransactionDetails): Promise; /** * This value can overflow the uint256 * The fee growth as a Q128.128 fees of token0 collected per unit of liquidity for the entire life of the pool */ feeGrowthGlobal0X128(txDetails?: Truffle.TransactionDetails): Promise; /** * This value can overflow the uint256 * The fee growth as a Q128.128 fees of token1 collected per unit of liquidity for the entire life of the pool */ feeGrowthGlobal1X128(txDetails?: Truffle.TransactionDetails): Promise; /** * The caller of this method receives a callback in the form of IUniswapV3FlashCallback#uniswapV3FlashCallbackCan be used to donate underlying tokens pro-rata to currently in-range liquidity providers by calling with 0 amount{0,1} and sending the donation amount(s) from the callback * Receive token0 and/or token1 and pay it back, plus a fee, in the callback * @param amount0 The amount of token0 to send * @param amount1 The amount of token1 to send * @param data Any data to be passed through to the callback * @param recipient The address which will receive the token0 and token1 amounts */ flash: { ( recipient: string, amount0: number | BN | string, amount1: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise>; call( recipient: string, amount0: number | BN | string, amount1: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise; sendTransaction( recipient: string, amount0: number | BN | string, amount1: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise; estimateGas( recipient: string, amount0: number | BN | string, amount1: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise; }; /** * This method is no-op if the pool already has an observationCardinalityNext greater than or equal to the input observationCardinalityNext. * Increase the maximum number of price and liquidity observations that this pool will store * @param observationCardinalityNext The desired minimum number of observations for the pool to store */ increaseObservationCardinalityNext: { ( observationCardinalityNext: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise>; call( observationCardinalityNext: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise; sendTransaction( observationCardinalityNext: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise; estimateGas( observationCardinalityNext: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise; }; /** * Price is represented as a sqrt(amountToken1/amountToken0) Q64.96 value * Sets the initial price for the pool * @param sqrtPriceX96 the initial sqrt price of the pool as a Q64.96 */ initialize: { ( sqrtPriceX96: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise>; call( sqrtPriceX96: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise; sendTransaction( sqrtPriceX96: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise; estimateGas( sqrtPriceX96: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise; }; /** * This value has no relationship to the total liquidity across all ticks * The currently in range liquidity available to the pool */ liquidity(txDetails?: Truffle.TransactionDetails): Promise; /** * This parameter is enforced per tick to prevent liquidity from overflowing a uint128 at any point, and also prevents out-of-range liquidity from being used to prevent adding in-range liquidity to a pool * The maximum amount of position liquidity that can use any tick in the range */ maxLiquidityPerTick(txDetails?: Truffle.TransactionDetails): Promise; /** * The caller of this method receives a callback in the form of IUniswapV3MintCallback#uniswapV3MintCallback in which they must pay any token0 or token1 owed for the liquidity. The amount of token0/token1 due depends on tickLower, tickUpper, the amount of liquidity, and the current price. * Adds liquidity for the given recipient/tickLower/tickUpper position * @param amount The amount of liquidity to mint * @param data Any data that should be passed through to the callback * @param recipient The address for which the liquidity will be created * @param tickLower The lower tick of the position in which to add liquidity * @param tickUpper The upper tick of the position in which to add liquidity */ mint: { ( recipient: string, tickLower: number | BN | string, tickUpper: number | BN | string, amount: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise>; call( recipient: string, tickLower: number | BN | string, tickUpper: number | BN | string, amount: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise<{ 0: BN; 1: BN }>; sendTransaction( recipient: string, tickLower: number | BN | string, tickUpper: number | BN | string, amount: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise; estimateGas( recipient: string, tickLower: number | BN | string, tickUpper: number | BN | string, amount: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise; }; /** * You most likely want to use #observe() instead of this method to get an observation as of some amount of time ago, rather than at a specific index in the array. * Returns data about a specific observation index * @param index The element of the observations array to fetch */ observations( index: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise<{ 0: BN; 1: BN; 2: BN; 3: boolean }>; /** * Returns the information about a position by the position's key * @param key The position's key is a hash of a preimage composed by the owner, tickLower and tickUpper */ positions( key: string, txDetails?: Truffle.TransactionDetails ): Promise<{ 0: BN; 1: BN; 2: BN; 3: BN; 4: BN }>; /** * Protocol fees will never exceed uint128 max in either token * The amounts of token0 and token1 that are owed to the protocol */ protocolFees( txDetails?: Truffle.TransactionDetails ): Promise<{ 0: BN; 1: BN }>; /** * The 0th storage slot in the pool stores many values, and is exposed as a single method to save gas when accessed externally. */ slot0( txDetails?: Truffle.TransactionDetails ): Promise<{ 0: BN; 1: BN; 2: BN; 3: BN; 4: BN; 5: BN; 6: boolean }>; /** * The caller of this method receives a callback in the form of IUniswapV3SwapCallback#uniswapV3SwapCallback * Swap token0 for token1, or token1 for token0 * @param amountSpecified The amount of the swap, which implicitly configures the swap as exact input (positive), or exact output (negative) * @param data Any data to be passed through to the callback * @param recipient The address to receive the output of the swap * @param sqrtPriceLimitX96 The Q64.96 sqrt price limit. If zero for one, the price cannot be less than this value after the swap. If one for zero, the price cannot be greater than this value after the swap * @param zeroForOne The direction of the swap, true for token0 to token1, false for token1 to token0 */ swap: { ( recipient: string, zeroForOne: boolean, amountSpecified: number | BN | string, sqrtPriceLimitX96: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise>; call( recipient: string, zeroForOne: boolean, amountSpecified: number | BN | string, sqrtPriceLimitX96: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise<{ 0: BN; 1: BN }>; sendTransaction( recipient: string, zeroForOne: boolean, amountSpecified: number | BN | string, sqrtPriceLimitX96: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise; estimateGas( recipient: string, zeroForOne: boolean, amountSpecified: number | BN | string, sqrtPriceLimitX96: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise; }; /** * Returns 256 packed tick initialized boolean values. See TickBitmap for more information */ tickBitmap( wordPosition: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise; /** * Ticks can only be used at multiples of this value, minimum of 1 and always positive e.g.: a tickSpacing of 3 means ticks can be initialized every 3rd tick, i.e., ..., -6, -3, 0, 3, 6, ... This value is an int24 to avoid casting even though it is always positive. * The pool tick spacing */ tickSpacing(txDetails?: Truffle.TransactionDetails): Promise; /** * Look up information about a specific tick in the pool * @param tick The tick to look up */ ticks( tick: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise<{ 0: BN; 1: BN; 2: BN; 3: BN; 4: BN; 5: BN; 6: BN; 7: boolean }>; /** * The first of the two tokens of the pool, sorted by address */ token0(txDetails?: Truffle.TransactionDetails): Promise; /** * The second of the two tokens of the pool, sorted by address */ token1(txDetails?: Truffle.TransactionDetails): Promise; methods: { /** * Can be used to trigger a recalculation of fees owed to a position by calling with an amount of 0Fees must be collected separately via a call to #collect * Burn liquidity from the sender and account tokens owed for the liquidity to the position * @param amount How much liquidity to burn * @param tickLower The lower tick of the position for which to burn liquidity * @param tickUpper The upper tick of the position for which to burn liquidity */ burn: { ( tickLower: number | BN | string, tickUpper: number | BN | string, amount: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise>; call( tickLower: number | BN | string, tickUpper: number | BN | string, amount: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise<{ 0: BN; 1: BN }>; sendTransaction( tickLower: number | BN | string, tickUpper: number | BN | string, amount: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise; estimateGas( tickLower: number | BN | string, tickUpper: number | BN | string, amount: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise; }; /** * Does not recompute fees earned, which must be done either via mint or burn of any amount of liquidity. Collect must be called by the position owner. To withdraw only token0 or only token1, amount0Requested or amount1Requested may be set to zero. To withdraw all tokens owed, caller may pass any value greater than the actual tokens owed, e.g. type(uint128).max. Tokens owed may be from accumulated swap fees or burned liquidity. * Collects tokens owed to a position * @param amount0Requested How much token0 should be withdrawn from the fees owed * @param amount1Requested How much token1 should be withdrawn from the fees owed * @param recipient The address which should receive the fees collected * @param tickLower The lower tick of the position for which to collect fees * @param tickUpper The upper tick of the position for which to collect fees */ collect: { ( recipient: string, tickLower: number | BN | string, tickUpper: number | BN | string, amount0Requested: number | BN | string, amount1Requested: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise>; call( recipient: string, tickLower: number | BN | string, tickUpper: number | BN | string, amount0Requested: number | BN | string, amount1Requested: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise<{ 0: BN; 1: BN }>; sendTransaction( recipient: string, tickLower: number | BN | string, tickUpper: number | BN | string, amount0Requested: number | BN | string, amount1Requested: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise; estimateGas( recipient: string, tickLower: number | BN | string, tickUpper: number | BN | string, amount0Requested: number | BN | string, amount1Requested: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise; }; /** * The contract that deployed the pool, which must adhere to the IUniswapV3Factory interface */ factory(txDetails?: Truffle.TransactionDetails): Promise; /** * The pool's fee in hundredths of a bip, i.e. 1e-6 */ fee(txDetails?: Truffle.TransactionDetails): Promise; /** * This value can overflow the uint256 * The fee growth as a Q128.128 fees of token0 collected per unit of liquidity for the entire life of the pool */ feeGrowthGlobal0X128(txDetails?: Truffle.TransactionDetails): Promise; /** * This value can overflow the uint256 * The fee growth as a Q128.128 fees of token1 collected per unit of liquidity for the entire life of the pool */ feeGrowthGlobal1X128(txDetails?: Truffle.TransactionDetails): Promise; /** * The caller of this method receives a callback in the form of IUniswapV3FlashCallback#uniswapV3FlashCallbackCan be used to donate underlying tokens pro-rata to currently in-range liquidity providers by calling with 0 amount{0,1} and sending the donation amount(s) from the callback * Receive token0 and/or token1 and pay it back, plus a fee, in the callback * @param amount0 The amount of token0 to send * @param amount1 The amount of token1 to send * @param data Any data to be passed through to the callback * @param recipient The address which will receive the token0 and token1 amounts */ flash: { ( recipient: string, amount0: number | BN | string, amount1: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise>; call( recipient: string, amount0: number | BN | string, amount1: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise; sendTransaction( recipient: string, amount0: number | BN | string, amount1: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise; estimateGas( recipient: string, amount0: number | BN | string, amount1: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise; }; /** * This method is no-op if the pool already has an observationCardinalityNext greater than or equal to the input observationCardinalityNext. * Increase the maximum number of price and liquidity observations that this pool will store * @param observationCardinalityNext The desired minimum number of observations for the pool to store */ increaseObservationCardinalityNext: { ( observationCardinalityNext: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise>; call( observationCardinalityNext: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise; sendTransaction( observationCardinalityNext: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise; estimateGas( observationCardinalityNext: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise; }; /** * Price is represented as a sqrt(amountToken1/amountToken0) Q64.96 value * Sets the initial price for the pool * @param sqrtPriceX96 the initial sqrt price of the pool as a Q64.96 */ initialize: { ( sqrtPriceX96: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise>; call( sqrtPriceX96: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise; sendTransaction( sqrtPriceX96: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise; estimateGas( sqrtPriceX96: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise; }; /** * This value has no relationship to the total liquidity across all ticks * The currently in range liquidity available to the pool */ liquidity(txDetails?: Truffle.TransactionDetails): Promise; /** * This parameter is enforced per tick to prevent liquidity from overflowing a uint128 at any point, and also prevents out-of-range liquidity from being used to prevent adding in-range liquidity to a pool * The maximum amount of position liquidity that can use any tick in the range */ maxLiquidityPerTick(txDetails?: Truffle.TransactionDetails): Promise; /** * The caller of this method receives a callback in the form of IUniswapV3MintCallback#uniswapV3MintCallback in which they must pay any token0 or token1 owed for the liquidity. The amount of token0/token1 due depends on tickLower, tickUpper, the amount of liquidity, and the current price. * Adds liquidity for the given recipient/tickLower/tickUpper position * @param amount The amount of liquidity to mint * @param data Any data that should be passed through to the callback * @param recipient The address for which the liquidity will be created * @param tickLower The lower tick of the position in which to add liquidity * @param tickUpper The upper tick of the position in which to add liquidity */ mint: { ( recipient: string, tickLower: number | BN | string, tickUpper: number | BN | string, amount: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise>; call( recipient: string, tickLower: number | BN | string, tickUpper: number | BN | string, amount: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise<{ 0: BN; 1: BN }>; sendTransaction( recipient: string, tickLower: number | BN | string, tickUpper: number | BN | string, amount: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise; estimateGas( recipient: string, tickLower: number | BN | string, tickUpper: number | BN | string, amount: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise; }; /** * You most likely want to use #observe() instead of this method to get an observation as of some amount of time ago, rather than at a specific index in the array. * Returns data about a specific observation index * @param index The element of the observations array to fetch */ observations( index: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise<{ 0: BN; 1: BN; 2: BN; 3: boolean }>; /** * Returns the information about a position by the position's key * @param key The position's key is a hash of a preimage composed by the owner, tickLower and tickUpper */ positions( key: string, txDetails?: Truffle.TransactionDetails ): Promise<{ 0: BN; 1: BN; 2: BN; 3: BN; 4: BN }>; /** * Protocol fees will never exceed uint128 max in either token * The amounts of token0 and token1 that are owed to the protocol */ protocolFees( txDetails?: Truffle.TransactionDetails ): Promise<{ 0: BN; 1: BN }>; /** * The 0th storage slot in the pool stores many values, and is exposed as a single method to save gas when accessed externally. */ slot0( txDetails?: Truffle.TransactionDetails ): Promise<{ 0: BN; 1: BN; 2: BN; 3: BN; 4: BN; 5: BN; 6: boolean }>; /** * The caller of this method receives a callback in the form of IUniswapV3SwapCallback#uniswapV3SwapCallback * Swap token0 for token1, or token1 for token0 * @param amountSpecified The amount of the swap, which implicitly configures the swap as exact input (positive), or exact output (negative) * @param data Any data to be passed through to the callback * @param recipient The address to receive the output of the swap * @param sqrtPriceLimitX96 The Q64.96 sqrt price limit. If zero for one, the price cannot be less than this value after the swap. If one for zero, the price cannot be greater than this value after the swap * @param zeroForOne The direction of the swap, true for token0 to token1, false for token1 to token0 */ swap: { ( recipient: string, zeroForOne: boolean, amountSpecified: number | BN | string, sqrtPriceLimitX96: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise>; call( recipient: string, zeroForOne: boolean, amountSpecified: number | BN | string, sqrtPriceLimitX96: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise<{ 0: BN; 1: BN }>; sendTransaction( recipient: string, zeroForOne: boolean, amountSpecified: number | BN | string, sqrtPriceLimitX96: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise; estimateGas( recipient: string, zeroForOne: boolean, amountSpecified: number | BN | string, sqrtPriceLimitX96: number | BN | string, data: string, txDetails?: Truffle.TransactionDetails ): Promise; }; /** * Returns 256 packed tick initialized boolean values. See TickBitmap for more information */ tickBitmap( wordPosition: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise; /** * Ticks can only be used at multiples of this value, minimum of 1 and always positive e.g.: a tickSpacing of 3 means ticks can be initialized every 3rd tick, i.e., ..., -6, -3, 0, 3, 6, ... This value is an int24 to avoid casting even though it is always positive. * The pool tick spacing */ tickSpacing(txDetails?: Truffle.TransactionDetails): Promise; /** * Look up information about a specific tick in the pool * @param tick The tick to look up */ ticks( tick: number | BN | string, txDetails?: Truffle.TransactionDetails ): Promise<{ 0: BN; 1: BN; 2: BN; 3: BN; 4: BN; 5: BN; 6: BN; 7: boolean }>; /** * The first of the two tokens of the pool, sorted by address */ token0(txDetails?: Truffle.TransactionDetails): Promise; /** * The second of the two tokens of the pool, sorted by address */ token1(txDetails?: Truffle.TransactionDetails): Promise; }; getPastEvents(event: string): Promise; getPastEvents( event: string, options: PastEventOptions, callback: (error: Error, event: EventData) => void ): Promise; getPastEvents(event: string, options: PastEventOptions): Promise; getPastEvents( event: string, callback: (error: Error, event: EventData) => void ): Promise; }