UniswapV3Adapter

UniswapV3Adapter

constructor

constructor(struct PoolInput[] pools) public

swapExactInput

function swapExactInput(address recipient, address tokenIn, address tokenOut, uint256 amountIn, uint256 minAmountOut, bytes data) external returns (uint256 amountOut)

swap with exact input

Parameters

NameTypeDescription

recipient

address

recipient of amountOut of tokenOut

tokenIn

address

address of a token to swap on dex

tokenOut

address

address of a token to receive from dex

amountIn

uint256

exact amount of tokenIn to swap

minAmountOut

uint256

minimal amount of tokenOut to receive

data

bytes

data for AdapterCallback

swapExactOutput

function swapExactOutput(address recipient, address tokenIn, address tokenOut, uint256 maxAmountIn, uint256 amountOut, bytes data) external returns (uint256 amountIn)

swap with exact output

Parameters

NameTypeDescription

recipient

address

recipient of amountOut of tokenOut

tokenIn

address

address of a token to swap on dex

tokenOut

address

address of a token to receive from dex

maxAmountIn

uint256

maximal amount of tokenIn to swap

amountOut

uint256

exact amount of tokenOut to receive

data

bytes

data for AdapterCallback

uniswapV3SwapCallback

function uniswapV3SwapCallback(int256 amount0Delta, int256 amount1Delta, bytes data) external

Last updated