Source Code
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Cross-Chain Transactions
Loading...
Loading
Contract Name:
RedeemerV2
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
/* ———————————————————————————————————————————————————————————————————————————————— *
* _____ ______ ______ __ __ __ __ ______ __ __ *
* /\ __-. /\__ _\ /\ == \ /\ \ /\ "-.\ \ /\ \ /\__ _\ /\ \_\ \ *
* \ \ \/\ \ \/_/\ \/ \ \ __< \ \ \ \ \ \-. \ \ \ \ \/_/\ \/ \ \____ \ *
* \ \____- \ \_\ \ \_\ \_\ \ \_\ \ \_\\"\_\ \ \_\ \ \_\ \/\_____\ *
* \/____/ \/_/ \/_/ /_/ \/_/ \/_/ \/_/ \/_/ \/_/ \/_____/ *
* *
* ————————————————————————————————— dtrinity.org ————————————————————————————————— *
* *
* ▲ *
* ▲ ▲ *
* *
* ———————————————————————————————————————————————————————————————————————————————— *
* dTRINITY Protocol: https://github.com/dtrinity *
* ———————————————————————————————————————————————————————————————————————————————— */
pragma solidity ^0.8.20;
import "@openzeppelin/contracts-5/access/AccessControl.sol";
import {Math} from "@openzeppelin/contracts-5/utils/math/Math.sol";
import "@openzeppelin/contracts-5/utils/Pausable.sol";
import "@openzeppelin/contracts-5/utils/ReentrancyGuard.sol";
import "contracts/token/IERC20Stablecoin.sol";
import "contracts/shared/Constants.sol";
import "./CollateralVault.sol";
import "./OracleAware.sol";
/**
* @title RedeemerV2
* @notice Extended Redeemer with global pause and per-asset redemption pause controls
*/
contract RedeemerV2 is AccessControl, OracleAware, Pausable, ReentrancyGuard {
/* Constants */
uint256 public immutable MAX_FEE_BPS;
/* Core state */
IERC20Stablecoin public dusd;
uint8 public immutable dusdDecimals;
CollateralVault public collateralVault;
/* Fee related state */
address public feeReceiver;
uint256 public defaultRedemptionFeeBps; // Default fee in basis points
// Per-asset fee bps. Separately track whether an override is active to allow 0 bps overrides even if default > 0.
mapping(address => uint256) public collateralRedemptionFeeBps; // Fee in basis points per collateral asset
mapping(address => bool) public isCollateralFeeOverridden;
/* Events */
event AssetRedemptionPauseUpdated(address indexed asset, bool paused);
event FeeReceiverUpdated(
address indexed oldFeeReceiver,
address indexed newFeeReceiver
);
event DefaultRedemptionFeeUpdated(uint256 oldFeeBps, uint256 newFeeBps);
event CollateralRedemptionFeeUpdated(
address indexed collateralAsset,
uint256 oldFeeBps,
uint256 newFeeBps
);
event Redemption(
address indexed redeemer,
address indexed collateralAsset,
uint256 dusdAmount,
uint256 collateralAmountToRedeemer,
uint256 feeAmountCollateral
);
event CollateralVaultSet(address indexed collateralVault);
/* Roles */
bytes32 public constant REDEMPTION_MANAGER_ROLE =
keccak256("REDEMPTION_MANAGER_ROLE");
bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
/* Errors */
error DUsdTransferFailed();
error SlippageTooHigh(uint256 actualCollateral, uint256 minCollateral);
error AssetRedemptionPaused(address asset);
error FeeTooHigh(uint256 requestedFeeBps, uint256 maxFeeBps);
error CollateralTransferFailed(
address recipient,
uint256 amount,
address token
);
error CannotBeZeroAddress();
/* Overrides */
// If true, redemption with this collateral asset is paused at the redeemer level
mapping(address => bool) public assetRedemptionPaused;
/**
* @notice Initializes the RedeemerV2 contract
* @param _collateralVault The address of the collateral vault
* @param _dusd The address of the dUSD stablecoin
* @param _oracle The address of the price oracle
* @param _initialFeeReceiver The initial address to receive redemption fees
* @param _initialRedemptionFeeBps The initial redemption fee in basis points
*/
constructor(
address _collateralVault,
address _dusd,
IPriceOracleGetter _oracle,
address _initialFeeReceiver,
uint256 _initialRedemptionFeeBps
) OracleAware(_oracle, _oracle.BASE_CURRENCY_UNIT()) {
if (
_collateralVault == address(0) ||
_dusd == address(0) ||
address(_oracle) == address(0)
) {
revert CannotBeZeroAddress();
}
if (_initialFeeReceiver == address(0)) {
revert CannotBeZeroAddress();
}
MAX_FEE_BPS = 5 * Constants.ONE_PERCENT_BPS; // 5%
if (_initialRedemptionFeeBps > MAX_FEE_BPS) {
revert FeeTooHigh(_initialRedemptionFeeBps, MAX_FEE_BPS);
}
collateralVault = CollateralVault(_collateralVault);
dusd = IERC20Stablecoin(_dusd);
dusdDecimals = dusd.decimals();
// Initial fee configuration
feeReceiver = _initialFeeReceiver;
defaultRedemptionFeeBps = _initialRedemptionFeeBps;
_grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
grantRole(REDEMPTION_MANAGER_ROLE, msg.sender);
grantRole(PAUSER_ROLE, msg.sender);
emit FeeReceiverUpdated(address(0), _initialFeeReceiver);
emit DefaultRedemptionFeeUpdated(0, _initialRedemptionFeeBps);
}
/* Redeemer */
function redeem(
uint256 dusdAmount,
address collateralAsset,
uint256 minNetCollateral
) external whenNotPaused nonReentrant {
// Ensure the collateral asset is supported by the vault before any further processing
if (!collateralVault.isCollateralSupported(collateralAsset)) {
revert CollateralVault.UnsupportedCollateral(collateralAsset);
}
// Ensure the redeemer has not paused this asset for redemption
if (assetRedemptionPaused[collateralAsset]) {
revert AssetRedemptionPaused(collateralAsset);
}
// Calculate collateral amount and fee
uint256 dusdValue = dusdAmountToBaseValue(dusdAmount);
uint256 totalCollateral = collateralVault.assetAmountFromValue(
dusdValue,
collateralAsset
);
uint256 currentFeeBps = isCollateralFeeOverridden[collateralAsset]
? collateralRedemptionFeeBps[collateralAsset]
: defaultRedemptionFeeBps;
uint256 feeCollateral = 0;
if (currentFeeBps > 0) {
feeCollateral = Math.mulDiv(
totalCollateral,
currentFeeBps,
Constants.ONE_HUNDRED_PERCENT_BPS
);
}
uint256 netCollateral = totalCollateral - feeCollateral;
if (netCollateral < minNetCollateral) {
revert SlippageTooHigh(netCollateral, minNetCollateral);
}
// Burn and withdraw net amount to redeemer
_redeem(msg.sender, dusdAmount, collateralAsset, netCollateral);
// Withdraw fee to feeReceiver
if (feeCollateral > 0) {
collateralVault.withdrawTo(
feeReceiver,
feeCollateral,
collateralAsset
);
}
emit Redemption(
msg.sender,
collateralAsset,
dusdAmount,
netCollateral,
feeCollateral
);
}
function redeemAsProtocol(
uint256 dusdAmount,
address collateralAsset,
uint256 minCollateral
) external onlyRole(REDEMPTION_MANAGER_ROLE) whenNotPaused nonReentrant {
// Ensure the collateral asset is supported by the vault before any further processing
if (!collateralVault.isCollateralSupported(collateralAsset)) {
revert CollateralVault.UnsupportedCollateral(collateralAsset);
}
// Ensure the redeemer has not paused this asset for redemption
if (assetRedemptionPaused[collateralAsset]) {
revert AssetRedemptionPaused(collateralAsset);
}
// Calculate collateral amount
uint256 dusdValue = dusdAmountToBaseValue(dusdAmount);
uint256 totalCollateral = collateralVault.assetAmountFromValue(
dusdValue,
collateralAsset
);
if (totalCollateral < minCollateral) {
revert SlippageTooHigh(totalCollateral, minCollateral);
}
// Burn and withdraw full amount to redeemer
_redeem(msg.sender, dusdAmount, collateralAsset, totalCollateral);
emit Redemption(
msg.sender,
collateralAsset,
dusdAmount,
totalCollateral,
0
);
}
function _redeem(
address redeemerAddress,
uint256 dusdAmount,
address collateralAsset,
uint256 collateralAmount
) internal {
// Transfer dUSD from redeemer to this contract
if (!dusd.transferFrom(redeemerAddress, address(this), dusdAmount)) {
revert DUsdTransferFailed();
}
// Burn the dUSD
dusd.burn(dusdAmount);
// Withdraw collateral from the vault
collateralVault.withdrawTo(
redeemerAddress,
collateralAmount,
collateralAsset
);
}
function dusdAmountToBaseValue(
uint256 dusdAmount
) public view returns (uint256) {
return Math.mulDiv(dusdAmount, baseCurrencyUnit, 10 ** dusdDecimals);
}
/* Views */
function isAssetRedemptionEnabled(
address asset
) public view returns (bool) {
if (!collateralVault.isCollateralSupported(asset)) return false;
return !assetRedemptionPaused[asset];
}
/* Admin */
function setCollateralVault(
address _collateralVault
) external onlyRole(DEFAULT_ADMIN_ROLE) {
if (_collateralVault == address(0)) {
revert CannotBeZeroAddress();
}
collateralVault = CollateralVault(_collateralVault);
emit CollateralVaultSet(_collateralVault);
}
function setAssetRedemptionPause(
address asset,
bool paused
) external onlyRole(PAUSER_ROLE) {
if (!collateralVault.isCollateralSupported(asset)) {
revert CollateralVault.UnsupportedCollateral(asset);
}
assetRedemptionPaused[asset] = paused;
emit AssetRedemptionPauseUpdated(asset, paused);
}
function setFeeReceiver(
address _newFeeReceiver
) external onlyRole(DEFAULT_ADMIN_ROLE) {
if (_newFeeReceiver == address(0)) {
revert CannotBeZeroAddress();
}
address oldFeeReceiver = feeReceiver;
feeReceiver = _newFeeReceiver;
emit FeeReceiverUpdated(oldFeeReceiver, _newFeeReceiver);
}
function setDefaultRedemptionFee(
uint256 _newFeeBps
) external onlyRole(DEFAULT_ADMIN_ROLE) {
if (_newFeeBps > MAX_FEE_BPS) {
revert FeeTooHigh(_newFeeBps, MAX_FEE_BPS);
}
uint256 oldFeeBps = defaultRedemptionFeeBps;
defaultRedemptionFeeBps = _newFeeBps;
emit DefaultRedemptionFeeUpdated(oldFeeBps, _newFeeBps);
}
function setCollateralRedemptionFee(
address _collateralAsset,
uint256 _newFeeBps
) external onlyRole(DEFAULT_ADMIN_ROLE) {
if (_collateralAsset == address(0)) {
revert CannotBeZeroAddress();
}
if (_newFeeBps > MAX_FEE_BPS) {
revert FeeTooHigh(_newFeeBps, MAX_FEE_BPS);
}
uint256 oldFeeBps = collateralRedemptionFeeBps[_collateralAsset];
collateralRedemptionFeeBps[_collateralAsset] = _newFeeBps;
isCollateralFeeOverridden[_collateralAsset] = true; // enable override, allowing 0 bps explicitly
emit CollateralRedemptionFeeUpdated(
_collateralAsset,
oldFeeBps,
_newFeeBps
);
}
/**
* @notice Clears a per-asset fee override so the default fee applies again
* @param _collateralAsset The collateral asset for which to clear the override
*/
function clearCollateralRedemptionFee(
address _collateralAsset
) external onlyRole(DEFAULT_ADMIN_ROLE) {
if (_collateralAsset == address(0)) {
revert CannotBeZeroAddress();
}
uint256 oldFeeBps = collateralRedemptionFeeBps[_collateralAsset];
collateralRedemptionFeeBps[_collateralAsset] = 0;
isCollateralFeeOverridden[_collateralAsset] = false;
emit CollateralRedemptionFeeUpdated(_collateralAsset, oldFeeBps, 0);
}
function pauseRedemption() external onlyRole(PAUSER_ROLE) {
_pause();
}
function unpauseRedemption() external onlyRole(PAUSER_ROLE) {
_unpause();
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol)
pragma solidity ^0.8.20;
import {IAccessControl} from "./IAccessControl.sol";
import {Context} from "../utils/Context.sol";
import {ERC165} from "../utils/introspection/ERC165.sol";
/**
* @dev Contract module that allows children to implement role-based access
* control mechanisms. This is a lightweight version that doesn't allow enumerating role
* members except through off-chain means by accessing the contract event logs. Some
* applications may benefit from on-chain enumerability, for those cases see
* {AccessControlEnumerable}.
*
* Roles are referred to by their `bytes32` identifier. These should be exposed
* in the external API and be unique. The best way to achieve this is by
* using `public constant` hash digests:
*
* ```solidity
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
* ```
*
* Roles can be used to represent a set of permissions. To restrict access to a
* function call, use {hasRole}:
*
* ```solidity
* function foo() public {
* require(hasRole(MY_ROLE, msg.sender));
* ...
* }
* ```
*
* Roles can be granted and revoked dynamically via the {grantRole} and
* {revokeRole} functions. Each role has an associated admin role, and only
* accounts that have a role's admin role can call {grantRole} and {revokeRole}.
*
* By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
* that only accounts with this role will be able to grant or revoke other
* roles. More complex role relationships can be created by using
* {_setRoleAdmin}.
*
* WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
* grant and revoke this role. Extra precautions should be taken to secure
* accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}
* to enforce additional security measures for this role.
*/
abstract contract AccessControl is Context, IAccessControl, ERC165 {
struct RoleData {
mapping(address account => bool) hasRole;
bytes32 adminRole;
}
mapping(bytes32 role => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
/**
* @dev Modifier that checks that an account has a specific role. Reverts
* with an {AccessControlUnauthorizedAccount} error including the required role.
*/
modifier onlyRole(bytes32 role) {
_checkRole(role);
_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) public view virtual returns (bool) {
return _roles[role].hasRole[account];
}
/**
* @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`
* is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier.
*/
function _checkRole(bytes32 role) internal view virtual {
_checkRole(role, _msgSender());
}
/**
* @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`
* is missing `role`.
*/
function _checkRole(bytes32 role, address account) internal view virtual {
if (!hasRole(role, account)) {
revert AccessControlUnauthorizedAccount(account, role);
}
}
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) {
return _roles[role].adminRole;
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*
* May emit a {RoleGranted} event.
*/
function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {
_grantRole(role, account);
}
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*
* May emit a {RoleRevoked} event.
*/
function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {
_revokeRole(role, account);
}
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been revoked `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `callerConfirmation`.
*
* May emit a {RoleRevoked} event.
*/
function renounceRole(bytes32 role, address callerConfirmation) public virtual {
if (callerConfirmation != _msgSender()) {
revert AccessControlBadConfirmation();
}
_revokeRole(role, callerConfirmation);
}
/**
* @dev Sets `adminRole` as ``role``'s admin role.
*
* Emits a {RoleAdminChanged} event.
*/
function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
bytes32 previousAdminRole = getRoleAdmin(role);
_roles[role].adminRole = adminRole;
emit RoleAdminChanged(role, previousAdminRole, adminRole);
}
/**
* @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.
*
* Internal function without access restriction.
*
* May emit a {RoleGranted} event.
*/
function _grantRole(bytes32 role, address account) internal virtual returns (bool) {
if (!hasRole(role, account)) {
_roles[role].hasRole[account] = true;
emit RoleGranted(role, account, _msgSender());
return true;
} else {
return false;
}
}
/**
* @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked.
*
* Internal function without access restriction.
*
* May emit a {RoleRevoked} event.
*/
function _revokeRole(bytes32 role, address account) internal virtual returns (bool) {
if (hasRole(role, account)) {
_roles[role].hasRole[account] = false;
emit RoleRevoked(role, account, _msgSender());
return true;
} else {
return false;
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/IAccessControl.sol)
pragma solidity ^0.8.20;
/**
* @dev External interface of AccessControl declared to support ERC165 detection.
*/
interface IAccessControl {
/**
* @dev The `account` is missing a role.
*/
error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);
/**
* @dev The caller of a function is not the expected one.
*
* NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.
*/
error AccessControlBadConfirmation();
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted signaling this.
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call, an admin role
* bearer except when using {AccessControl-_setupRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Emitted when `account` is revoked `role`.
*
* `sender` is the account that originated the contract call:
* - if using `revokeRole`, it is the admin role bearer
* - if using `renounceRole`, it is the role bearer (i.e. `account`)
*/
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) external view returns (bool);
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {AccessControl-_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) external view returns (bytes32);
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been granted `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `callerConfirmation`.
*/
function renounceRole(bytes32 role, address callerConfirmation) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.20;
import {IERC20} from "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*
* ==== Security Considerations
*
* There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
* expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
* considered as an intention to spend the allowance in any specific way. The second is that because permits have
* built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
* take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
* generally recommended is:
*
* ```solidity
* function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
* try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
* doThing(..., value);
* }
*
* function doThing(..., uint256 value) public {
* token.safeTransferFrom(msg.sender, address(this), value);
* ...
* }
* ```
*
* Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
* `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
* {SafeERC20-safeTransferFrom}).
*
* Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
* contracts should have entry points that don't rely on permit.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*
* CAUTION: See Security Considerations above.
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 value) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets a `value` amount of tokens as the allowance of `spender` over the
* caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 value) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.20;
import {IERC20} from "../IERC20.sol";
import {IERC20Permit} from "../extensions/IERC20Permit.sol";
import {Address} from "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
/**
* @dev An operation with an ERC20 token failed.
*/
error SafeERC20FailedOperation(address token);
/**
* @dev Indicates a failed `decreaseAllowance` request.
*/
error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);
/**
* @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
}
/**
* @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
* calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
*/
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
}
/**
* @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful.
*/
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 oldAllowance = token.allowance(address(this), spender);
forceApprove(token, spender, oldAllowance + value);
}
/**
* @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
* value, non-reverting calls are assumed to be successful.
*/
function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
unchecked {
uint256 currentAllowance = token.allowance(address(this), spender);
if (currentAllowance < requestedDecrease) {
revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
}
forceApprove(token, spender, currentAllowance - requestedDecrease);
}
}
/**
* @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
* non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
* to be set to zero before setting it to a non-zero value, such as USDT.
*/
function forceApprove(IERC20 token, address spender, uint256 value) internal {
bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));
if (!_callOptionalReturnBool(token, approvalCall)) {
_callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
_callOptionalReturn(token, approvalCall);
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data);
if (returndata.length != 0 && !abi.decode(returndata, (bool))) {
revert SafeERC20FailedOperation(address(token));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*
* This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
*/
function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
// and not revert is the subcall reverts.
(bool success, bytes memory returndata) = address(token).call(data);
return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)
pragma solidity ^0.8.20;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev The ETH balance of the account is not enough to perform the operation.
*/
error AddressInsufficientBalance(address account);
/**
* @dev There's no code at `target` (it is not a contract).
*/
error AddressEmptyCode(address target);
/**
* @dev A call to an address target failed. The target may have reverted.
*/
error FailedInnerCall();
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
if (address(this).balance < amount) {
revert AddressInsufficientBalance(address(this));
}
(bool success, ) = recipient.call{value: amount}("");
if (!success) {
revert FailedInnerCall();
}
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason or custom error, it is bubbled
* up by this function (like regular Solidity function calls). However, if
* the call reverted with no returned reason, this function reverts with a
* {FailedInnerCall} error.
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
if (address(this).balance < value) {
revert AddressInsufficientBalance(address(this));
}
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
* was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
* unsuccessful call.
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata
) internal view returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
// only check if target is a contract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
if (returndata.length == 0 && target.code.length == 0) {
revert AddressEmptyCode(target);
}
return returndata;
}
}
/**
* @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
* revert reason or with a default {FailedInnerCall} error.
*/
function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
return returndata;
}
}
/**
* @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
*/
function _revert(bytes memory returndata) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert FailedInnerCall();
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)
pragma solidity ^0.8.20;
import {IERC165} from "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Muldiv operation overflow.
*/
error MathOverflowedMulDiv();
enum Rounding {
Floor, // Toward negative infinity
Ceil, // Toward positive infinity
Trunc, // Toward zero
Expand // Away from zero
}
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds towards infinity instead
* of rounding towards zero.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
if (b == 0) {
// Guarantee the same behavior as in a regular Solidity division.
return a / b;
}
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
* denominator == 0.
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
* Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0 = x * y; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
if (denominator <= prod1) {
revert MathOverflowedMulDiv();
}
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator.
// Always >= 1. See https://cs.stackexchange.com/q/138556/92363.
uint256 twos = denominator & (0 - denominator);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
// works in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
* towards zero.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2 of a positive value rounded towards zero.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10 of a positive value rounded towards zero.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256 of a positive value rounded towards zero.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
}
}
/**
* @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
*/
function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
return uint8(rounding) % 2 == 1;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol)
pragma solidity ^0.8.20;
import {Context} from "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
bool private _paused;
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
/**
* @dev The operation failed because the contract is paused.
*/
error EnforcedPause();
/**
* @dev The operation failed because the contract is not paused.
*/
error ExpectedPause();
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
if (paused()) {
revert EnforcedPause();
}
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
if (!paused()) {
revert ExpectedPause();
}
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol)
pragma solidity ^0.8.20;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant NOT_ENTERED = 1;
uint256 private constant ENTERED = 2;
uint256 private _status;
/**
* @dev Unauthorized reentrant call.
*/
error ReentrancyGuardReentrantCall();
constructor() {
_status = NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be NOT_ENTERED
if (_status == ENTERED) {
revert ReentrancyGuardReentrantCall();
}
// Any calls to nonReentrant after this point will fail
_status = ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = NOT_ENTERED;
}
/**
* @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
* `nonReentrant` function in the call stack.
*/
function _reentrancyGuardEntered() internal view returns (bool) {
return _status == ENTERED;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.
pragma solidity ^0.8.20;
/**
* @dev Library for managing
* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
* types.
*
* Sets have the following properties:
*
* - Elements are added, removed, and checked for existence in constant time
* (O(1)).
* - Elements are enumerated in O(n). No guarantees are made on the ordering.
*
* ```solidity
* contract Example {
* // Add the library methods
* using EnumerableSet for EnumerableSet.AddressSet;
*
* // Declare a set state variable
* EnumerableSet.AddressSet private mySet;
* }
* ```
*
* As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
* and `uint256` (`UintSet`) are supported.
*
* [WARNING]
* ====
* Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
* unusable.
* See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
*
* In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
* array of EnumerableSet.
* ====
*/
library EnumerableSet {
// To implement this library for multiple types with as little code
// repetition as possible, we write it in terms of a generic Set type with
// bytes32 values.
// The Set implementation uses private functions, and user-facing
// implementations (such as AddressSet) are just wrappers around the
// underlying Set.
// This means that we can only create new EnumerableSets for types that fit
// in bytes32.
struct Set {
// Storage of set values
bytes32[] _values;
// Position is the index of the value in the `values` array plus 1.
// Position 0 is used to mean a value is not in the set.
mapping(bytes32 value => uint256) _positions;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function _add(Set storage set, bytes32 value) private returns (bool) {
if (!_contains(set, value)) {
set._values.push(value);
// The value is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
set._positions[value] = set._values.length;
return true;
} else {
return false;
}
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function _remove(Set storage set, bytes32 value) private returns (bool) {
// We cache the value's position to prevent multiple reads from the same storage slot
uint256 position = set._positions[value];
if (position != 0) {
// Equivalent to contains(set, value)
// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
// the array, and then remove the last element (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 valueIndex = position - 1;
uint256 lastIndex = set._values.length - 1;
if (valueIndex != lastIndex) {
bytes32 lastValue = set._values[lastIndex];
// Move the lastValue to the index where the value to delete is
set._values[valueIndex] = lastValue;
// Update the tracked position of the lastValue (that was just moved)
set._positions[lastValue] = position;
}
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the tracked position for the deleted slot
delete set._positions[value];
return true;
} else {
return false;
}
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function _contains(Set storage set, bytes32 value) private view returns (bool) {
return set._positions[value] != 0;
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function _length(Set storage set) private view returns (uint256) {
return set._values.length;
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function _at(Set storage set, uint256 index) private view returns (bytes32) {
return set._values[index];
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function _values(Set storage set) private view returns (bytes32[] memory) {
return set._values;
}
// Bytes32Set
struct Bytes32Set {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _add(set._inner, value);
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _remove(set._inner, value);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
return _contains(set._inner, value);
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(Bytes32Set storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
return _at(set._inner, index);
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
bytes32[] memory store = _values(set._inner);
bytes32[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
// AddressSet
struct AddressSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(AddressSet storage set, address value) internal returns (bool) {
return _add(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(AddressSet storage set, address value) internal returns (bool) {
return _remove(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(AddressSet storage set, address value) internal view returns (bool) {
return _contains(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(AddressSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(AddressSet storage set, uint256 index) internal view returns (address) {
return address(uint160(uint256(_at(set._inner, index))));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(AddressSet storage set) internal view returns (address[] memory) {
bytes32[] memory store = _values(set._inner);
address[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
// UintSet
struct UintSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(UintSet storage set, uint256 value) internal returns (bool) {
return _add(set._inner, bytes32(value));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(UintSet storage set, uint256 value) internal returns (bool) {
return _remove(set._inner, bytes32(value));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(UintSet storage set, uint256 value) internal view returns (bool) {
return _contains(set._inner, bytes32(value));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(UintSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(UintSet storage set, uint256 index) internal view returns (uint256) {
return uint256(_at(set._inner, index));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(UintSet storage set) internal view returns (uint256[] memory) {
bytes32[] memory store = _values(set._inner);
uint256[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
}// SPDX-License-Identifier: MIT
/* ———————————————————————————————————————————————————————————————————————————————— *
* _____ ______ ______ __ __ __ __ ______ __ __ *
* /\ __-. /\__ _\ /\ == \ /\ \ /\ "-.\ \ /\ \ /\__ _\ /\ \_\ \ *
* \ \ \/\ \ \/_/\ \/ \ \ __< \ \ \ \ \ \-. \ \ \ \ \/_/\ \/ \ \____ \ *
* \ \____- \ \_\ \ \_\ \_\ \ \_\ \ \_\\"\_\ \ \_\ \ \_\ \/\_____\ *
* \/____/ \/_/ \/_/ /_/ \/_/ \/_/ \/_/ \/_/ \/_/ \/_____/ *
* *
* ————————————————————————————————— dtrinity.org ————————————————————————————————— *
* *
* ▲ *
* ▲ ▲ *
* *
* ———————————————————————————————————————————————————————————————————————————————— *
* dTRINITY Protocol: https://github.com/dtrinity *
* ———————————————————————————————————————————————————————————————————————————————— */
pragma solidity ^0.8.20;
import "@openzeppelin/contracts-5/access/AccessControl.sol";
import "@openzeppelin/contracts-5/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts-5/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts-5/utils/structs/EnumerableSet.sol";
import "contracts/shared/Constants.sol";
import "contracts/lending/core/interfaces/IPriceOracleGetter.sol";
import "contracts/dusd/OracleAware.sol";
/**
* @title CollateralVault
* @notice Abstract contract for any contract that manages collateral assets
\ */
abstract contract CollateralVault is AccessControl, OracleAware {
using SafeERC20 for IERC20Metadata;
using EnumerableSet for EnumerableSet.AddressSet;
/* Core state */
EnumerableSet.AddressSet internal _supportedCollaterals;
/* Events */
event CollateralAllowed(address indexed collateralAsset);
event CollateralDisallowed(address indexed collateralAsset);
/* Roles */
bytes32 public constant COLLATERAL_MANAGER_ROLE =
keccak256("COLLATERAL_MANAGER_ROLE");
bytes32 public constant COLLATERAL_STRATEGY_ROLE =
keccak256("COLLATERAL_STRATEGY_ROLE");
bytes32 public constant COLLATERAL_WITHDRAWER_ROLE =
keccak256("COLLATERAL_WITHDRAWER_ROLE");
/* Errors */
error UnsupportedCollateral(address collateralAsset);
error CollateralAlreadyAllowed(address collateralAsset);
error NoOracleSupport(address collateralAsset);
error FailedToAddCollateral(address collateralAsset);
error CollateralNotSupported(address collateralAsset);
error MustSupportAtLeastOneCollateral();
error FailedToRemoveCollateral(address collateralAsset);
/**
* @notice Initializes the vault with an oracle and sets up initial roles
* @dev Grants all roles to the contract deployer initially
* @param oracle The price oracle to use for collateral valuation
*/
constructor(
IPriceOracleGetter oracle
) OracleAware(oracle, Constants.ORACLE_BASE_CURRENCY_UNIT) {
_grantRole(DEFAULT_ADMIN_ROLE, msg.sender); // This is the super admin
grantRole(COLLATERAL_MANAGER_ROLE, msg.sender);
grantRole(COLLATERAL_WITHDRAWER_ROLE, msg.sender);
grantRole(COLLATERAL_STRATEGY_ROLE, msg.sender);
}
/* Deposit */
/**
* @notice Deposit collateral into the vault
* @param collateralAmount The amount of collateral to deposit
* @param collateralAsset The address of the collateral asset
*/
function deposit(uint256 collateralAmount, address collateralAsset) public {
if (!_supportedCollaterals.contains(collateralAsset)) {
revert UnsupportedCollateral(collateralAsset);
}
IERC20Metadata(collateralAsset).safeTransferFrom(
msg.sender,
address(this),
collateralAmount
);
}
/* Withdrawal */
/**
* @notice Withdraws collateral from the vault
* @param collateralAmount The amount of collateral to withdraw
* @param collateralAsset The address of the collateral asset
*/
function withdraw(
uint256 collateralAmount,
address collateralAsset
) public onlyRole(COLLATERAL_WITHDRAWER_ROLE) {
return _withdraw(msg.sender, collateralAmount, collateralAsset);
}
/**
* @notice Withdraws collateral from the vault to a specific address
* @param recipient The address receiving the collateral
* @param collateralAmount The amount of collateral to withdraw
* @param collateralAsset The address of the collateral asset
*/
function withdrawTo(
address recipient,
uint256 collateralAmount,
address collateralAsset
) public onlyRole(COLLATERAL_WITHDRAWER_ROLE) {
return _withdraw(recipient, collateralAmount, collateralAsset);
}
/**
* @notice Internal function to withdraw collateral from the vault
* @param withdrawer The address withdrawing the collateral
* @param collateralAmount The amount of collateral to withdraw
* @param collateralAsset The address of the collateral asset
*/
function _withdraw(
address withdrawer,
uint256 collateralAmount,
address collateralAsset
) internal {
IERC20Metadata(collateralAsset).safeTransfer(
withdrawer,
collateralAmount
);
}
/* Collateral Info */
/**
* @notice Calculates the total value of all assets in the vault
* @return usdValue The total value of all assets in USD
*/
function totalValue() public view virtual returns (uint256 usdValue);
/**
* @notice Calculates the USD value of a given amount of an asset
* @param assetAmount The amount of the asset
* @param asset The address of the asset
* @return usdValue The USD value of the asset
*/
function assetValueFromAmount(
uint256 assetAmount,
address asset
) public view returns (uint256 usdValue) {
uint256 assetPrice = oracle.getAssetPrice(asset);
uint8 assetDecimals = IERC20Metadata(asset).decimals();
return (assetPrice * assetAmount) / (10 ** assetDecimals);
}
/**
* @notice Calculates the amount of an asset that corresponds to a given USD value
* @param usdValue The USD value
* @param asset The address of the asset
* @return assetAmount The amount of the asset
*/
function assetAmountFromValue(
uint256 usdValue,
address asset
) public view returns (uint256 assetAmount) {
uint256 assetPrice = oracle.getAssetPrice(asset);
uint8 assetDecimals = IERC20Metadata(asset).decimals();
return (usdValue * (10 ** assetDecimals)) / assetPrice;
}
/* Collateral management */
/**
* @notice Allows a new collateral asset
* @param collateralAsset The address of the collateral asset
*/
function allowCollateral(
address collateralAsset
) public onlyRole(COLLATERAL_MANAGER_ROLE) {
if (_supportedCollaterals.contains(collateralAsset)) {
revert CollateralAlreadyAllowed(collateralAsset);
}
if (oracle.getAssetPrice(collateralAsset) == 0) {
revert NoOracleSupport(collateralAsset);
}
if (!_supportedCollaterals.add(collateralAsset)) {
revert FailedToAddCollateral(collateralAsset);
}
emit CollateralAllowed(collateralAsset);
}
/**
* @notice Disallows a previously supported collateral asset
* @dev Requires at least one collateral asset to remain supported
* @param collateralAsset The address of the collateral asset to disallow
*/
function disallowCollateral(
address collateralAsset
) public onlyRole(COLLATERAL_MANAGER_ROLE) {
if (!_supportedCollaterals.contains(collateralAsset)) {
revert CollateralNotSupported(collateralAsset);
}
if (_supportedCollaterals.length() <= 1) {
revert MustSupportAtLeastOneCollateral();
}
if (!_supportedCollaterals.remove(collateralAsset)) {
revert FailedToRemoveCollateral(collateralAsset);
}
emit CollateralDisallowed(collateralAsset);
}
/**
* @notice Checks if a given asset is supported as collateral
* @param collateralAsset The address of the collateral asset to check
* @return bool True if the asset is supported, false otherwise
*/
function isCollateralSupported(
address collateralAsset
) public view returns (bool) {
return _supportedCollaterals.contains(collateralAsset);
}
/**
* @notice Returns a list of all supported collateral assets
* @return address[] Array of collateral asset addresses
*/
function listCollateral() public view returns (address[] memory) {
return _supportedCollaterals.values();
}
/**
* @notice Calculates the total USD value of all supported collateral assets in the vault
* @dev Iterates through all supported collaterals and sums their USD values
* @return uint256 The total value in USD
*/
function _totalValueOfSupportedCollaterals()
internal
view
returns (uint256)
{
uint256 totalUsdValue = 0;
for (uint256 i = 0; i < _supportedCollaterals.length(); i++) {
address collateral = _supportedCollaterals.at(i);
uint256 collateralPrice = oracle.getAssetPrice(collateral);
uint8 collateralDecimals = IERC20Metadata(collateral).decimals();
uint256 collateralValue = (collateralPrice *
IERC20Metadata(collateral).balanceOf(address(this))) /
(10 ** collateralDecimals);
totalUsdValue += collateralValue;
}
return totalUsdValue;
}
}// SPDX-License-Identifier: MIT
/* ———————————————————————————————————————————————————————————————————————————————— *
* _____ ______ ______ __ __ __ __ ______ __ __ *
* /\ __-. /\__ _\ /\ == \ /\ \ /\ "-.\ \ /\ \ /\__ _\ /\ \_\ \ *
* \ \ \/\ \ \/_/\ \/ \ \ __< \ \ \ \ \ \-. \ \ \ \ \/_/\ \/ \ \____ \ *
* \ \____- \ \_\ \ \_\ \_\ \ \_\ \ \_\\"\_\ \ \_\ \ \_\ \/\_____\ *
* \/____/ \/_/ \/_/ /_/ \/_/ \/_/ \/_/ \/_/ \/_/ \/_____/ *
* *
* ————————————————————————————————— dtrinity.org ————————————————————————————————— *
* *
* ▲ *
* ▲ ▲ *
* *
* ———————————————————————————————————————————————————————————————————————————————— *
* dTRINITY Protocol: https://github.com/dtrinity *
* ———————————————————————————————————————————————————————————————————————————————— */
pragma solidity ^0.8.20;
import "@openzeppelin/contracts-5/access/AccessControl.sol";
import "contracts/lending/core/interfaces/IPriceOracleGetter.sol";
/**
* @title OracleAware
* @notice Abstract contract that provides oracle functionality to other contracts
*/
abstract contract OracleAware is AccessControl {
/* Core state */
IPriceOracleGetter public oracle;
uint256 public baseCurrencyUnit;
/* Events */
event OracleSet(address indexed newOracle);
/* Errors */
error IncorrectBaseCurrencyUnit(uint256 baseCurrencyUnit);
/**
* @notice Initializes the contract with an oracle and base currency unit
* @param initialOracle The initial oracle to use for price feeds
* @param _baseCurrencyUnit The base currency unit for price calculations
* @dev Sets up the initial oracle and base currency unit values
*/
constructor(IPriceOracleGetter initialOracle, uint256 _baseCurrencyUnit) {
oracle = initialOracle;
baseCurrencyUnit = _baseCurrencyUnit;
_grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
}
/**
* @notice Sets the oracle to use for collateral valuation
* @param newOracle The new oracle to use
*/
function setOracle(
IPriceOracleGetter newOracle
) public onlyRole(DEFAULT_ADMIN_ROLE) {
if (newOracle.BASE_CURRENCY_UNIT() != baseCurrencyUnit) {
revert IncorrectBaseCurrencyUnit(baseCurrencyUnit);
}
oracle = newOracle;
emit OracleSet(address(newOracle));
}
/**
* @notice Updates the base currency unit used for price calculations
* @param _newBaseCurrencyUnit The new base currency unit to set
* @dev Only used if the oracle's base currency unit changes
*/
function setBaseCurrencyUnit(
uint256 _newBaseCurrencyUnit
) public onlyRole(DEFAULT_ADMIN_ROLE) {
baseCurrencyUnit = _newBaseCurrencyUnit;
}
}// SPDX-License-Identifier: AGPL-3.0
/* ———————————————————————————————————————————————————————————————————————————————— *
* _____ ______ ______ __ __ __ __ ______ __ __ *
* /\ __-. /\__ _\ /\ == \ /\ \ /\ "-.\ \ /\ \ /\__ _\ /\ \_\ \ *
* \ \ \/\ \ \/_/\ \/ \ \ __< \ \ \ \ \ \-. \ \ \ \ \/_/\ \/ \ \____ \ *
* \ \____- \ \_\ \ \_\ \_\ \ \_\ \ \_\\"\_\ \ \_\ \ \_\ \/\_____\ *
* \/____/ \/_/ \/_/ /_/ \/_/ \/_/ \/_/ \/_/ \/_/ \/_____/ *
* *
* ————————————————————————————————— dtrinity.org ————————————————————————————————— *
* *
* ▲ *
* ▲ ▲ *
* *
* ———————————————————————————————————————————————————————————————————————————————— *
* dTRINITY Protocol: https://github.com/dtrinity *
* ———————————————————————————————————————————————————————————————————————————————— */
pragma solidity ^0.8.0;
/**
* @title IPriceOracleGetter
* @author Aave
* @notice Interface for the Aave price oracle.
*/
interface IPriceOracleGetter {
/**
* @notice Returns the base currency address
* @dev Address 0x0 is reserved for USD as base currency.
* @return Returns the base currency address.
*/
function BASE_CURRENCY() external view returns (address);
/**
* @notice Returns the base currency unit
* @dev 1 ether for ETH, 1e8 for USD.
* @return Returns the base currency unit.
*/
function BASE_CURRENCY_UNIT() external view returns (uint256);
/**
* @notice Returns the asset price in the base currency
* @param asset The address of the asset
* @return The price of the asset
*/
function getAssetPrice(address asset) external view returns (uint256);
}// SPDX-License-Identifier: MIT
/* ———————————————————————————————————————————————————————————————————————————————— *
* _____ ______ ______ __ __ __ __ ______ __ __ *
* /\ __-. /\__ _\ /\ == \ /\ \ /\ "-.\ \ /\ \ /\__ _\ /\ \_\ \ *
* \ \ \/\ \ \/_/\ \/ \ \ __< \ \ \ \ \ \-. \ \ \ \ \/_/\ \/ \ \____ \ *
* \ \____- \ \_\ \ \_\ \_\ \ \_\ \ \_\\"\_\ \ \_\ \ \_\ \/\_____\ *
* \/____/ \/_/ \/_/ /_/ \/_/ \/_/ \/_/ \/_/ \/_/ \/_____/ *
* *
* ————————————————————————————————— dtrinity.org ————————————————————————————————— *
* *
* ▲ *
* ▲ ▲ *
* *
* ———————————————————————————————————————————————————————————————————————————————— *
* dTRINITY Protocol: https://github.com/dtrinity *
* ———————————————————————————————————————————————————————————————————————————————— */
pragma solidity ^0.8.0;
library Constants {
// Shared definitions of how we represent percentages and basis points
uint16 public constant ONE_BPS = 100; // 1 basis point with 2 decimals
uint32 public constant ONE_PERCENT_BPS = ONE_BPS * 100;
uint32 public constant ONE_HUNDRED_PERCENT_BPS = ONE_PERCENT_BPS * 100;
uint32 public constant ORACLE_BASE_CURRENCY_UNIT = 1e8;
}// SPDX-License-Identifier: Unlicense
/* ———————————————————————————————————————————————————————————————————————————————— *
* _____ ______ ______ __ __ __ __ ______ __ __ *
* /\ __-. /\__ _\ /\ == \ /\ \ /\ "-.\ \ /\ \ /\__ _\ /\ \_\ \ *
* \ \ \/\ \ \/_/\ \/ \ \ __< \ \ \ \ \ \-. \ \ \ \ \/_/\ \/ \ \____ \ *
* \ \____- \ \_\ \ \_\ \_\ \ \_\ \ \_\\"\_\ \ \_\ \ \_\ \/\_____\ *
* \/____/ \/_/ \/_/ /_/ \/_/ \/_/ \/_/ \/_/ \/_/ \/_____/ *
* *
* ————————————————————————————————— dtrinity.org ————————————————————————————————— *
* *
* ▲ *
* ▲ ▲ *
* *
* ———————————————————————————————————————————————————————————————————————————————— *
* dTRINITY Protocol: https://github.com/dtrinity *
* ———————————————————————————————————————————————————————————————————————————————— */
pragma solidity ^0.8.20;
import "@openzeppelin/contracts-5/token/ERC20/IERC20.sol";
interface IERC20Stablecoin is IERC20 {
function mint(address to, uint256 amount) external;
function burn(uint256 amount) external;
function burnFrom(address account, uint256 amount) external;
function decimals() external view returns (uint8);
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"viaIR": true,
"evmVersion": "paris",
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"metadata": {
"useLiteralContent": true
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_collateralVault","type":"address"},{"internalType":"address","name":"_dusd","type":"address"},{"internalType":"contract IPriceOracleGetter","name":"_oracle","type":"address"},{"internalType":"address","name":"_initialFeeReceiver","type":"address"},{"internalType":"uint256","name":"_initialRedemptionFeeBps","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"asset","type":"address"}],"name":"AssetRedemptionPaused","type":"error"},{"inputs":[],"name":"CannotBeZeroAddress","type":"error"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"token","type":"address"}],"name":"CollateralTransferFailed","type":"error"},{"inputs":[],"name":"DUsdTransferFailed","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[{"internalType":"uint256","name":"requestedFeeBps","type":"uint256"},{"internalType":"uint256","name":"maxFeeBps","type":"uint256"}],"name":"FeeTooHigh","type":"error"},{"inputs":[{"internalType":"uint256","name":"baseCurrencyUnit","type":"uint256"}],"name":"IncorrectBaseCurrencyUnit","type":"error"},{"inputs":[],"name":"MathOverflowedMulDiv","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"actualCollateral","type":"uint256"},{"internalType":"uint256","name":"minCollateral","type":"uint256"}],"name":"SlippageTooHigh","type":"error"},{"inputs":[{"internalType":"address","name":"collateralAsset","type":"address"}],"name":"UnsupportedCollateral","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"bool","name":"paused","type":"bool"}],"name":"AssetRedemptionPauseUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"collateralAsset","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldFeeBps","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newFeeBps","type":"uint256"}],"name":"CollateralRedemptionFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"collateralVault","type":"address"}],"name":"CollateralVaultSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldFeeBps","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newFeeBps","type":"uint256"}],"name":"DefaultRedemptionFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldFeeReceiver","type":"address"},{"indexed":true,"internalType":"address","name":"newFeeReceiver","type":"address"}],"name":"FeeReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newOracle","type":"address"}],"name":"OracleSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"redeemer","type":"address"},{"indexed":true,"internalType":"address","name":"collateralAsset","type":"address"},{"indexed":false,"internalType":"uint256","name":"dusdAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"collateralAmountToRedeemer","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feeAmountCollateral","type":"uint256"}],"name":"Redemption","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEE_BPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REDEMPTION_MANAGER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"assetRedemptionPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseCurrencyUnit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_collateralAsset","type":"address"}],"name":"clearCollateralRedemptionFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"collateralRedemptionFeeBps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collateralVault","outputs":[{"internalType":"contract CollateralVault","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultRedemptionFeeBps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dusd","outputs":[{"internalType":"contract IERC20Stablecoin","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"dusdAmount","type":"uint256"}],"name":"dusdAmountToBaseValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dusdDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"asset","type":"address"}],"name":"isAssetRedemptionEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isCollateralFeeOverridden","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oracle","outputs":[{"internalType":"contract IPriceOracleGetter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseRedemption","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"dusdAmount","type":"uint256"},{"internalType":"address","name":"collateralAsset","type":"address"},{"internalType":"uint256","name":"minNetCollateral","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"dusdAmount","type":"uint256"},{"internalType":"address","name":"collateralAsset","type":"address"},{"internalType":"uint256","name":"minCollateral","type":"uint256"}],"name":"redeemAsProtocol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"asset","type":"address"},{"internalType":"bool","name":"paused","type":"bool"}],"name":"setAssetRedemptionPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newBaseCurrencyUnit","type":"uint256"}],"name":"setBaseCurrencyUnit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_collateralAsset","type":"address"},{"internalType":"uint256","name":"_newFeeBps","type":"uint256"}],"name":"setCollateralRedemptionFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_collateralVault","type":"address"}],"name":"setCollateralVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFeeBps","type":"uint256"}],"name":"setDefaultRedemptionFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newFeeReceiver","type":"address"}],"name":"setFeeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IPriceOracleGetter","name":"newOracle","type":"address"}],"name":"setOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpauseRedemption","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60c060409080825234620003625760a08162001d2280380380916200002582856200037a565b83398101031262000362576200003b81620003b4565b60206200004a818401620003b4565b838501516001600160a01b038082169592949291869003620003625760806200007660608401620003b4565b92015194875192638c89b64f60e01b8452600494868587818c5afa9485156200036f5760009562000335575b50839060018060a01b0319958a876001541617600155600255620000c633620003c9565b5060ff1960035416600355600187551697881590811562000329575b81156200031f575b506200030f5782169687156200030f5761c35080608052808811620002f35750918591849386956006541617600655168083600554161760055588519384809263313ce56760e01b82525afa8015620002e85786926000916200029c575b5060a0526007541617600755826008556200016333620003c9565b5060008051602062001d02833981519152600052600082526001856000200154806000528560002033600052835260ff866000205416156200027f5750620001ab3362000449565b5060008051602062001ce2833981519152600052600082526001856000200154806000528560002033600052835260ff866000205416156200027f57857f261a1976409379837155987d2c6a5667d9473be9504ab5387b4dc8ff65da6eb2818787876200021833620004da565b5083519260007fa92ff4390fe6943f0b30e8fe715dde86f85ab79b2b2c640a10fc094cc4036cc88180a360008352820152a15161175b90816200056782396080518181816102b9015281816106dd01526109ba015260a051818181610bff015261115d0152f35b6044925085519163e2517d3f60e01b835233908301526024820152fd5b909192508481813d8311620002e0575b620002b881836200037a565b81010312620002dc57519060ff82168203620002d957509085913862000148565b80fd5b5080fd5b503d620002ac565b87513d6000823e3d90fd5b85604491898c51926373ab893560e11b84528301526024820152fd5b8851631e7d738760e21b81528590fd5b90501538620000ea565b838516159150620000e2565b9094508681813d831162000367575b6200035081836200037a565b810103126200036257519383620000a2565b600080fd5b503d62000344565b8a513d6000823e3d90fd5b601f909101601f19168101906001600160401b038211908210176200039e57604052565b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b03821682036200036257565b6001600160a01b031660008181527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604081205490919060ff166200044557818052816020526040822081835260205260408220600160ff19825416179055339160008051602062001cc28339815191528180a4600190565b5090565b6001600160a01b031660008181527f44fc73d2262b57a66d75404c7d11906326ef0260bbf18c0d8a6b3309e74a0523602052604081205490919060008051602062001d028339815191529060ff16620004d557808352826020526040832082845260205260408320600160ff1982541617905560008051602062001cc2833981519152339380a4600190565b505090565b6001600160a01b031660008181527ff7c9542c591017a21c74b6f3fab6263c7952fc0aaf9db4c22a2a04ddc7f8674f602052604081205490919060008051602062001ce28339815191529060ff16620004d557808352826020526040832082845260205260408320600160ff1982541617905560008051602062001cc2833981519152339380a460019056fe608060408181526004918236101561001657600080fd5b600092833560e01c91826301ffc9a7146110a7575081630bece79c1461107e5781631489f10b1461105457816314aa112214610e2e5781631cd7ec9214610e0f5781631d9f78bb14610dd75781631ee7b5b114610cdf578163248a9ca314610cb55781632f2ff15d14610c8b57816336568abe14610c455781634a0bbabb14610c2357816352816b6814610be55781635c975abb14610bc157816368a806c414610b535781637adbf97314610a5e5781637dc0d1d014610a3557816387c0d8e81461099b5781638ade91ec146109605781638d044c06146108f657816391d14854146108b057816392bccb80146108555781639e3a4a8d146107c1578163a217fddf146107a6578163b3f006741461077d578163bfc1a7ad1461073f578163d547741f14610700578163d55be8c6146106c5578163d878016114610400578163dadf4890146103c2578163de1409ce14610399578163e63ab1e91461035e578163ef8fa40f14610280578163efdcd974146101f557508063f0bf7603146101c75763f3bddde1146101a657600080fd5b346101c357816003193601126101c3576020906002549051908152f35b5080fd5b50346101c35760203660031901126101c3576020906101ec6101e76110fa565b611210565b90519015158152f35b90503461027c57602036600319011261027c576102106110fa565b9061021961142e565b6001600160a01b0391821692831561026f575050600754826bffffffffffffffffffffffff60a01b821617600755167fa92ff4390fe6943f0b30e8fe715dde86f85ab79b2b2c640a10fc094cc4036cc88380a380f35b51631e7d738760e21b8152fd5b8280fd5b9190503461027c578060031936011261027c5761029b6110fa565b602435906102a761142e565b6001600160a01b0316928315610350577f0000000000000000000000000000000000000000000000000000000000000000808311610336575050907ff57528c54dc2b58b410fa6141e1c2923da55bf8a7193244e8d60ad07c5e5db7e918385526009602052818520908082549255600a602052828620600160ff1982541617905582519182526020820152a280f35b6044928451926373ab893560e11b84528301526024820152fd5b8251631e7d738760e21b8152fd5b5050346101c357816003193601126101c357602090517f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a8152f35b5050346101c357816003193601126101c35760055490516001600160a01b039091168152602090f35b5050346101c35760203660031901126101c35760209160ff9082906001600160a01b036103ed6110fa565b168152600a855220541690519015158152f35b839150346101c3576104113661112b565b61041c92919261148e565b6104246114ac565b6006548651637d35e97760e11b81526001600160a01b03858116878301819052602099909690939092908216908a81602481855afa9081156106bb578a9161068e575b501561067757868952600b8a5260ff848a205416610660579089836104c0949361049089611155565b8751632e11f7b760e11b8152808d019182526001600160a01b039093166020820152919586928391829160400190565b03915afa928315610656578993610623575b50868952600a8a528389205460ff161561061a5760098a5283892054945b899580610607575b508584039384116105f4578084106105d85750610517838388336114cf565b84610558575b50506001969782519485528401528201527f4f808f68134f8b72b842a276c2b37b03415d4992c65a94fcee50d33201915b9960603392a35580f35b80600654169060075416813b156105d457845163627160f360e11b81526001600160a01b03918216818b01908152602081018890529190931660408201528991839182908490829060600103925af180156105ca576105b8575b8061051d565b966105c46001986111ac565b966105b2565b83513d8a823e3d90fd5b8980fd5b8860449185875192633b5d56ed60e11b84528301526024820152fd5b634e487b7160e01b8a526011895260248afd5b6106139196508461129d565b948b6104f8565b600854946104f0565b9092508981813d831161064f575b61063b81836111d6565b8101031261064b5751918a6104d2565b8880fd5b503d610631565b84513d8b823e3d90fd5b8351632572cfc960e01b8152808901889052602490fd5b8351632762993f60e11b8152808901889052602490fd5b6106ae91508b3d8d116106b4575b6106a681836111d6565b8101906111f8565b8b610467565b503d61069c565b85513d8c823e3d90fd5b5050346101c357816003193601126101c357602090517f00000000000000000000000000000000000000000000000000000000000000008152f35b9190503461027c578060031936011261027c5761073b91356107366001610725611115565b938387528660205286200154611468565b6116b0565b5080f35b5050346101c35760203660031901126101c35760209160ff9082906001600160a01b0361076a6110fa565b168152600b855220541690519015158152f35b5050346101c357816003193601126101c35760075490516001600160a01b039091168152602090f35b5050346101c357816003193601126101c35751908152602090f35b9190503461027c57602036600319011261027c576107dd6110fa565b6107e561142e565b6001600160a01b031691821561084757507ff57528c54dc2b58b410fa6141e1c2923da55bf8a7193244e8d60ad07c5e5db7e9082845260096020528084208481549155600a60205281852060ff1981541690558151908152846020820152a280f35b9051631e7d738760e21b8152fd5b5050346101c357816003193601126101c35760207f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258916108936113b4565b61089b61148e565b600160ff19600354161760035551338152a180f35b90503461027c578160031936011261027c578160209360ff926108d1611115565b903582528186528282206001600160a01b039091168252855220549151911615158152f35b90503461027c578260031936011261027c576109106113b4565b6003549060ff821615610952575060ff1916600355513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa90602090a180f35b8251638dfc202b60e01b8152fd5b5050346101c357816003193601126101c357602090517fe5bea7d829f723a95a0c83a655765be37702fa584514c1e2a20867d04b58478e8152f35b8383346101c35760203660031901126101c35782356109b861142e565b7f0000000000000000000000000000000000000000000000000000000000000000808211610a1a5750907f261a1976409379837155987d2c6a5667d9473be9504ab5387b4dc8ff65da6eb291600854908060085582519182526020820152a180f35b849160449351926373ab893560e11b84528301526024820152fd5b5050346101c357816003193601126101c35760015490516001600160a01b039091168152602090f35b90503461027c57602036600319011261027c5780356001600160a01b0381169290839003610b4f57610a8e61142e565b8051638c89b64f60e01b8152906020828481875afa918215610b45578592610b0d575b50600254809203610af8575050600180546001600160a01b03191683179055507f3f32684a32a11dabdbb8c0177de80aa3ae36a004d75210335b49e544e48cd0aa8280a280f35b51639b6812b960e01b81529182015260249150fd5b9091506020813d602011610b3d575b81610b29602093836111d6565b81010312610b3957519038610ab1565b8480fd5b3d9150610b1c565b81513d87823e3d90fd5b8380fd5b90503461027c57602036600319011261027c57610b6e6110fa565b610b7661142e565b6001600160a01b031691821561026f575050600680546001600160a01b031916821790557fc92ec24b34ad9d3aa14cd5be87b888d7790d40903da5f44c6367b2fb6cdb20838280a280f35b5050346101c357816003193601126101c35760209060ff6003541690519015158152f35b5050346101c357816003193601126101c3576020905160ff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b8390346101c35760203660031901126101c357610c3e61142e565b3560025580f35b8383346101c357806003193601126101c357610c5f611115565b90336001600160a01b03831603610c7c575061073b9192356116b0565b5163334bd91960e11b81528390fd5b9190503461027c578060031936011261027c5761073b9135610cb06001610725611115565b611632565b90503461027c57602036600319011261027c57816020936001923581528085522001549051908152f35b90503461027c578160031936011261027c57610cf96110fa565b9160243591821515809303610b3957610d106113b4565b6006548251637d35e97760e11b81526001600160a01b0395861683820181905295909160209183916024918391165afa908115610dcd578691610dae575b5015610d9957507f01d774681571daccc62c7ccbd83c73634d22d9ee3ddd1df3fe988d5e3153b44591602091848652600b835280862060ff1981541660ff841617905551908152a280f35b836024925191632762993f60e11b8352820152fd5b610dc7915060203d6020116106b4576106a681836111d6565b38610d4e565b83513d88823e3d90fd5b5050346101c35760203660031901126101c35760209181906001600160a01b03610dff6110fa565b1681526009845220549051908152f35b5050346101c357816003193601126101c3576020906008549051908152f35b839150346101c357610e3f3661112b565b91907fe5bea7d829f723a95a0c83a655765be37702fa584514c1e2a20867d04b58478e90818652602091868352878720338852835260ff8888205416156110365750610e8961148e565b610e916114ac565b6006548751637d35e97760e11b81526001600160a01b03838116888301819052969216908481602481855afa90811561102c57899161100f575b5015610ff857858852600b845260ff8989205416610fe157908383610f25959493610ef588611155565b8c51632e11f7b760e11b8152808c019182526001600160a01b039093166020820152919687928391829160400190565b03915afa938415610fd7578894610fa4575b50808410610f88575091869791610f53826001999587336114cf565b82519485528401528201527f4f808f68134f8b72b842a276c2b37b03415d4992c65a94fcee50d33201915b9960603392a35580f35b86604491858b5192633b5d56ed60e11b84528301526024820152fd5b9093508281813d8311610fd0575b610fbc81836111d6565b81010312610fcc57519289610f37565b8780fd5b503d610fb2565b89513d8a823e3d90fd5b8851632572cfc960e01b8152808801879052602490fd5b8851632762993f60e11b8152808801879052602490fd5b6110269150853d87116106b4576106a681836111d6565b8a610ecb565b8a513d8b823e3d90fd5b875163e2517d3f60e01b815233818801526024810191909152604490fd5b82843461107b57602036600319011261107b575061107460209235611155565b9051908152f35b80fd5b5050346101c357816003193601126101c35760065490516001600160a01b039091168152602090f35b84913461027c57602036600319011261027c573563ffffffff60e01b811680910361027c5760209250637965db0b60e01b81149081156110e9575b5015158152f35b6301ffc9a760e01b149050836110e2565b600435906001600160a01b038216820361111057565b600080fd5b602435906001600160a01b038216820361111057565b606090600319011261111057600435906024356001600160a01b0381168103611110579060443590565b6002549060ff7f00000000000000000000000000000000000000000000000000000000000000001691604d83116111965761119392600a0a9161131a565b90565b634e487b7160e01b600052601160045260246000fd5b67ffffffffffffffff81116111c057604052565b634e487b7160e01b600052604160045260246000fd5b90601f8019910116810190811067ffffffffffffffff8211176111c057604052565b90816020910312611110575180151581036111105790565b600654604051637d35e97760e11b81526001600160a01b039283166004820181905292909160209183916024918391165afa90811561129157600091611272575b501561126c57600052600b60205260ff604060002054161590565b50600090565b61128b915060203d6020116106b4576106a681836111d6565b38611251565b6040513d6000823e3d90fd5b90808202906000198184099082808310920391808303921461130e57620f424090828211156112fc577fde8f6cefed634549b62c77574f722e1ac57e23f24d8fd5cb790fb65668c26139940990828211900360fa1b910360061c170290565b60405163227bc15360e01b8152600490fd5b5050620f424091500490565b9091828202916000198482099383808610950394808603951461139057848311156112fc5782910981600003821680920460028082600302188083028203028083028203028083028203028083028203028083028203028092029003029360018380600003040190848311900302920304170290565b50508092501561139e570490565b634e487b7160e01b600052601260045260246000fd5b3360009081527ff7c9542c591017a21c74b6f3fab6263c7952fc0aaf9db4c22a2a04ddc7f8674f60205260409020547f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a9060ff16156114105750565b6044906040519063e2517d3f60e01b82523360048301526024820152fd5b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604081205460ff16156114105750565b80600052600060205260406000203360005260205260ff60406000205416156114105750565b60ff6003541661149a57565b60405163d93c066560e01b8152600490fd5b6002600454146114bd576002600455565b604051633ee5aeb560e01b8152600490fd5b600554604080516323b872dd60e01b81526001600160a01b03808516600483015230602483015260448201869052600097929695929390929190602090829060649082908c9088165af1908115611628578891611609575b50156115f857816005541690813b15610fcc5787916024839289519485938492630852cd8d60e31b845260048401525af180156115ee576115db575b506006541691823b156115d757845163627160f360e11b81526001600160a01b039182166004820152602481019290925292909216604483015290919083908390606490829084905af19081156115ce57506115bd575050565b6115c782916111ac565b61107b5750565b513d84823e3d90fd5b8580fd5b6115e7909691966111ac565b9438611563565b86513d89823e3d90fd5b8551639e44786b60e01b8152600490fd5b611622915060203d6020116106b4576106a681836111d6565b38611527565b87513d8a823e3d90fd5b9060009180835282602052604083209160018060a01b03169182845260205260ff604084205416156000146116ab57808352826020526040832082845260205260408320600160ff198254161790557f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d339380a4600190565b505090565b9060009180835282602052604083209160018060a01b03169182845260205260ff6040842054166000146116ab5780835282602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b339380a460019056fea26469706673582212208bf675a574ea67713c248896cde6935aa61a4ab4c6e9f167b0e50e8a4f75642e64736f6c634300081800332f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862ae5bea7d829f723a95a0c83a655765be37702fa584514c1e2a20867d04b58478e000000000000000000000000624e12de7a97b8cfc1ad1f050a1c9263b1f4febc000000000000000000000000788d96f655735f52c676a133f4dfc53cec614d4a000000000000000000000000fa7560956807d95dcef22990ddd92e38dbaf5cdd000000000000000000000000fc2f89f9982be98a9672cefc3ea6dbbdd88bc8e90000000000000000000000000000000000000000000000000000000000000fa0
Deployed Bytecode
0x608060408181526004918236101561001657600080fd5b600092833560e01c91826301ffc9a7146110a7575081630bece79c1461107e5781631489f10b1461105457816314aa112214610e2e5781631cd7ec9214610e0f5781631d9f78bb14610dd75781631ee7b5b114610cdf578163248a9ca314610cb55781632f2ff15d14610c8b57816336568abe14610c455781634a0bbabb14610c2357816352816b6814610be55781635c975abb14610bc157816368a806c414610b535781637adbf97314610a5e5781637dc0d1d014610a3557816387c0d8e81461099b5781638ade91ec146109605781638d044c06146108f657816391d14854146108b057816392bccb80146108555781639e3a4a8d146107c1578163a217fddf146107a6578163b3f006741461077d578163bfc1a7ad1461073f578163d547741f14610700578163d55be8c6146106c5578163d878016114610400578163dadf4890146103c2578163de1409ce14610399578163e63ab1e91461035e578163ef8fa40f14610280578163efdcd974146101f557508063f0bf7603146101c75763f3bddde1146101a657600080fd5b346101c357816003193601126101c3576020906002549051908152f35b5080fd5b50346101c35760203660031901126101c3576020906101ec6101e76110fa565b611210565b90519015158152f35b90503461027c57602036600319011261027c576102106110fa565b9061021961142e565b6001600160a01b0391821692831561026f575050600754826bffffffffffffffffffffffff60a01b821617600755167fa92ff4390fe6943f0b30e8fe715dde86f85ab79b2b2c640a10fc094cc4036cc88380a380f35b51631e7d738760e21b8152fd5b8280fd5b9190503461027c578060031936011261027c5761029b6110fa565b602435906102a761142e565b6001600160a01b0316928315610350577f000000000000000000000000000000000000000000000000000000000000c350808311610336575050907ff57528c54dc2b58b410fa6141e1c2923da55bf8a7193244e8d60ad07c5e5db7e918385526009602052818520908082549255600a602052828620600160ff1982541617905582519182526020820152a280f35b6044928451926373ab893560e11b84528301526024820152fd5b8251631e7d738760e21b8152fd5b5050346101c357816003193601126101c357602090517f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a8152f35b5050346101c357816003193601126101c35760055490516001600160a01b039091168152602090f35b5050346101c35760203660031901126101c35760209160ff9082906001600160a01b036103ed6110fa565b168152600a855220541690519015158152f35b839150346101c3576104113661112b565b61041c92919261148e565b6104246114ac565b6006548651637d35e97760e11b81526001600160a01b03858116878301819052602099909690939092908216908a81602481855afa9081156106bb578a9161068e575b501561067757868952600b8a5260ff848a205416610660579089836104c0949361049089611155565b8751632e11f7b760e11b8152808d019182526001600160a01b039093166020820152919586928391829160400190565b03915afa928315610656578993610623575b50868952600a8a528389205460ff161561061a5760098a5283892054945b899580610607575b508584039384116105f4578084106105d85750610517838388336114cf565b84610558575b50506001969782519485528401528201527f4f808f68134f8b72b842a276c2b37b03415d4992c65a94fcee50d33201915b9960603392a35580f35b80600654169060075416813b156105d457845163627160f360e11b81526001600160a01b03918216818b01908152602081018890529190931660408201528991839182908490829060600103925af180156105ca576105b8575b8061051d565b966105c46001986111ac565b966105b2565b83513d8a823e3d90fd5b8980fd5b8860449185875192633b5d56ed60e11b84528301526024820152fd5b634e487b7160e01b8a526011895260248afd5b6106139196508461129d565b948b6104f8565b600854946104f0565b9092508981813d831161064f575b61063b81836111d6565b8101031261064b5751918a6104d2565b8880fd5b503d610631565b84513d8b823e3d90fd5b8351632572cfc960e01b8152808901889052602490fd5b8351632762993f60e11b8152808901889052602490fd5b6106ae91508b3d8d116106b4575b6106a681836111d6565b8101906111f8565b8b610467565b503d61069c565b85513d8c823e3d90fd5b5050346101c357816003193601126101c357602090517f000000000000000000000000000000000000000000000000000000000000c3508152f35b9190503461027c578060031936011261027c5761073b91356107366001610725611115565b938387528660205286200154611468565b6116b0565b5080f35b5050346101c35760203660031901126101c35760209160ff9082906001600160a01b0361076a6110fa565b168152600b855220541690519015158152f35b5050346101c357816003193601126101c35760075490516001600160a01b039091168152602090f35b5050346101c357816003193601126101c35751908152602090f35b9190503461027c57602036600319011261027c576107dd6110fa565b6107e561142e565b6001600160a01b031691821561084757507ff57528c54dc2b58b410fa6141e1c2923da55bf8a7193244e8d60ad07c5e5db7e9082845260096020528084208481549155600a60205281852060ff1981541690558151908152846020820152a280f35b9051631e7d738760e21b8152fd5b5050346101c357816003193601126101c35760207f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258916108936113b4565b61089b61148e565b600160ff19600354161760035551338152a180f35b90503461027c578160031936011261027c578160209360ff926108d1611115565b903582528186528282206001600160a01b039091168252855220549151911615158152f35b90503461027c578260031936011261027c576109106113b4565b6003549060ff821615610952575060ff1916600355513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa90602090a180f35b8251638dfc202b60e01b8152fd5b5050346101c357816003193601126101c357602090517fe5bea7d829f723a95a0c83a655765be37702fa584514c1e2a20867d04b58478e8152f35b8383346101c35760203660031901126101c35782356109b861142e565b7f000000000000000000000000000000000000000000000000000000000000c350808211610a1a5750907f261a1976409379837155987d2c6a5667d9473be9504ab5387b4dc8ff65da6eb291600854908060085582519182526020820152a180f35b849160449351926373ab893560e11b84528301526024820152fd5b5050346101c357816003193601126101c35760015490516001600160a01b039091168152602090f35b90503461027c57602036600319011261027c5780356001600160a01b0381169290839003610b4f57610a8e61142e565b8051638c89b64f60e01b8152906020828481875afa918215610b45578592610b0d575b50600254809203610af8575050600180546001600160a01b03191683179055507f3f32684a32a11dabdbb8c0177de80aa3ae36a004d75210335b49e544e48cd0aa8280a280f35b51639b6812b960e01b81529182015260249150fd5b9091506020813d602011610b3d575b81610b29602093836111d6565b81010312610b3957519038610ab1565b8480fd5b3d9150610b1c565b81513d87823e3d90fd5b8380fd5b90503461027c57602036600319011261027c57610b6e6110fa565b610b7661142e565b6001600160a01b031691821561026f575050600680546001600160a01b031916821790557fc92ec24b34ad9d3aa14cd5be87b888d7790d40903da5f44c6367b2fb6cdb20838280a280f35b5050346101c357816003193601126101c35760209060ff6003541690519015158152f35b5050346101c357816003193601126101c3576020905160ff7f0000000000000000000000000000000000000000000000000000000000000006168152f35b8390346101c35760203660031901126101c357610c3e61142e565b3560025580f35b8383346101c357806003193601126101c357610c5f611115565b90336001600160a01b03831603610c7c575061073b9192356116b0565b5163334bd91960e11b81528390fd5b9190503461027c578060031936011261027c5761073b9135610cb06001610725611115565b611632565b90503461027c57602036600319011261027c57816020936001923581528085522001549051908152f35b90503461027c578160031936011261027c57610cf96110fa565b9160243591821515809303610b3957610d106113b4565b6006548251637d35e97760e11b81526001600160a01b0395861683820181905295909160209183916024918391165afa908115610dcd578691610dae575b5015610d9957507f01d774681571daccc62c7ccbd83c73634d22d9ee3ddd1df3fe988d5e3153b44591602091848652600b835280862060ff1981541660ff841617905551908152a280f35b836024925191632762993f60e11b8352820152fd5b610dc7915060203d6020116106b4576106a681836111d6565b38610d4e565b83513d88823e3d90fd5b5050346101c35760203660031901126101c35760209181906001600160a01b03610dff6110fa565b1681526009845220549051908152f35b5050346101c357816003193601126101c3576020906008549051908152f35b839150346101c357610e3f3661112b565b91907fe5bea7d829f723a95a0c83a655765be37702fa584514c1e2a20867d04b58478e90818652602091868352878720338852835260ff8888205416156110365750610e8961148e565b610e916114ac565b6006548751637d35e97760e11b81526001600160a01b03838116888301819052969216908481602481855afa90811561102c57899161100f575b5015610ff857858852600b845260ff8989205416610fe157908383610f25959493610ef588611155565b8c51632e11f7b760e11b8152808c019182526001600160a01b039093166020820152919687928391829160400190565b03915afa938415610fd7578894610fa4575b50808410610f88575091869791610f53826001999587336114cf565b82519485528401528201527f4f808f68134f8b72b842a276c2b37b03415d4992c65a94fcee50d33201915b9960603392a35580f35b86604491858b5192633b5d56ed60e11b84528301526024820152fd5b9093508281813d8311610fd0575b610fbc81836111d6565b81010312610fcc57519289610f37565b8780fd5b503d610fb2565b89513d8a823e3d90fd5b8851632572cfc960e01b8152808801879052602490fd5b8851632762993f60e11b8152808801879052602490fd5b6110269150853d87116106b4576106a681836111d6565b8a610ecb565b8a513d8b823e3d90fd5b875163e2517d3f60e01b815233818801526024810191909152604490fd5b82843461107b57602036600319011261107b575061107460209235611155565b9051908152f35b80fd5b5050346101c357816003193601126101c35760065490516001600160a01b039091168152602090f35b84913461027c57602036600319011261027c573563ffffffff60e01b811680910361027c5760209250637965db0b60e01b81149081156110e9575b5015158152f35b6301ffc9a760e01b149050836110e2565b600435906001600160a01b038216820361111057565b600080fd5b602435906001600160a01b038216820361111057565b606090600319011261111057600435906024356001600160a01b0381168103611110579060443590565b6002549060ff7f00000000000000000000000000000000000000000000000000000000000000061691604d83116111965761119392600a0a9161131a565b90565b634e487b7160e01b600052601160045260246000fd5b67ffffffffffffffff81116111c057604052565b634e487b7160e01b600052604160045260246000fd5b90601f8019910116810190811067ffffffffffffffff8211176111c057604052565b90816020910312611110575180151581036111105790565b600654604051637d35e97760e11b81526001600160a01b039283166004820181905292909160209183916024918391165afa90811561129157600091611272575b501561126c57600052600b60205260ff604060002054161590565b50600090565b61128b915060203d6020116106b4576106a681836111d6565b38611251565b6040513d6000823e3d90fd5b90808202906000198184099082808310920391808303921461130e57620f424090828211156112fc577fde8f6cefed634549b62c77574f722e1ac57e23f24d8fd5cb790fb65668c26139940990828211900360fa1b910360061c170290565b60405163227bc15360e01b8152600490fd5b5050620f424091500490565b9091828202916000198482099383808610950394808603951461139057848311156112fc5782910981600003821680920460028082600302188083028203028083028203028083028203028083028203028083028203028092029003029360018380600003040190848311900302920304170290565b50508092501561139e570490565b634e487b7160e01b600052601260045260246000fd5b3360009081527ff7c9542c591017a21c74b6f3fab6263c7952fc0aaf9db4c22a2a04ddc7f8674f60205260409020547f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a9060ff16156114105750565b6044906040519063e2517d3f60e01b82523360048301526024820152fd5b3360009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604081205460ff16156114105750565b80600052600060205260406000203360005260205260ff60406000205416156114105750565b60ff6003541661149a57565b60405163d93c066560e01b8152600490fd5b6002600454146114bd576002600455565b604051633ee5aeb560e01b8152600490fd5b600554604080516323b872dd60e01b81526001600160a01b03808516600483015230602483015260448201869052600097929695929390929190602090829060649082908c9088165af1908115611628578891611609575b50156115f857816005541690813b15610fcc5787916024839289519485938492630852cd8d60e31b845260048401525af180156115ee576115db575b506006541691823b156115d757845163627160f360e11b81526001600160a01b039182166004820152602481019290925292909216604483015290919083908390606490829084905af19081156115ce57506115bd575050565b6115c782916111ac565b61107b5750565b513d84823e3d90fd5b8580fd5b6115e7909691966111ac565b9438611563565b86513d89823e3d90fd5b8551639e44786b60e01b8152600490fd5b611622915060203d6020116106b4576106a681836111d6565b38611527565b87513d8a823e3d90fd5b9060009180835282602052604083209160018060a01b03169182845260205260ff604084205416156000146116ab57808352826020526040832082845260205260408320600160ff198254161790557f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d339380a4600190565b505090565b9060009180835282602052604083209160018060a01b03169182845260205260ff6040842054166000146116ab5780835282602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b339380a460019056fea26469706673582212208bf675a574ea67713c248896cde6935aa61a4ab4c6e9f167b0e50e8a4f75642e64736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000624e12de7a97b8cfc1ad1f050a1c9263b1f4febc000000000000000000000000788d96f655735f52c676a133f4dfc53cec614d4a000000000000000000000000fa7560956807d95dcef22990ddd92e38dbaf5cdd000000000000000000000000fc2f89f9982be98a9672cefc3ea6dbbdd88bc8e90000000000000000000000000000000000000000000000000000000000000fa0
-----Decoded View---------------
Arg [0] : _collateralVault (address): 0x624E12dE7a97B8cFc1AD1F050a1c9263b1f4FeBC
Arg [1] : _dusd (address): 0x788D96f655735f52c676A133f4dFC53cEC614d4A
Arg [2] : _oracle (address): 0xFA7560956807d95DCeF22990DdD92e38DbAf5cDd
Arg [3] : _initialFeeReceiver (address): 0xfC2f89F9982BE98A9672CEFc3Ea6dBBdd88bc8e9
Arg [4] : _initialRedemptionFeeBps (uint256): 4000
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000624e12de7a97b8cfc1ad1f050a1c9263b1f4febc
Arg [1] : 000000000000000000000000788d96f655735f52c676a133f4dfc53cec614d4a
Arg [2] : 000000000000000000000000fa7560956807d95dcef22990ddd92e38dbaf5cdd
Arg [3] : 000000000000000000000000fc2f89f9982be98a9672cefc3ea6dbbdd88bc8e9
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000fa0
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in FRAX
0
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.