MainnetRouter
Router implementation with functions to interact with DAI on Ethereum Mainnet.
Variables
DAI
DAI address.
sDAI
SavingsDai address.
Functions
constructor
Constructor.
Parameters
Name | Type | Description |
---|---|---|
_conditionalTokens | contract IConditionalTokens | Conditional Tokens contract. |
_wrapped1155Factory | contract IWrapped1155Factory | Wrapped1155Factory contract. |
splitFromDai
Splits a position using DAI and sends the ERC20 outcome tokens back to the user.
The ERC20 associated to each outcome must be previously created on the wrapped1155Factory.
Parameters
Name | Type | Description |
---|---|---|
market | contract Market | The Market to split. |
amount | uint256 | The amount of collateral to split. |
Pre-condition
The ERC20 associated to each outcome must be previously created on the wrapped1155Factory.
Logic
Transfer DAI from the user to
MainnetRouter
, which will be converted to Savings DAI (sDAI).Call
conditionalTokens.splitPosition
to transfer sDAI fromMainnetRouter
toConditionalTokens
, while minting corresponding ERC1155 outcome tokens toMainnetRouter
.Transfer ERC1155 outcome tokens from
MainnetRouter
toWrapped1155Factory
contract. There is a callback function inWrapped1155Factory
that will wrap the tokens into ERC20 tokens, then transfer the wrapped tokens back to the original user.
mergeToDai
Merges positions and sends DAI to the user.
The ERC20 associated to each outcome must be previously created on the wrapped1155Factory.
Parameters
Name | Type | Description |
---|---|---|
market | contract Market | The Market to merge. |
amount | uint256 | The amount of outcome tokens to merge. |
Pre-condition
The ERC20 associated to each outcome must be previously created on the wrapped1155Factory.
The caller must have <amount> ERC20 tokens of all the outcomes of a market. For example, to call
mergeToDai
of a market with 3 outcomes: Yes, No, Invalid, the caller must have <amount> tokens for each outcome.
Logic
Merging positions does precisely the opposite of what splitting a position does.
Unwraps ERC20 outcome tokens (which will burn these tokens and transfer corresponding ERC1155 outcome tokens tokens back to the
Router
contract).Call
conditionalTokens.mergePositions
to burn ERC1155 outcome tokens.Return sDAI to
MainnetRouter
, which will then be converted to DAI and sent to the user.
redeemToDai
Redeems positions and sends DAI to the user.
The ERC20 associated to each outcome must be previously created on the wrapped1155Factory.
Parameters
Name | Type | Description |
---|---|---|
market | contract Market | The Market to redeem. |
outcomeIndexes | uint256[] | The index of the outcomes to redeem. |
amounts | uint256[] | Amount to redeem of each outcome. |
Pre-condition
The ERC20 associated to each outcome must be previously created on the wrapped1155Factory.
The caller must have ERC20 tokens of the outcomes they want to redeem. For example, to call
redeemToDai
for outcome Yes of a market with 3 outcomes: Yes, No, Invalid, the caller must have Yes tokens. (The call will still be processed even if the caller does not have tokens, but it will have no effect).conditionalTokens.reportPayouts
has been called by an oracle.
Logic
Unwraps ERC20 outcome tokens (which will burn these tokens and transfer corresponding ERC1155 outcome tokens back to the
MainnetRouter
contract).Call
conditionalTokens.redeemPositions
to burn ERC1155 outcome tokens.Return sDAI to
MainnetRouter
.MainnetRouter
will calculate the sDAI difference before and after redeeming, which will then be converted to DAI and sent to the user.
Last updated