SmartRouter
V3SwapRouter
Solidity API
SwapCallbackData
pancakeV3SwapCallback
Called to msg.sender
after executing a swap via ITradingPostV3Pool#swap.
In the implementation you must pay the pool tokens owed for the swap. The caller of this method must be checked to be a TradingPostV3Pool deployed by the canonical TradingPostV3Factory. amount0Delta and amount1Delta can both be 0 if no tokens were swapped.
Parameters
amount0Delta
int256
The amount of token0 that was sent (negative) or must be received (positive) by the pool by the end of the swap. If positive, the callback must send that amount of token0 to the pool.
amount1Delta
int256
The amount of token1 that was sent (negative) or must be received (positive) by the pool by the end of the swap. If positive, the callback must send that amount of token1 to the pool.
_data
bytes
exactInputSingle
Swaps amountIn
of one token for as much as possible of another token
Setting amountIn
to 0 will cause the contract to look up its own balance, and swap the entire amount, enabling contracts to send tokens before calling this function.
Parameters
params
struct IV3SwapRouter.ExactInputSingleParams
The parameters necessary for the swap, encoded as ExactInputSingleParams
in calldata
Return Values
amountOut
uint256
The amount of the received token
exactInput
Swaps amountIn
of one token for as much as possible of another along the specified path
Setting amountIn
to 0 will cause the contract to look up its own balance, and swap the entire amount, enabling contracts to send tokens before calling this function.
Parameters
params
struct IV3SwapRouter.ExactInputParams
The parameters necessary for the multi-hop swap, encoded as ExactInputParams
in calldata
Return Values
amountOut
uint256
The amount of the received token
exactOutputSingle
Swaps as little as possible of one token for amountOut
of another token that may remain in the router after the swap.
Parameters
params
struct IV3SwapRouter.ExactOutputSingleParams
The parameters necessary for the swap, encoded as ExactOutputSingleParams
in calldata
Return Values
amountIn
uint256
The amount of the input token
exactOutput
Swaps as little as possible of one token for amountOut
of another along the specified path (reversed) that may remain in the router after the swap.
Parameters
params
struct IV3SwapRouter.ExactOutputParams
The parameters necessary for the multi-hop swap, encoded as ExactOutputParams
in calldata
Return Values
amountIn
uint256
The amount of the input token
V2SwapRouter
Solidty API
swapExactTokensForTokens
Swaps amountIn
of one token for as much as possible of another token
Setting amountIn
to 0 will cause the contract to look up its own balance, and swap the entire amount, enabling contracts to send tokens before calling this function.
Parameters
amountIn
uint256
The amount of token to swap
amountOutMin
uint256
The minimum amount of output that must be received
path
address[]
The ordered list of tokens to swap through
to
address
The recipient address
Return Values
amountOut
uint256
The amount of the received token
swapTokensForExactTokens
Swaps as little as possible of one token for an exact amount of another token
Parameters
amountOut
uint256
The amount of token to swap for
amountInMax
uint256
The maximum amount of input that the caller will pay
path
address[]
The ordered list of tokens to swap through
to
address
The recipient address
Return Values
amountIn
uint256
The amount of token to pay
StableSwapRouter
Solidity API
stableSwapFactory
stableSwapInfo
SetStableSwap
constructor
setStableSwap
Set Trading Post Stable Swap Factory and Info
Only callable by contract owner
exactInputStableSwap
Parameters
path
address[]
flag
uint256[]
token amount in a stable swap pool. 2 for 2pool, 3 for 3pool
amountIn
uint256
amountOutMin
uint256
to
address
exactOutputStableSwap
Parameters
path
address[]
flag
uint256[]
token amount in a stable swap pool. 2 for 2pool, 3 for 3pool
amountOut
uint256
amountInMax
uint256
to
address
Last updated