Pair
This documentation covers Dragonswap-specific functionality. For ERC-20 functionality, see Pair (ERC-20).
Code
Events
Mintβ
event Mint(address indexed sender, uint amount0, uint amount1);Emitted each time liquidity tokens are created via mint.
Burnβ
event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);Emitted each time liquidity tokens are destroyed via burn.
Swapβ
event Swap(
address indexed sender,
uint amount0In,
uint amount1In,
uint amount0Out,
uint amount1Out,
address indexed to
);Emitted each time a swap occurs via swap.
Syncβ
Emitted each time reserves are updated via mint, burn, swap, or sync.
Read-Only Functions
MINIMUM_LIQUIDITYβ
Returns 1000 for all pairs. See Minimum Liquidity.
factoryβ
Returns the factory address.
token0β
Returns the address of the pair token with the lower sort order.
token1β
Returns the address of the pair token with the higher sort order.
getReservesβ
Returns the reserves of token0 and token1 used to price trades and distribute liquidity. Also returns the block.timestamp (mod 2**32) of the last block during which an interaction occured for the pair.
price0CumulativeLastβ
price1CumulativeLastβ
kLastβ
Returns the product of the reserves as of the most recent liquidity event.
State-Changing Functions
mintβ
Creates pool tokens.
burnβ
Destroys pool tokens.
swapβ
Swaps tokens. For regular swaps, data.length must be 0.
skimβ
syncβ
Emits Sync.
Interface
ABI
Last updated