PSMRouter

the PSM router is an ungoverned, non custodial contract that allows user to seamlessly wrap and unwrap their WETH for trading against the PegStabilityModule.

Functions

constructor

function constructor(
    contract IPegStabilityModule _psm,
    contract IChi _chi
) public

Parameters

NameTypeDescription

_psm

contract IPegStabilityModule

_chi

contract IChi

getMintAmountOut

function getMintAmountOut(
    uint256 amountIn
) public returns (uint256 amountChiOut)

view only pass through function to get amount of CHI out with given amount of ETH in

Parameters

NameTypeDescription

amountIn

uint256

getRedeemAmountOut

function getRedeemAmountOut(
    uint256 amountChiIn
) public returns (uint256 amountTokenOut)

view only pass through function to get amount of ETH out with given amount of CHI in

Parameters

NameTypeDescription

amountChiIn

uint256

getMaxMintAmountOut

function getMaxMintAmountOut() external returns (uint256)

the maximum mint amount out

getMaxRedeemAmountOut

function getMaxRedeemAmountOut() external returns (uint256)

the maximum redeem amount out

mint

function mint(
    address to,
    uint256 minAmountOut,
    uint256 ethAmountIn
) external returns (uint256)

Mints chi to the given address, with a minimum amount required

This wraps ETH and then calls into the PSM to mint the chi. We return the amount of chi minted.

Parameters

NameTypeDescription

to

address

The address to mint chi to

minAmountOut

uint256

The minimum amount of chi to mint

ethAmountIn

uint256

mint

function mint(
    address to,
    uint256 minAmountOut,
    uint256 deadline,
    uint256 ethAmountIn
) external returns (uint256)

Mints chi to the given address, with a minimum amount required and a deadline

This wraps ETH and then calls into the PSM to mint the chi. We return the amount of chi minted.

Parameters

NameTypeDescription

to

address

The address to mint chi to

minAmountOut

uint256

The minimum amount of chi to mint

deadline

uint256

The deadline for this order to be filled

ethAmountIn

uint256

redeem

function redeem(
    address to,
    uint256 amountChiIn,
    uint256 minAmountOut
) external returns (uint256)

Redeems chi for ETH First pull user CHI into this contract Then call redeem on the PSM to turn the CHI into weth Withdraw all weth to eth in the router Send the eth to the specified recipient

Parameters

NameTypeDescription

to

address

the address to receive the eth

amountChiIn

uint256

the amount of CHI to redeem

minAmountOut

uint256

the minimum amount of weth to receive

redeem

function redeem(
    address to,
    uint256 amountChiIn,
    uint256 minAmountOut,
    uint256 deadline
) external returns (uint256)

Redeems chi for ETH First pull user CHI into this contract Then call redeem on the PSM to turn the CHI into weth Withdraw all weth to eth in the router Send the eth to the specified recipient

Parameters

NameTypeDescription

to

address

the address to receive the eth

amountChiIn

uint256

the amount of CHI to redeem

minAmountOut

uint256

the minimum amount of weth to receive

deadline

uint256

The deadline for this order to be filled

fallback

function fallback() external

function to receive ether from the weth contract when the redeem function is called will not accept eth unless there is an active redemption.

_mint

function _mint(
    address _to,
    uint256 _minAmountOut,
    uint256 _ethAmountIn
) internal returns (uint256)

helper function to wrap eth and handle mint call to PSM

Parameters

NameTypeDescription

_to

address

_minAmountOut

uint256

_ethAmountIn

uint256

_redeem

function _redeem(
    address to,
    uint256 amountChiIn,
    uint256 minAmountOut
) internal returns (uint256 amountOut)

helper function to deposit user CHI, unwrap weth and send eth to the user the PSM router receives the weth, then sends it to the specified recipient.

Parameters

NameTypeDescription

to

address

amountChiIn

uint256

minAmountOut

uint256

Last updated