Bridge
This contract is responsible for cross-asset swaps using the Synthetix protocol as the bridging exchange. There are three types of supported cross-asset swaps, tokenToSynth, synthToToken, and tokenToToken.
tokenToSynth Swaps a supported token in a saddle pool to any synthetic asset (e.g. tBTC -> sAAVE).
synthToToken Swaps any synthetic asset to a suported token in a saddle pool (e.g. sDEFI -> USDC).
tokenToToken Swaps a supported token in a saddle pool to one in another pool (e.g. renBTC -> DAI).
Due to the settlement periods of synthetic assets, the users must wait until the trades can be completed. Users will receive an ERC721 token that represents pending cross-asset swap. Once the waiting period is over, the trades can be settled and completed by calling the completeToSynth
or the completeToToken
function. In the cases of pending synthToToken
or tokenToToken
swaps, the owners of the pending swaps can also choose to withdraw the bridging synthetic assets instead of completing the swap.
Functions:
Events:
Function constructor(address synthSwapperAddress)
constructor(address synthSwapperAddress)
Deploys this contract and initializes the master version of the SynthSwapper contract. The address to the Synthetix protocol's Exchanger contract is also set on deployment.
Function getProxyAddressFromTargetSynthKey(bytes32 synthKey) → contract IERC20
getProxyAddressFromTargetSynthKey(bytes32 synthKey) → contract IERC20
Returns the address of the proxy contract targeting the synthetic asset with the given synthKey
.
Parameters:
synthKey
: the currency key of the synth
Return Values:
address of the proxy contract
Function getPendingSwapInfo(uint256 itemId) → enum Bridge.PendingSwapType swapType, uint256 secsLeft, address synth, uint256 synthBalance, address tokenTo
getPendingSwapInfo(uint256 itemId) → enum Bridge.PendingSwapType swapType, uint256 secsLeft, address synth, uint256 synthBalance, address tokenTo
Returns various information of a pending swap represented by the given itemId
. Information includes the type of the pending swap, the number of seconds left until it can be settled, the address and the balance of the synth this swap currently holds, and the address of the destination token.
Parameters:
itemId
: ID of the pending swap
Return Values:
swapType the type of the pending virtual swap, secsLeft number of seconds left until this swap can be settled, synth address of the synth this swap uses, synthBalance amount of the synth this swap holds, tokenTo the address of the destination token
Function withdraw(uint256 itemId, uint256 amount)
withdraw(uint256 itemId, uint256 amount)
Settles and withdraws the synthetic asset without swapping it to a token in a Saddle pool. Only the owner of the ERC721 token of itemId
can call this function. Reverts if the given itemId
does not represent a synthToToken
or a tokenToToken
swap.
Parameters:
itemId
: ID of the pending swapamount
: the amount of the synth to withdraw
Function completeToSynth(uint256 itemId)
completeToSynth(uint256 itemId)
Completes the pending tokenToSynth
swap by settling and withdrawing the synthetic asset. Reverts if the given itemId
does not represent a tokenToSynth
swap.
Parameters:
itemId
: ERC721 token ID representing a pendingtokenToSynth
swap
Function calcCompleteToToken(uint256 itemId, uint256 swapAmount) → uint256
calcCompleteToToken(uint256 itemId, uint256 swapAmount) → uint256
Calculates the expected amount of the token to receive on calling completeToToken()
with the given swapAmount
.
Parameters:
itemId
: ERC721 token ID representing a pendingSynthToToken
orTokenToToken
swapswapAmount
: the amount of bridging synth to swap from
Return Values:
expected amount of the token the user will receive
Function completeToToken(uint256 itemId, uint256 swapAmount, uint256 minAmount, uint256 deadline)
completeToToken(uint256 itemId, uint256 swapAmount, uint256 minAmount, uint256 deadline)
Completes the pending SynthToToken
or TokenToToken
swap by settling the bridging synth and swapping it to the desired token. Only the owners of the pending swaps can call this function.
Parameters:
itemId
: ERC721 token ID representing a pendingSynthToToken
orTokenToToken
swapswapAmount
: the amount of bridging synth to swap fromminAmount
: the minimum amount of the token to receive - reverts if this amount is not reacheddeadline
: the timestamp representing the deadline for this transaction - reverts if deadline is not met
Function calcTokenToSynth(contract ISwap swap, uint8 tokenFromIndex, bytes32 synthOutKey, uint256 tokenInAmount) → uint256
calcTokenToSynth(contract ISwap swap, uint8 tokenFromIndex, bytes32 synthOutKey, uint256 tokenInAmount) → uint256
Calculates the expected amount of the desired synthetic asset the caller will receive after completing a TokenToSynth
swap with the given parameters. This calculation does not consider the settlement periods.
Parameters:
swap
: the address of a Saddle pool to use to swap the given token to a bridging synthtokenFromIndex
: the index of the token to swap fromsynthOutKey
: the currency key of the desired synthetic assettokenInAmount
: the amount of the token to swap form
Return Values:
the expected amount of the desired synth
Function tokenToSynth(contract ISwap swap, uint8 tokenFromIndex, bytes32 synthOutKey, uint256 tokenInAmount, uint256 minAmount) → uint256
tokenToSynth(contract ISwap swap, uint8 tokenFromIndex, bytes32 synthOutKey, uint256 tokenInAmount, uint256 minAmount) → uint256
Initiates a cross-asset swap from a token supported in the swap
pool to any synthetic asset. The caller will receive an ERC721 token representing their ownership of the pending cross-asset swap.
Parameters:
swap
: the address of a Saddle pool to use to swap the given token to a bridging synthtokenFromIndex
: the index of the token to swap fromsynthOutKey
: the currency key of the desired synthetic assettokenInAmount
: the amount of the token to swap formminAmount
: the amount of the token to swap form
Return Values:
ID of the ERC721 token sent to the caller
Function calcSynthToToken(contract ISwap swap, bytes32 synthInKey, uint8 tokenToIndex, uint256 synthInAmount) → uint256, uint256
calcSynthToToken(contract ISwap swap, bytes32 synthInKey, uint8 tokenToIndex, uint256 synthInAmount) → uint256, uint256
Calculates the expected amount of the desired token the caller will receive after completing a SynthToToken
swap with the given parameters. This calculation does not consider the settlement periods or any potential changes of the swap
pool composition.
Parameters:
swap
: the address of a Saddle pool to use to swap the given token to a bridging synthsynthInKey
: the currency key of the synth to swap fromtokenToIndex
: the index of the token to swap tosynthInAmount
: the amount of the synth to swap form
Return Values:
the expected amount of the bridging synth and the expected amount of the desired token
Function synthToToken(contract ISwap swap, bytes32 synthInKey, uint8 tokenToIndex, uint256 synthInAmount, uint256 minMediumSynthAmount) → uint256
synthToToken(contract ISwap swap, bytes32 synthInKey, uint8 tokenToIndex, uint256 synthInAmount, uint256 minMediumSynthAmount) → uint256
Initiates a cross-asset swap from a synthetic asset to a supported token. The caller will receive an ERC721 token representing their ownership of the pending cross-asset swap.
Parameters:
swap
: the address of a Saddle pool to use to swap the given token to a bridging synthsynthInKey
: the currency key of the synth to swap fromtokenToIndex
: the index of the token to swap tosynthInAmount
: the amount of the synth to swap formminMediumSynthAmount
: the minimum amount of the bridging synth at pre-settlement stage
Return Values:
the ID of the ERC721 token sent to the caller
Function calcTokenToToken(contract ISwap[2] swaps, uint8 tokenFromIndex, uint8 tokenToIndex, uint256 tokenFromAmount) → uint256, uint256
calcTokenToToken(contract ISwap[2] swaps, uint8 tokenFromIndex, uint8 tokenToIndex, uint256 tokenFromAmount) → uint256, uint256
Calculates the expected amount of the desired token the caller will receive after completing a TokenToToken
swap with the given parameters. This calculation does not consider the settlement periods or any potential changes of the pool compositions.
Parameters:
swaps
: the addresses of the two Saddle pools used to do the cross-asset swaptokenFromIndex
: the index of the token in the firstswaps
pool to swap fromtokenToIndex
: the index of the token in the secondswaps
pool to swap totokenFromAmount
: the amount of the token to swap from
Return Values:
the expected amount of bridging synth at pre-settlement stage and the expected amount of the desired token
Function tokenToToken(contract ISwap[2] swaps, uint8 tokenFromIndex, uint8 tokenToIndex, uint256 tokenFromAmount, uint256 minMediumSynthAmount) → uint256
tokenToToken(contract ISwap[2] swaps, uint8 tokenFromIndex, uint8 tokenToIndex, uint256 tokenFromAmount, uint256 minMediumSynthAmount) → uint256
Initiates a cross-asset swap from a token in one Saddle pool to one in another. The caller will receive an ERC721 token representing their ownership of the pending cross-asset swap.
Parameters:
swaps
: the addresses of the two Saddle pools used to do the cross-asset swaptokenFromIndex
: the index of the token in the firstswaps
pool to swap fromtokenToIndex
: the index of the token in the secondswaps
pool to swap totokenFromAmount
: the amount of the token to swap fromminMediumSynthAmount
: the minimum amount of the bridging synth at pre-settlement stage
Return Values:
the ID of the ERC721 token sent to the caller
Function setSynthIndex(contract ISwap swap, uint8 synthIndex, bytes32 currencyKey)
setSynthIndex(contract ISwap swap, uint8 synthIndex, bytes32 currencyKey)
Registers the index and the address of the supported synth from the given swap
pool. The matching currency key must be supplied for a successful registration.
Parameters:
swap
: the address of the pool that contains the synthsynthIndex
: the index of the supported synth in the givenswap
poolcurrencyKey
: the currency key of the synth in bytes32 form
Function getSynthIndex(contract ISwap swap) → uint8
getSynthIndex(contract ISwap swap) → uint8
Returns the index of the supported synth in the given swap
pool. Reverts if the swap
pool is not registered.
Parameters:
swap
: the address of the pool that contains the synth
Return Values:
the index of the supported synth
Function getSynthAddress(contract ISwap swap) → address
getSynthAddress(contract ISwap swap) → address
Returns the address of the supported synth in the given swap
pool. Reverts if the swap
pool is not registered.
Parameters:
swap
: the address of the pool that contains the synth
Return Values:
the address of the supported synth
Function getSynthKey(contract ISwap swap) → bytes32
getSynthKey(contract ISwap swap) → bytes32
Returns the currency key of the supported synth in the given swap
pool. Reverts if the swap
pool is not registered.
Parameters:
swap
: the address of the pool that contains the synth
Return Values:
the currency key of the supported synth
Function updateExchangerCache()
updateExchangerCache()
Updates the stored address of the EXCHANGER
contract. When the Synthetix team upgrades their protocol, a new Exchanger contract is deployed. This function manually updates the stored address.
Event SynthIndex(address swap, uint8 synthIndex, bytes32 currencyKey, address synthAddress)
SynthIndex(address swap, uint8 synthIndex, bytes32 currencyKey, address synthAddress)
No description
Event TokenToSynth(address requester, uint256 itemId, contract ISwap swapPool, uint8 tokenFromIndex, uint256 tokenFromInAmount, bytes32 synthToKey)
TokenToSynth(address requester, uint256 itemId, contract ISwap swapPool, uint8 tokenFromIndex, uint256 tokenFromInAmount, bytes32 synthToKey)
No description
Event SynthToToken(address requester, uint256 itemId, contract ISwap swapPool, bytes32 synthFromKey, uint256 synthFromInAmount, uint8 tokenToIndex)
SynthToToken(address requester, uint256 itemId, contract ISwap swapPool, bytes32 synthFromKey, uint256 synthFromInAmount, uint8 tokenToIndex)
No description
Event TokenToToken(address requester, uint256 itemId, contract ISwap[2] swapPools, uint8 tokenFromIndex, uint256 tokenFromAmount, uint8 tokenToIndex)
TokenToToken(address requester, uint256 itemId, contract ISwap[2] swapPools, uint8 tokenFromIndex, uint256 tokenFromAmount, uint8 tokenToIndex)
No description
Event Settle(address requester, uint256 itemId, contract IERC20 settleFrom, uint256 settleFromAmount, contract IERC20 settleTo, uint256 settleToAmount, bool isFinal)
Settle(address requester, uint256 itemId, contract IERC20 settleFrom, uint256 settleFromAmount, contract IERC20 settleTo, uint256 settleToAmount, bool isFinal)
No description
Event Withdraw(address requester, uint256 itemId, contract IERC20 synth, uint256 synthAmount, bool isFinal)
Withdraw(address requester, uint256 itemId, contract IERC20 synth, uint256 synthAmount, bool isFinal)
No description
Last updated