Mint
The Mint Contract implements the logic for Collateralized Debt Positions (CDPs), through which users can mint or short new mAsset tokens against their deposited collateral (UST or mAssets).
Current prices of collateral and minted mAssets are read from the Collateral Oracle and Oracle Contract to determine the C-ratio of each CDP. Depending on which the type of asset used as the collateral, the minimum collateral ratio of each CDP may change. Collateral Oracle is responsible for feeding prices and collateral ratio multiplier
of each collateral asset type.
The Mint Contract also contains the logic for liquidating CDPs with C-ratios below the minimum for their minted mAsset through auction.
InitMsg
owner
HumanAddr
Owner of contract
oracle
HumanAddr
collector
HumanAddr
collateral_oracle
HumanAddr
staking
HumanAddr
terraswap_factory
HumanAddr
Contract address of Terraswap Factory
lock
HumanAddr
base_denom
String
Native token denomination for stablecoin (TerraUSD)
token_code_id
u64
Code ID for Terraswap CW20 Token
protocol_fee_rate
Decimal
Protocol fee
HandleMsg
Receive
Receive
Can be called during a CW20 token transfer when the Mint contract is the recipient. Allows the token transfer to execute a Receive Hook as a subsequent action within the same transaction.
amount
Uint128
Amount of tokens received
sender
HumanAddr
Sender of the token transfer
msg
*
Binary
* = optional
UpdateConfig
UpdateConfig
Updates the configuration of the Mint contract. Can only be issued by the owner of the Mint contract.
owner
*
HumanAddr
New owner
oracle
*
u64
New oracle contract address
collector
*
HumanAddr
New collector contract address
terraswap_factory
*
HumanAddr
Contract address of Terraswap Factory
lock
*
HumanAddr
Contract address of Mirror Lock
token_code_id
*
u64
New token code ID
protocol_fee_rate
*
Decimal
New protocol fee rate
* = optional
UpdateAsset
UpdateAsset
Updates mAsset's minting and liquidation parameters. Can only be issued by the owner of the Mint contract.
asset_info
AssetInfo
Asset to be updated
auction_discount
*
Decimal
New auction discount rate
min_collateral_ratio
*
Decimal
New minimum collateralization ratio
ipo_params
*
IPOParams
Parameters to be used for Pre-IPO asset
* = optional
IPOParams
mint_end
u64
Time which mint_period
ends
pre_ipo_price
Decimal
Fixed price to be used to mint during mint_period
min_collateral_ratio_after_ipo
Decimal
Minimum collateralization ratio to be used after IPO is triggered (Used for pre-IPO)
RegisterAsset
RegisterAsset
Registers a new mAsset to be mintable.
asset_token
HumanAddr
Contract address of mAsset to be registered
auction_discount
Decimal
Auction discount rate
min_collateral_ratio
Decimal
Minimum collateralization ratio
ipo_params
*
IPOParams
Parameters to be used for Pre-IPO asset
*= optional
TriggerIPO
TriggerIPO
Asset feeder is allowed to trigger IPO event on pre-IPO asset to have the following characters:
Oracle feeder now feeds real-time price of the underlying asset
The asset becomes mintable again, even after the
mint_period
has ended
asset_token
HumanAddr
Contract address of the token
RegisterMigration
RegisterMigration
asset_token
HumanAddr
Contract address of asset to be migrated
end_price
Decimal
Final price to freeze old mAsset
OpenPosition
OpenPosition
Used for creating a new CDP with TerraUSD collateral. For creating a CDP using mAsset collateral, you need to use the Receive Hook variant.
Opens a new CDP with an initial deposit of collateral. The user specifies the target minted mAsset for the CDP, and sets the desired initial collateralization ratio, which must be greater or equal than the minimum for the mAsset. The initial amount of minted mAsset tokens are determined by:
asset_info
AssetInfo
Asset to be minted by CDP
collateral
Asset
Initial collateral deposit for the CDP
collateral_ratio
Decimal
Initial desired collateralization ratio
short_params
*
ShortParams
Terraswap Price and spread limit to immediately short tokens after CDP creation (used for "Short")
*= optional
ShortParams
ShortParams
If optional short_params
is added, mint contract will immediately sell the minted mAssets andsLP
tokens will be minted and sent to the user. The UST obtained from the operation will be added to the user's lock position in lock contract.
belief_price
*
Decimal
Price submitted to the Terraswap pool
max_spread
*
Decimal
Maximum slippage accepted during swap transaction against the Terraswap Pool
*=optional
Deposit
Deposit
Used for depositing TerraUSD collateral. For depositing mAsset collateral to a CDP, you need to use the Receive Hook variant.
Deposits additional collateral to an existing CDP to raise its C-ratio.
collateral
Asset
Collateral amount to be deposited
position_idx
Uint128
Index of position
Withdraw
Withdraw
Withdraws collateral from the CDP. Cannot withdraw more than an amount that would drop the CDP's C-ratio below the minted mAsset's mandated minimum.
collateral
Asset
Collateral to withdraw
position_idx
Uint128
Index of position
Mint
Mint
Mints new mAssets against an existing CDP. Cannot mint more than what would bring the CDP's C-ratio below its minted mAsset's mandated minimum.
position_idx
Uint128
Index of position
asset
Asset
mAssets to be minted
short_params
ShortParams
Terraswap Price and maximum slippage tolerance to be applied for selling minted token after position creation (used for "Short")
Receive Hooks
OpenPosition
OpenPosition
Issued when a user sends mAsset tokens to the Mint contract.
Uses the sent amount to create a new CDP.
Used for creating a new CDP with mAsset collateral. For creating a CDP using TerraUSD collateral, you need to use the HandleMsg variant.
asset_info
AssetInfo
mAsset to be minted by CDP
collateral_ratio
Decimal
Initial collateralization ratio to use
short_params
ShortParams
Terraswap Price and spread limit to immediately short tokens after CDP creation (used for "Short")
Deposit
Deposit
Issued when a user sends mAsset tokens to the Mint contract.
Deposits the amount as collateral to an open CDP.
Used for depositing mAsset collateral. For depositing TerraUSD collateral to a CDP, you need to use the HandleMsg variant.
position_idx
Uint128
Index of position
Burn
Burn
Issued when a user sends mAsset tokens to the Mint contract.
Burns the sent tokens against a CDP and reduces the C-ratio. If all outstanding minted mAsset tokens are burned, the position is closed and the collateral is returned.
position_idx
Uint128
Index of position
Auction
Auction
Issued when a user sends mAsset tokens to the Mint contract.
Purchases the collateral of a CDP subject to liquidation (whose C-ratio has fallen under its minted mAsset's minimum). The buyer cannot pay more than the CDP's current minted mAsset balance.
The discounted price for the collateral is calculated as follows:
position_idx
Uint128
Index of position
QueryMsg
Config
Config
Response
owner
HumanAddr
Owner of contract
oracle
HumanAddr
collector
HumanAddr
collateral_oracle
HumanAddr
Contract address of Mirror Collateral Oracle
staking
HumanAddr
Contract address of Mirror Staking
terraswap_factory
HumanAddr
Contract address of Terraswap Factory
lock
HumanAddr
Contract address of Mirror Lock
base_denom
String
Native token denomination for stablecoin (TerraUSD)
token_code_id
u64
Code ID for Terraswap CW20 Token
protocol_fee_rate
Decimal
Protocol fee
AssetConfig
AssetConfig
asset_token
HumanAddr
Contract address of asset to query
Response
token
HumanAddr
Contract address of asset to query
auction_discount
Decimal
Discount rate applied for liquidation auction
min_collateral_ratio
Decimal
Lowest collateral ratio to mint this mAsset
end_price
*
Decimal
Fixed oracle price of mAsset when migration / Pre-IPO / Delisting occurs
ipo_params
*
u64
Parameters to be used for Pre-IPO assets
*= optional
Position
Position
position_idx
Uint128
Index of position to query
Response
idx
Uint128
Index of CDP
owner
HumanAddr
Address of CDP owner
collateral
Asset
Asset used as collateral
asset
Asset
Asset minted by CDP
is_short
bool
Determines if CDP is short position or not
NextPositionIdx
NextPositionIdx
Returns the most recent position ID +1.
Response
next_position_idx
Uint128
Index of the next position to be created
Positions
Positions
limit
*
u32
Upper bound of number of entries to query
owner_addr*
HumanAddr
Owner of positions
asset_token
*
HumanAddr
Contract address of asset token
start_after
*
Uint128
Position index to start at
* = optional
Last updated