IFrictionlessERC20ConverterManager
Inherits: IAbstractFeeModule
Author: DEFYCA Labs S.à.r.l
Copyright © 2023 DEFYCA Labs S.à.r.l Permission is hereby granted, free of charge, to any person obtaining a copy of the Frictionless protocol smart contracts (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL DEFYCA LABS S.à.r.l BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Interface defining the frictionless conversion and atomic swapping of ERC-20 tokens for FrictionlessFundDepositToken
on the Frictionless protocol. The conversion of tokens is considered frictionless as the protocol does not impose any fee structures on the conversion itself.
Functions
pause
See {PausableUpgradeable-_pause}
unpause
See {PausableUpgradeable-_unpause}
setConvertTokensFees
Set the conversion fees for the token pair. The fees can be any combination of zero (0%) or upto 10000 bps (100%) on any directional transfer. Fees can only be set by the Owner (PROTOCOL_ADMIN).
Parameters
erc20Token_
address
the address of the ERC20 token.
fundDepositToken_
address
the address of the FundDeposit token.
feeInfo_
FeeInfo
The fees associated with the conversion of the token pair. throws FrictionlessERC20ConverterManagerUnsupportedPair
if the token pair is not valid throws AbstractFeeModuleInvalidFeeRecipient
if the feeRecipientAddr is a zero address throws AbstractFeeModuleInvalidFee
if the feeInBps is not in the valid range (ZERO_FEES_IN_BPS to MAX_FEES_IN_BPS) emits FrictionlessTokenFeeSet
upon completion of the setting of the fee info for the token in either set of fees
setConvertTokensFee
Set the conversion fees for the token pair using the tokenFeeKey_. The fees can be any combination of zero (0%) or upto 10000 bps (100%) on any directional transfer. Fees can only be set by the Owner (PROTOCOL_ADMIN).
Parameters
tokenFeeKey_
bytes32
the tokenFeeKey as determined getConvertTokensKey
feeInfo_
FeeInfo
The fees associated with the conversion of the token pair. throws FrictionlessERC20ConverterManagerUnsupportedPair
if the token pair is not valid throws AbstractFeeModuleInvalidFeeRecipient
if the feeRecipientAddr is a zero address throws AbstractFeeModuleInvalidFee
if the feeInBps is not in the valid range (ZERO_FEES_IN_BPS to MAX_FEES_IN_BPS) emits FrictionlessTokenFeeSet
upon completion of the setting of the fee info for the token in either set of fees
removeFrictionlessTokensConvertInfo
Removes the conversion fees for the token pair using the tokenFeeKey_. Fees can only be set by the Owner (PROTOCOL_ADMIN).
Parameters
erc20Token_
address
the address of the ERC20 token.
fundDepositToken_
address
the address of the FundDeposit token.
addFrictionlessTokensConvertInfo
Sets the mapping for the convertible tokens in the contract, calling this will add a new conversion pair to the contract.
Parameters
tokensConvertInfoArr_
FrictionlessTokensConvertInfo[]
the array of token conversions to set. throws FrictionlessERC20ConverterManagerInvalidTokenConvertInfo
if the tokensConvertInfoArr_ contains zero addresses throws FrictionlessERC20ConverterManagerUnableToUpdateConvertInfo
if the tokensConvertInfoArr_ cannot be updated
convertFromERC20
Converts from an ERC20 token to a FrictionlessFundDepositToken
, using the safe precision conversion. The ERC20 token is transferred to configured treasuryAddress in the conversion and the minted FrictionlessFundDepositToken
is sent to the msg.sender
Parameters
erc20Token_
address
the address of the ERC20 token to convert from, which must exist in a FrictionlessTokensConvertInfo
in order to succeed.
fundDepositToken_
address
the address of the FundDeposit token to convert to, which must exist in a FrictionlessTokensConvertInfo
in order to succeed.
erc20TokensAmount_
uint256
the amount of tokens to convert throws FrictionlessERC20ConverterManagerInvalidTokenType
if the tokenAddr_ is not a configured convertible erc20Token throw FrictionlessERC20ConverterManagerInvalidTokensAmountAfterConversion
if the conversion resolves to zero Emits the event FrictionlessTokensConverted
detailing the full convertibility
convertFromERC20
Converts from an ERC20 token to a FrictionlessFundDepositToken
, using the safe precision conversion. The ERC20 token is transferred to configured treasuryAddress in the conversion and the minted FrictionlessFundDepositToken
is sent to the convertedTokensRecipient_
Parameters
erc20Token_
address
the address of the ERC20 token to convert from, which must exist in a FrictionlessTokensConvertInfo
in order to succeed.
fundDepositToken_
address
the address of the FundDeposit token to convert to, which must exist in a FrictionlessTokensConvertInfo
in order to succeed.
convertedTokensRecipient_
address
the destination of the converted FrictionlessFundDepositToken
erc20TokensAmount_
uint256
the amount of tokens to convert
Returns
<none>
uint256
the amount of FrictionlessFundDepositToken
converted throws FrictionlessERC20ConverterManagerInvalidTokenType
if the tokenAddr_ is not a configured convertible erc20Token throw FrictionlessERC20ConverterManagerInvalidTokensAmountAfterConversion
if the conversion resolves to zero Emits the event FrictionlessTokensConverted
detailing the full convertibility
convertToERC20
Converts to an ERC20 token from a FrictionlessFundDepositToken, using the safe precision conversion. The FrictionlessFundDepositToken is burned in the conversion and the ERC20 is sent to the msg.sender
from the treasuryAddress.
Parameters
erc20Token_
address
fundDepositToken_
address
the address of the FrictionlessFundDepositToken token to convert from, which must exist in a FrictionlessTokensConvertInfo
in order to succeed.
fundDepositTokensAmount_
uint256
the amount of tokens to convert
Returns
<none>
uint256
the amount of ERC20 converted throws FrictionlessERC20ConverterManagerInvalidTokenType
if the tokenAddr_ is not a configured convertible fundDepositToken throw FrictionlessERC20ConverterManagerInvalidTokensAmountAfterConversion
if the conversion resolves to zero Emits the event FrictionlessTokensConverted
detailing the full convertibility
convertToERC20
Converts to an ERC20 token from a FrictionlessFundDepositToken
, using the safe precision conversion. The FrictionlessFundDepositToken is burned in the conversion and the ERC20 is sent to the convertedTokensRecipient_ from the treasuryAddress.
Parameters
erc20Token_
address
fundDepositToken_
address
the address of the FrictionlessFundDepositToken
token to convert from, which must exist in a FrictionlessTokensConvertInfo
in order to succeed.
convertedTokensRecipient_
address
the destination of the converted ERC20 token
fundDepositTokensAmount_
uint256
the amount of tokens to convert
Returns
<none>
uint256
the amount of ERC20 converted throws FrictionlessERC20ConverterManagerInvalidTokenType
if the tokenAddr_ is not a configured convertible fundDepositToken throw FrictionlessERC20ConverterManagerInvalidTokensAmountAfterConversion
if the conversion resolves to zero Emits the event FrictionlessTokensConverted
detailing the full convertibility
getConvertTokenInfo
Returns the FrictionlessTokensConvertInfo
for the given conversion key
Parameters
convertInfoKey_
bytes32
the address of the token to validate.
Returns
<none>
FrictionlessTokensConvertInfo
the FrictionlessTokensConvertInfo
for the given conversion key
getConvertTokenKeysByToken
Returns the conversion keys for the given tokenAddr_
Parameters
tokenAddr_
address
the address of the token to validate.
Returns
<none>
bytes32[]
the conversion keys arr for the given tokenAddr_
getConvertTokenKeysCountByToken
Returns the count of conversion keys for the given tokenAddr_
Parameters
tokenAddr_
address
the address of the token to validate.
Returns
<none>
uint256
the count of conversion keys arr for the given tokenAddr_
getConvertTokenInfosByToken
Returns the FrictionlessTokensConvertInfo
for the given tokenAddr_
Parameters
tokenAddr_
address
the address of the token to validate.
Returns
<none>
FrictionlessTokensConvertInfo[]
the FrictionlessTokensConvertInfo
for the given tokenAddr_
isTokenSupported
Returns true if the token specified by the tokenAddr_
has been registered as a valid convertible pair.
Parameters
tokenAddr_
address
the address of the token to validate.
Returns
<none>
bool
true if the token specified by the tokenAddr_
has been registered as a valid convertible pair, otherwise false
isTokenPairSupported
Returns true if the token pair specified have been registered as a valid convertible pair.
Parameters
erc20Token_
address
the address of the ERC20 token.
fundDepositToken_
address
the address of the FundDeposit token.
Returns
<none>
bool
true if the token pair specified have been registered as a valid convertible pair, otherwise false
isConvertTokenKeySupported
Returns true if the conversion key is supported.
Parameters
convertTokenKey_
bytes32
the conversion key as defined by getConvertTokensKey
Returns
<none>
bool
true if Returns true if the conversion key is supported, otherwise false
getConvertTokensKey
Returns the conversion key for the given token pair.
Parameters
token0_
address
the first token in the convertible pair
token1_
address
the second token in the convertible pair
Returns
<none>
bytes32
the conversion key for the given token pair throws FrictionlessERC20ConverterManagerIdenticalAddresses
if both tokens are identical throws FrictionlessERC20ConverterManagerZeroAddress
if the tokens are a zero address
Events
FrictionlessTokensConverted
Event emitted when a successful conversion occurs between an ERC20 and a FrictionlessFuncDepositToken.
Errors
FrictionlessERC20ConverterManagerInvalidTokenConvertInfo
thrown during addFrictionlessTokensConvertInfo
if the tokensConvertInfoArr_ contains zero addresses
FrictionlessERC20ConverterManagerUnableToUpdateConvertInfo
thrown during addFrictionlessTokensConvertInfo
if the tokensConvertInfoArr_ cannot be updated
FrictionlessERC20ConverterManagerUnsupportedPair
FrictionlessERC20ConverterManagerInvalidTokensAmountAfterConversion
thrown during a convert to/from an ERC20 if the conversion resolves to zero
FrictionlessERC20ConverterManagerIdenticalAddresses
thrown during a convert to/from an ERC20 if the conversion is attempted for the same token
FrictionlessERC20ConverterManagerZeroAddress
thrown if the IFrictionlessERC20ConverterManager
is configured as a zero address
Structs
FrictionlessTokensConvertInfo
Struct to represent the conversion between an ERC20 token and a FrictionlessFundDepositToken
on the Frictionless protocol