LosslessGuardian
Last updated
Last updated
This contract is a contract that maintains data needed for the protection mechanism to function properly. It allows verified protection strategy contracts to communicate with lossless controller by working as an intermediary.
Contract can be found here:
protectionAdmin
verifiedStrategies
verifiedTokens
verifiedAddresses
lossless
Every token has a protection admin. Protection admin is allowed to configure protections for the verified addresses.
This mapping defines which strategy contracts are allowed to interact with this guardian contract.
Before LERC20 token can start using any of the protections, it must first be verified by the lossless team. This variable saves verified contracts.
Before a verified LERC20 token can have a protected address, that particular address must first be verified by the lossless team. This variables saves verified addresses.
Lossless controller's address.
event TokenVerified(address indexed token, bool value)
event AddressVerified(address indexed token, address indexed verifiedAddress, bool value)
event ProtectionAdminSet(address indexed token, address indexed admin)
event StrategyVerified(address indexed strategy, bool value)
onlyLosslessAdmin
onlyVerifiedStrategy
onlyVerifiedToken
Checks if msg.sender
is admin
.
Checks if msg.sender
is a verifiedStrategy
smart contract.
Checks if msg.sender
is verifiedToken
smart contract.
isAddressVerified
verifyStrategies
verifyToken
verifyAddress
setProtectionAdmin
setProtectedAddress
removeProtectedAddresses
Returns if the addressToCheck
is verified for token
.
Parameters:
token
address
Token for which the verification is set.
addressToCheck
address
Address to check the verification for.
Sets either true or false for every address in the strategies
list. This either marks address as verified strategy or removes the verification. Can be called only by lossless admin.
Parameters:
strategies
address[]
Smart contracts that should be verified or have their verification removed.
value
bool
Value that defines if contracts in the list should be verified.
Sets either true or false for token address. This either marks token address as verified or removes the verification. Can be called only by lossless admin.
Parameters:
token
address
Token which should be verified or have it's verification removed.
value
bool
Value that defines if token should be verified or have it's verification removed.
Sets either true or false for protected address. This either marks address as verified or removes the verification. Can be called only by lossless admin. Only verified addresses are allowed to have protection rules turned on.
Parameters:
token
address
Token which should be verified.
verifiedAddress
bool
Value that defines if address should be verified or not.
Sets protection admin for the token. Can be called only by the LERC20 admin address and only for the token that is already verified.
Parameters:
token
address
Token for which the protection admin should be set.
admin
bool
New protection admin address.
Sets protection rules for a particular address. Can be done only for verified token and for verified address. Can be called only by verified strategy.
Parameters:
token
address
Token for which the protection should be applied.
guardedAddress
bool
Address for which the protection rules should be applied.
Removes protection rules for a particular address. Can be called only by the verified strategy or by protection admin of a particular token.
Parameters:
token
address
Token for which the protection removal should be applied.
protectedAddress
bool
Address for which the protection rules should be removed.