Description:
Proxy contract enabling upgradeable smart contract patterns. Delegates calls to an implementation contract.
Blockchain: Ethereum
Source Code: View Code On The Blockchain
Solidity Source Code:
{{
"language": "Solidity",
"settings": {
"evmVersion": "cancun",
"metadata": {
"bytecodeHash": "ipfs",
"useLiteralContent": true
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": [],
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
},
"sources": {
"contracts/Pool.sol": {
"content": "// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
import {Initializable} from "./dependencies/openzeppelin-upgradeable/proxy/utils/Initializable.sol";
import {SafeERC20} from "./dependencies/openzeppelin/token/ERC20/utils/SafeERC20.sol";
import {IERC20} from "./dependencies/openzeppelin/token/ERC20/IERC20.sol";
import {EnumerableSet} from "./dependencies/openzeppelin/utils/structs/EnumerableSet.sol";
import {Context, SynthContext} from "./utils/SynthContext.sol";
import {Pauseable} from "./utils/Pauseable.sol";
import {ReentrancyGuardDeprecated} from "./utils/ReentrancyGuardDeprecated.sol";
import {ReentrancyGuardTransient} from "./utils/ReentrancyGuardTransient.sol";
import {MappedEnumerableSet} from "./lib/MappedEnumerableSet.sol";
import {WadRayMath} from "./lib/WadRayMath.sol";
import {IMasterOracle} from "./interfaces/external/IMasterOracle.sol";
import {ISyntheticToken} from "./interfaces/ISyntheticToken.sol";
import {IPool} from "./interfaces/IPool.sol";
import {ISmartFarmingManager} from "./interfaces/ISmartFarmingManager.sol";
import {IPoolRegistry} from "./interfaces/IPoolRegistry.sol";
import {ITreasury} from "./interfaces/ITreasury.sol";
import {IDepositToken} from "./interfaces/IDepositToken.sol";
import {IRewardsDistributor} from "./interfaces/IRewardsDistributor.sol";
import {ISyntheticToken} from "./interfaces/ISyntheticToken.sol";
import {IDebtToken} from "./interfaces/IDebtToken.sol";
import {IFeeProvider} from "./interfaces/IFeeProvider.sol";
import {IPauseable} from "./interfaces/IPauseable.sol";
import {PoolStorageV4} from "./storage/PoolStorage.sol";
error SyntheticDoesNotExist();
error SenderIsNotDebtToken();
error SenderIsNotDepositToken();
error UserReachedMaxTokens();
error PoolRegistryIsNull();
error DebtTokenAlreadyExists();
error DepositTokenAlreadyExists();
error AmountIsZero();
error CanNotLiquidateOwnPosition();
error PositionIsHealthy();
error AmountGreaterThanMaxLiquidable();
error RemainingDebtIsLowerThanTheFloor();
error AmountIsTooHigh();
error DebtTokenDoesNotExist();
error DepositTokenDoesNotExist();
error SwapFeatureIsInactive();
error AmountInIsInvalid();
error AddressIsNull();
error SyntheticIsNull();
error SyntheticIsInUse();
error UnderlyingAssetInUse();
error ReachedMaxDepositTokens();
error RewardDistributorAlreadyExists();
error RewardDistributorDoesNotExist();
error TotalSupplyIsNotZero();
error NewValueIsSameAsCurrent();
error MaxLiquidableTooHigh();
/**
* @title Pool contract
*/
contract Pool is
SynthContext,
Initializable,
ReentrancyGuardDeprecated,
ReentrancyGuardTransient,
Pauseable,
PoolStorageV4
{
using SafeERC20 for IERC20;
using SafeERC20 for ISyntheticToken;
using WadRayMath for uint256;
using EnumerableSet for EnumerableSet.AddressSet;
using MappedEnumerableSet for MappedEnumerableSet.AddressSet;
string public constant VERSION = "1.3.2";
/**
* @notice Maximum tokens per pool a user may have
*/
uint256 public constant MAX_TOKENS_PER_USER = 30;
/// @notice Emitted when flag for pause bridge transfer is toggled
event BridgingIsActiveUpdated(bool newIsActive);
/// @notice Emitted when protocol liquidation fee is updated
event DebtFloorUpdated(uint256 oldDebtFloorInUsd, uint256 newDebtFloorInUsd);
/// @notice Emitted when debt token is enabled
event DebtTokenAdded(IDebtToken indexed debtToken);
/// @notice Emitted when debt token is disabled
event DebtTokenRemoved(IDebtToken indexed debtToken);
/// @notice Emitted when deposit token is enabled
event DepositTokenAdded(address indexed depositToken);
/// @notice Emitted when deposit token is disabled
event DepositTokenRemoved(IDepositToken indexed depositToken);
/// @notice Emitted when fee provider contract is updated
event FeeProviderUpdated(IFeeProvider indexed oldFeeProvider, IFeeProvider indexed newFeeProvider);
/// @notice Emitted when maxLiquidable (liquidation cap) is updated
event MaxLiquidableUpdated(uint256 oldMaxLiquidable, uint256 newMaxLiquidable);
/// @notice Emitted when a position is liquidated
event PositionLiquidated(
address indexed liquidator,
address indexed account,
ISyntheticToken indexed syntheticToken,
uint256 amountRepaid,
uint256 depositSeized,
uint256 fee
);
/// @notice Emitted when rewards distributor contract is added
event RewardsDistributorAdded(IRewardsDistributor indexed _distributor);
/// @notice Emitted when rewards distributor contract is removed
event RewardsDistributorRemoved(IRewardsDistributor _distributor);
/// @notice Emitted when SmartFarmingManager contract is updated
event SmartFarmingManagerUpdated(
ISmartFarmingManager oldSmartFarmingManager,
ISmartFarmingManager newSmartFarmingManager
);
/// @notice Emitted when the swap active flag is updated
event SwapActiveUpdated(bool newActive);
/// @notice Emitted when synthetic token is swapped
event SyntheticTokenSwapped(
address indexed account,
ISyntheticToken indexed syntheticTokenIn,
ISyntheticToken indexed syntheticTokenOut,
uint256 amountIn,
uint256 amountOut,
uint256 fee
);
/// @notice Emitted when treasury contract is updated
event TreasuryUpdated(ITreasury indexed oldTreasury, ITreasury indexed newTreasury);
/**
* @dev Throws if token addition will reach the `account_`'s max
*/
modifier onlyIfAdditionWillNotReachMaxTokens(address account_) {
if (debtTokensOfAccount.length(account_) + depositTokensOfAccount.length(account_) >= MAX_TOKENS_PER_USER) {
revert UserReachedMaxTokens();
}
_;
}
/**
* @dev Throws if deposit token doesn't exist
*/
modifier onlyIfDepositTokenExists(IDepositToken depositToken_) {
if (!doesDepositTokenExist(depositToken_)) revert DepositTokenDoesNotExist();
_;
}
/**
* @dev Throws if synthetic token doesn't exist
*/
modifier onlyIfSyntheticTokenExists(ISyntheticToken syntheticToken_) {
if (!doesSyntheticTokenExist(syntheticToken_)) revert SyntheticDoesNotExist();
_;
}
constructor() {
_disableInitializers();
}
/// @inheritdoc Context
function _msgSender() internal view virtual override(Context, SynthContext) returns (address) {
return SynthContext._msgSender();
}
function initialize(IPoolRegistry poolRegistry_) public initializer {
if (address(poolRegistry_) == address(0)) revert PoolRegistryIsNull();
__Pauseable_init();
_poolRegistry = poolRegistry_;
isSwapActive = true;
maxLiquidable = 0.5e18; // 50%
}
/**
* @dev Throws if `_msgSender()` isn't a debt token
*/
function _revertIfSenderIsNotDebtToken(address sender_) private view {
if (!doesDebtTokenExist(IDebtToken(sender_))) revert SenderIsNotDebtToken();
}
/**
* @dev Throws if `_msgSender()` isn't a deposit token
*/
function _revertIfSenderIsNotDepositToken(address sender_) private view {
if (!doesDepositTokenExist(IDepositToken(sender_))) revert SenderIsNotDepositToken();
}
/**
* @notice Add a debt token to the per-account list
* @dev This function is called from `DebtToken` when user's balance changes from `0`
* @dev The caller should ensure to not pass `address(0)` as `_account`
* @param account_ The account address
*/
function addToDebtTokensOfAccount(address account_) external onlyIfAdditionWillNotReachMaxTokens(account_) {
address _debtToken = _msgSender();
_revertIfSenderIsNotDebtToken(_debtToken);
if (!debtTokensOfAccount.add(account_, _debtToken)) revert DebtTokenAlreadyExists();
}
/**
* @notice Add a deposit token to the per-account list
* @dev This function is called from `DepositToken` when user's balance changes from `0`
* @dev The caller should ensure to not pass `address(0)` as `_account`
* @param account_ The account address
*/
function addToDepositTokensOfAccount(address account_) external onlyIfAdditionWillNotReachMaxTokens(account_) {
address _depositToken = _msgSender();
_revertIfSenderIsNotDepositToken(_depositToken);
if (!depositTokensOfAccount.add(account_, _depositToken)) revert DepositTokenAlreadyExists();
}
/**
* @notice Get account's debt by querying latest prices from oracles
* @param account_ The account to check
* @return _debtInUsd The debt value in USD
*/
function debtOf(address account_) public view override returns (uint256 _debtInUsd) {
IMasterOracle _masterOracle = masterOracle();
uint256 _length = debtTokensOfAccount.length(account_);
for (uint256 i; i < _length; ++i) {
IDebtToken _debtToken = IDebtToken(debtTokensOfAccount.at(account_, i));
_debtInUsd += _masterOracle.quoteTokenToUsd(
address(_debtToken.syntheticToken()),
_debtToken.balanceOf(account_)
);
}
}
/**
* @notice Returns whether the debt position from an account is healthy
* @param account_ The account to check
* @return _isHealthy Whether the account's position is healthy
* @return _depositInUsd The total collateral deposited in USD
* @return _debtInUsd The total debt in USD
* @return _issuableLimitInUsd The max amount of debt (is USD) that can be created (considering collateral factors)
* @return _issuableInUsd The amount of debt (is USD) that is free (i.e. can be used to issue synthetic tokens)
*/
function debtPositionOf(
address account_
)
public
view
override
returns (
bool _isHealthy,
uint256 _depositInUsd,
uint256 _debtInUsd,
uint256 _issuableLimitInUsd,
uint256 _issuableInUsd
)
{
_debtInUsd = debtOf(account_);
(_depositInUsd, _issuableLimitInUsd) = depositOf(account_);
_isHealthy = _debtInUsd <= _issuableLimitInUsd;
_issuableInUsd = _debtInUsd < _issuableLimitInUsd ? _issuableLimitInUsd - _debtInUsd : 0;
}
/**
* @notice Get account's total collateral deposited by querying latest prices from oracles
* @param account_ The account to check
* @return _depositInUsd The total deposit value in USD among all collaterals
* @return _issuableLimitInUsd The max value in USD that can be used to issue synthetic tokens
*/
function depositOf(
address account_
) public view override returns (uint256 _depositInUsd, uint256 _issuableLimitInUsd) {
IMasterOracle _masterOracle = masterOracle();
uint256 _length = depositTokensOfAccount.length(account_);
for (uint256 i; i < _length; ++i) {
IDepositToken _depositToken = IDepositToken(depositTokensOfAccount.at(account_, i));
uint256 _amountInUsd = _masterOracle.quoteTokenToUsd(
address(_depositToken.underlying()),
_depositToken.balanceOf(account_)
);
_depositInUsd += _amountInUsd;
_issuableLimitInUsd += _amountInUsd.wadMul(_depositToken.collateralFactor());
}
}
/**
* @inheritdoc Pauseable
*/
function everythingStopped() public view override(IPauseable, Pauseable) returns (bool) {
return super.everythingStopped() || _poolRegistry.everythingStopped();
}
/**
* @notice Returns fee collector address
*/
function feeCollector() external view override returns (address) {
return _poolRegistry.feeCollector();
}
/**
* @notice Get all debt tokens
* @dev 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.
*/
function getDebtTokens() external view override returns (address[] memory) {
return debtTokens.values();
}
/**
* @notice Get all debt tokens
* @dev 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.
*/
function getDebtTokensOfAccount(address account_) external view override returns (address[] memory) {
return debtTokensOfAccount.values(account_);
}
/**
* @notice Get all deposit tokens
* @dev 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.
*/
function getDepositTokens() external view override returns (address[] memory) {
return depositTokens.values();
}
/**
* @notice Get deposit tokens of an account
* @dev 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.
*/
function getDepositTokensOfAccount(address account_) external view override returns (address[] memory) {
return depositTokensOfAccount.values(account_);
}
/**
* @notice Get all rewards distributors
*/
function getRewardsDistributors() external view override returns (address[] memory) {
return rewardsDistributors.values();
}
/**
* @notice Check if token is part of the debt offerings
* @param debtToken_ Asset to check
* @return true if exist
*/
function doesDebtTokenExist(IDebtToken debtToken_) public view override returns (bool) {
return debtTokens.contains(address(debtToken_));
}
/**
* @notice Check if collateral is supported
* @param depositToken_ Asset to check
* @return true if exist
*/
function doesDepositTokenExist(IDepositToken depositToken_) public view override returns (bool) {
return depositTokens.contains(address(depositToken_));
}
/**
* @notice Check if token is part of the synthetic offerings
* @param syntheticToken_ Asset to check
* @return true if exist
*/
function doesSyntheticTokenExist(ISyntheticToken syntheticToken_) public view override returns (bool) {
return address(debtTokenOf[syntheticToken_]) != address(0);
}
/**
* @notice Quote synth `_amountToRepay` in order to seize `totalToSeized_`
* @param syntheticToken_ Synth for repayment
* @param totalToSeize_ Collateral total amount to size
* @param depositToken_ Collateral's deposit token
* @return _amountToRepay Synth amount to burn
* @return _toLiquidator Seized amount to the liquidator
* @return _fee The fee amount to collect
*/
function quoteLiquidateIn(
ISyntheticToken syntheticToken_,
uint256 totalToSeize_,
IDepositToken depositToken_
) public view override returns (uint256 _amountToRepay, uint256 _toLiquidator, uint256 _fee) {
(uint128 _liquidatorIncentive, uint128 _protocolFee) = feeProvider.liquidationFees();
uint256 _totalFees = _protocolFee + _liquidatorIncentive;
uint256 _repayAmountInCollateral = totalToSeize_;
if (_totalFees > 0) {
_repayAmountInCollateral = _repayAmountInCollateral.wadDiv(1e18 + _totalFees);
}
_amountToRepay = masterOracle().quote(
address(depositToken_.underlying()),
address(syntheticToken_),
_repayAmountInCollateral
);
if (_protocolFee > 0) {
_fee = _repayAmountInCollateral.wadMul(_protocolFee);
}
if (_liquidatorIncentive > 0) {
_toLiquidator = _repayAmountInCollateral.wadMul(1e18 + _liquidatorIncentive);
}
}
/**
* @notice Quote max allowed synth to repay
* @dev I.e. Considers the min amount between collateral's balance and `maxLiquidable` param
* @param syntheticToken_ Synth for repayment
* @param account_ The account to liquidate
* @param depositToken_ Collateral's deposit token
* @return _maxAmountToRepay Synth amount to burn
*/
function quoteLiquidateMax(
ISyntheticToken syntheticToken_,
address account_,
IDepositToken depositToken_
) external view override returns (uint256 _maxAmountToRepay) {
(bool _isHealthy, , , , ) = debtPositionOf(account_);
if (_isHealthy) {
return 0;
}
(uint256 _amountToRepay, , ) = quoteLiquidateIn(
syntheticToken_,
depositToken_.balanceOf(account_),
depositToken_
);
_maxAmountToRepay = debtTokenOf[syntheticToken_].balanceOf(account_).wadMul(maxLiquidable);
if (_amountToRepay < _maxAmountToRepay) {
_maxAmountToRepay = _amountToRepay;
}
}
/**
* @notice Quote collateral `totalToSeized_` by repaying `amountToRepay_`
* @param syntheticToken_ Synth for repayment
* @param amountToRepay_ Synth amount to burn
* @param depositToken_ Collateral's deposit token
* @return _totalToSeize Collateral total amount to size
* @return _toLiquidator Seized amount to the liquidator
* @return _fee The fee amount to collect
*/
function quoteLiquidateOut(
ISyntheticToken syntheticToken_,
uint256 amountToRepay_,
IDepositToken depositToken_
) public view override returns (uint256 _totalToSeize, uint256 _toLiquidator, uint256 _fee) {
_toLiquidator = masterOracle().quote(
address(syntheticToken_),
address(depositToken_.underlying()),
amountToRepay_
);
(uint128 _liquidatorIncentive, uint128 _protocolFee) = feeProvider.liquidationFees();
if (_protocolFee > 0) {
_fee = _toLiquidator.wadMul(_protocolFee);
}
if (_liquidatorIncentive > 0) {
_toLiquidator += _toLiquidator.wadMul(_liquidatorIncentive);
}
_totalToSeize = _fee + _toLiquidator;
}
/**
* @notice Quote `_amountIn` to get `amountOut_`
* @param syntheticTokenIn_ Synth in
* @param syntheticTokenOut_ Synth out
* @param amountOut_ Amount out
* @return _amountIn Amount in
* @return _fee Fee to charge in `syntheticTokenOut_`
*/
function quoteSwapIn(
ISyntheticToken syntheticTokenIn_,
ISyntheticToken syntheticTokenOut_,
uint256 amountOut_
) external view override returns (uint256 _amountIn, uint256 _fee) {
uint256 _swapFee = feeProvider.swapFeeFor(_msgSender());
if (_swapFee > 0) {
amountOut_ = amountOut_.wadDiv(1e18 - _swapFee);
_fee = amountOut_.wadMul(_swapFee);
}
_amountIn = _poolRegistry.masterOracle().quote(
address(syntheticTokenOut_),
address(syntheticTokenIn_),
amountOut_
);
}
/**
* @notice Quote `amountOut_` get from `amountIn_`
* @param syntheticTokenIn_ Synth in
* @param syntheticTokenOut_ Synth out
* @param amountIn_ Amount in
* @return _amountOut Amount out
* @return _fee Fee to charge in `syntheticTokenOut_`
*/
function quoteSwapOut(
ISyntheticToken syntheticTokenIn_,
ISyntheticToken syntheticTokenOut_,
uint256 amountIn_
) public view override returns (uint256 _amountOut, uint256 _fee) {
_amountOut = _poolRegistry.masterOracle().quote(
address(syntheticTokenIn_),
address(syntheticTokenOut_),
amountIn_
);
uint256 _swapFee = feeProvider.swapFeeFor(_msgSender());
if (_swapFee > 0) {
_fee = _amountOut.wadMul(_swapFee);
_amountOut -= _fee;
}
}
/**
* @notice Burn synthetic token, unlock deposit token and send liquidator incentive
* @param syntheticToken_ The msAsset to use for repayment
* @param account_ The account with an unhealthy position
* @param amountToRepay_ The amount to repay in synthetic token
* @param depositToken_ The collateral to seize from
* @return _totalSeized Total deposit amount seized from the liquidated account
* @return _toLiquidator Share of `_totalSeized` sent to the liquidator
* @return _fee Share of `_totalSeized` collected as fee
*/
function liquidate(
ISyntheticToken syntheticToken_,
address account_,
uint256 amountToRepay_,
IDepositToken depositToken_
)
external
override
whenNotShutdown
nonReentrant
onlyIfSyntheticTokenExists(syntheticToken_)
onlyIfDepositTokenExists(depositToken_)
returns (uint256 _totalSeized, uint256 _toLiquidator, uint256 _fee)
{
address _msgSender = _msgSender();
if (amountToRepay_ == 0) revert AmountIsZero();
if (_msgSender == account_) revert CanNotLiquidateOwnPosition();
IDebtToken _debtToken = debtTokenOf[syntheticToken_];
_debtToken.accrueInterest();
(bool _isHealthy, , , , ) = debtPositionOf(account_);
if (_isHealthy) {
revert PositionIsHealthy();
}
uint256 _debtTokenBalance = _debtToken.balanceOf(account_);
if (amountToRepay_.wadDiv(_debtTokenBalance) > maxLiquidable) {
revert AmountGreaterThanMaxLiquidable();
}
if (debtFloorInUsd > 0) {
uint256 _newDebtInUsd = masterOracle().quoteTokenToUsd(
address(syntheticToken_),
_debtTokenBalance - amountToRepay_
);
if (_newDebtInUsd > 0 && _newDebtInUsd < debtFloorInUsd) {
revert RemainingDebtIsLowerThanTheFloor();
}
}
(_totalSeized, _toLiquidator, _fee) = quoteLiquidateOut(syntheticToken_, amountToRepay_, depositToken_);
if (_totalSeized > depositToken_.balanceOf(account_)) {
revert AmountIsTooHigh();
}
syntheticToken_.burn(_msgSender, amountToRepay_);
_debtToken.burn(account_, amountToRepay_);
depositToken_.seize(account_, _msgSender, _toLiquidator);
if (_fee > 0) {
depositToken_.seize(account_, _poolRegistry.feeCollector(), _fee);
}
emit PositionLiquidated(_msgSender, account_, syntheticToken_, amountToRepay_, _totalSeized, _fee);
}
/**
* @notice Get MasterOracle contract
*/
function masterOracle() public view override returns (IMasterOracle) {
return _poolRegistry.masterOracle();
}
/**
* @inheritdoc Pauseable
*/
function paused() public view override(IPauseable, Pauseable) returns (bool) {
return super.paused() || _poolRegistry.paused();
}
/**
* @notice Remove a debt token from the per-account list
* @dev This function is called from `DebtToken` when user's balance changes to `0`
* @dev The caller should ensure to not pass `address(0)` as `_account`
* @param account_ The account address
*/
function removeFromDebtTokensOfAccount(address account_) external {
address _debtToken = _msgSender();
_revertIfSenderIsNotDebtToken(_debtToken);
if (!debtTokensOfAccount.remove(account_, _debtToken)) revert DebtTokenDoesNotExist();
}
/**
* @notice Remove a deposit token from the per-account list
* @dev This function is called from `DepositToken` when user's balance changes to `0`
* @dev The caller should ensure to not pass `address(0)` as `_account`
* @param account_ The account address
*/
function removeFromDepositTokensOfAccount(address account_) external {
address _depositToken = _msgSender();
_revertIfSenderIsNotDepositToken(_depositToken);
if (!depositTokensOfAccount.remove(account_, _depositToken)) revert DepositTokenDoesNotExist();
}
/**
* @notice Swap synthetic tokens
* @param syntheticTokenIn_ Synthetic token to sell
* @param syntheticTokenOut_ Synthetic token to buy
* @param amountIn_ Amount to swap
*/
function swap(
ISyntheticToken syntheticTokenIn_,
ISyntheticToken syntheticTokenOut_,
uint256 amountIn_
)
external
override
whenNotShutdown
nonReentrant
onlyIfSyntheticTokenExists(syntheticTokenIn_)
onlyIfSyntheticTokenExists(syntheticTokenOut_)
returns (uint256 _amountOut, uint256 _fee)
{
address _msgSender = _msgSender();
if (!isSwapActive) revert SwapFeatureIsInactive();
if (amountIn_ == 0 || amountIn_ > syntheticTokenIn_.balanceOf(_msgSender)) revert AmountInIsInvalid();
syntheticTokenIn_.burn(_msgSender, amountIn_);
(_amountOut, _fee) = quoteSwapOut(syntheticTokenIn_, syntheticTokenOut_, amountIn_);
if (_fee > 0) {
syntheticTokenOut_.mint(_poolRegistry.feeCollector(), _fee);
}
syntheticTokenOut_.mint(_msgSender, _amountOut);
emit SyntheticTokenSwapped(_msgSender, syntheticTokenIn_, syntheticTokenOut_, amountIn_, _amountOut, _fee);
}
/// @inheritdoc SynthContext
function poolRegistry() public view override(IPool, SynthContext) returns (IPoolRegistry) {
return _poolRegistry;
}
/**
* @notice Add debt token to offerings
* @dev Must keep `debtTokenOf` mapping updated
*/
function addDebtToken(IDebtToken debtToken_) external onlyGovernor {
if (address(debtToken_) == address(0)) revert AddressIsNull();
ISyntheticToken _syntheticToken = debtToken_.syntheticToken();
if (address(_syntheticToken) == address(0)) revert SyntheticIsNull();
if (address(debtTokenOf[_syntheticToken]) != address(0)) revert SyntheticIsInUse();
if (!debtTokens.add(address(debtToken_))) revert DebtTokenAlreadyExists();
debtTokenOf[_syntheticToken] = debtToken_;
emit DebtTokenAdded(debtToken_);
}
/**
* @notice Add deposit token (i.e. collateral) to Synth
*/
function addDepositToken(address depositToken_) external onlyGovernor {
if (depositToken_ == address(0)) revert AddressIsNull();
IERC20 _underlying = IDepositToken(depositToken_).underlying();
if (address(depositTokenOf[_underlying]) != address(0)) revert UnderlyingAssetInUse();
// Note: Fee collector collects deposit tokens as fee
if (depositTokens.length() >= MAX_TOKENS_PER_USER) revert ReachedMaxDepositTokens();
if (!depositTokens.add(depositToken_)) revert DepositTokenAlreadyExists();
depositTokenOf[_underlying] = IDepositToken(depositToken_);
emit DepositTokenAdded(depositToken_);
}
/**
* @notice Add a RewardsDistributor contract
*/
function addRewardsDistributor(IRewardsDistributor distributor_) external onlyGovernor {
if (address(distributor_) == address(0)) revert AddressIsNull();
if (!rewardsDistributors.add(address(distributor_))) revert RewardDistributorAlreadyExists();
emit RewardsDistributorAdded(distributor_);
}
/**
* @notice Remove debt token from offerings
* @dev Must keep `debtTokenOf` mapping updated
*/
function removeDebtToken(IDebtToken debtToken_) external onlyGovernor {
if (debtToken_.totalSupply() > 0) revert TotalSupplyIsNotZero();
if (!debtTokens.remove(address(debtToken_))) revert DebtTokenDoesNotExist();
delete debtTokenOf[debtToken_.syntheticToken()];
emit DebtTokenRemoved(debtToken_);
}
/**
* @notice Remove deposit token (i.e. collateral) from Synth
*/
function removeDepositToken(IDepositToken depositToken_) external onlyGovernor {
if (depositToken_.totalSupply() > 0) revert TotalSupplyIsNotZero();
if (!depositTokens.remove(address(depositToken_))) revert DepositTokenDoesNotExist();
delete depositTokenOf[depositToken_.underlying()];
emit DepositTokenRemoved(depositToken_);
}
/**
* @notice Remove a RewardsDistributor contract
*/
function removeRewardsDistributor(IRewardsDistributor distributor_) external onlyGovernor {
if (address(distributor_) == address(0)) revert AddressIsNull();
if (!rewardsDistributors.remove(address(distributor_))) revert RewardDistributorDoesNotExist();
emit RewardsDistributorRemoved(distributor_);
}
/**
* @notice Turn swap on/off
*/
function toggleIsSwapActive() external onlyGovernor {
bool _newIsSwapActive = !isSwapActive;
emit SwapActiveUpdated(_newIsSwapActive);
isSwapActive = _newIsSwapActive;
}
/**
* @notice Update debt floor
*/
function updateDebtFloor(uint256 newDebtFloorInUsd_) external onlyGovernor {
uint256 _currentDebtFloorInUsd = debtFloorInUsd;
if (newDebtFloorInUsd_ == _currentDebtFloorInUsd) revert NewValueIsSameAsCurrent();
emit DebtFloorUpdated(_currentDebtFloorInUsd, newDebtFloorInUsd_);
debtFloorInUsd = newDebtFloorInUsd_;
}
/**
* @notice Update maxLiquidable (liquidation cap)
*/
function updateMaxLiquidable(uint256 newMaxLiquidable_) external onlyGovernor {
if (newMaxLiquidable_ > 1e18) revert MaxLiquidableTooHigh();
uint256 _currentMaxLiquidable = maxLiquidable;
if (newMaxLiquidable_ == _currentMaxLiquidable) revert NewValueIsSameAsCurrent();
emit MaxLiquidableUpdated(_currentMaxLiquidable, newMaxLiquidable_);
maxLiquidable = newMaxLiquidable_;
}
/**
* @notice Update treasury contract - will migrate funds to the new contract
*/
function updateTreasury(ITreasury newTreasury_) external onlyGovernor {
if (address(newTreasury_) == address(0)) revert AddressIsNull();
ITreasury _currentTreasury = treasury;
if (newTreasury_ == _currentTreasury) revert NewValueIsSameAsCurrent();
if (address(_currentTreasury) != address(0)) {
_currentTreasury.migrateTo(address(newTreasury_));
}
emit TreasuryUpdated(_currentTreasury, newTreasury_);
treasury = newTreasury_;
}
/**
* @notice Update FeeProvider contract
*/
function updateFeeProvider(IFeeProvider feeProvider_) external onlyGovernor {
if (address(feeProvider_) == address(0)) revert AddressIsNull();
IFeeProvider _current = feeProvider;
if (feeProvider_ == _current) revert NewValueIsSameAsCurrent();
emit FeeProviderUpdated(_current, feeProvider_);
feeProvider = feeProvider_;
}
/**
* @notice Update SmartFarmingManager contract
*/
function updateSmartFarmingManager(ISmartFarmingManager newSmartFarmingManager_) external onlyGovernor {
if (address(newSmartFarmingManager_) == address(0)) revert AddressIsNull();
ISmartFarmingManager _current = smartFarmingManager;
if (newSmartFarmingManager_ == _current) revert NewValueIsSameAsCurrent();
emit SmartFarmingManagerUpdated(_current, newSmartFarmingManager_);
smartFarmingManager = newSmartFarmingManager_;
}
/**
* @notice Pause/Unpause bridge transfers
*/
function toggleBridgingIsActive() external onlyGovernor {
bool _newIsBridgingActive = !isBridgingActive;
emit BridgingIsActiveUpdated(_newIsBridgingActive);
isBridgingActive = _newIsBridgingActive;
}
/**
* @inheritdoc Pauseable
*/
function isGuardian(address sender_) public view override returns (bool) {
return _poolRegistry.isGuardian(sender_);
}
}
"
},
"contracts/access/Governable.sol": {
"content": "// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
import {Initializable} from "../dependencies/openzeppelin-upgradeable/proxy/utils/Initializable.sol";
import {Context} from "../dependencies/openzeppelin/utils/Context.sol";
import {TokenHolder} from "../utils/TokenHolder.sol";
import {IGovernable} from "../interfaces/IGovernable.sol";
error SenderIsNotGovernor();
error ProposedGovernorIsNull();
error SenderIsNotTheProposedGovernor();
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (governor) that can be granted exclusive access to
* specific functions.
*
* By default, the governor account will be the one that deploys the contract. This
* can later be changed with {transferGovernorship}.
*
*/
abstract contract Governable is IGovernable, Context, TokenHolder, Initializable {
/**
* @notice The governor
* @dev By default the contract deployer is the initial governor
*/
address public governor;
/**
* @notice The proposed governor
* @dev It will be empty (address(0)) if there isn't a proposed governor
*/
address public proposedGovernor;
event UpdatedGovernor(address indexed previousGovernor, address indexed proposedGovernor);
constructor() {
address _msgSender = _msgSender();
governor = _msgSender;
emit UpdatedGovernor(address(0), _msgSender);
}
/**
* @dev If inheriting child is using proxy then child contract can use
* __Governable_init() function to initialization this contract
*/
// solhint-disable-next-line func-name-mixedcase
function __Governable_init() internal onlyInitializing {
address _msgSender = _msgSender();
governor = _msgSender;
emit UpdatedGovernor(address(0), _msgSender);
}
/**
* @dev Throws if called by any account other than the governor.
*/
modifier onlyGovernor() {
if (governor != _msgSender()) revert SenderIsNotGovernor();
_;
}
/// @inheritdoc TokenHolder
// solhint-disable-next-line no-empty-blocks
function _requireCanSweep() internal view override onlyGovernor {}
/**
* @notice Transfers governorship of the contract to a new account (`proposedGovernor`).
* @dev Can only be called by the current owner.
* @param proposedGovernor_ The new proposed governor
*/
function transferGovernorship(address proposedGovernor_) external onlyGovernor {
if (proposedGovernor_ == address(0)) revert ProposedGovernorIsNull();
proposedGovernor = proposedGovernor_;
}
/**
* @notice Allows new governor to accept governorship of the contract.
*/
function acceptGovernorship() external {
address _proposedGovernor = proposedGovernor;
if (_msgSender() != _proposedGovernor) revert SenderIsNotTheProposedGovernor();
emit UpdatedGovernor(governor, _proposedGovernor);
governor = _proposedGovernor;
proposedGovernor = address(0);
}
}
"
},
"contracts/dependencies/@layerzerolabs/solidity-examples/contracts-upgradeable/token/oft/IOFTCoreUpgradeable.sol": {
"content": "// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import "../../../../../openzeppelin-upgradeable/utils/introspection/IERC165Upgradeable.sol";
/**
* @dev Interface of the IOFT core standard
*/
interface IOFTCoreUpgradeable is IERC165Upgradeable {
/**
* @dev estimate send token `_tokenId` to (`_dstChainId`, `_toAddress`)
* _dstChainId - L0 defined chain id to send tokens too
* _toAddress - dynamic bytes array which contains the address to whom you are sending tokens to on the dstChain
* _amount - amount of the tokens to transfer
* _useZro - indicates to use zro to pay L0 fees
* _adapterParam - flexible bytes array to indicate messaging adapter services in L0
*/
function estimateSendFee(
uint16 _dstChainId,
bytes calldata _toAddress,
uint _amount,
bool _useZro,
bytes calldata _adapterParams
) external view returns (uint nativeFee, uint zroFee);
/**
* @dev send `_amount` amount of token to (`_dstChainId`, `_toAddress`) from `_from`
* `_from` the owner of token
* `_dstChainId` the destination chain identifier
* `_toAddress` can be any size depending on the `dstChainId`.
* `_amount` the quantity of tokens in wei
* `_refundAddress` the address LayerZero refunds if too much message fee is sent
* `_zroPaymentAddress` set to address(0x0) if not paying in ZRO (LayerZero Token)
* `_adapterParams` is a flexible bytes array to indicate messaging adapter services
*/
function sendFrom(
address _from,
uint16 _dstChainId,
bytes calldata _toAddress,
uint _amount,
address payable _refundAddress,
address _zroPaymentAddress,
bytes calldata _adapterParams
) external payable;
/**
* @dev returns the circulating amount of tokens on current chain
*/
function circulatingSupply() external view returns (uint);
/**
* @dev returns the address of the ERC20 token
*/
function token() external view returns (address);
/**
* @dev Emitted when `_amount` tokens are moved from the `_sender` to (`_dstChainId`, `_toAddress`)
* `_nonce` is the outbound nonce
*/
event SendToChain(uint16 indexed _dstChainId, address indexed _from, bytes _toAddress, uint _amount);
/**
* @dev Emitted when `_amount` tokens are received from `_srcChainId` into the `_toAddress` on the local chain.
* `_nonce` is the inbound nonce.
*/
event ReceiveFromChain(uint16 indexed _srcChainId, address indexed _to, uint _amount);
event SetUseCustomAdapterParams(bool _useCustomAdapterParams);
}
"
},
"contracts/dependencies/@layerzerolabs/solidity-examples/contracts-upgradeable/token/oft/composable/IComposableOFTCoreUpgradeable.sol": {
"content": "// SPDX-License-Identifier: MIT
pragma solidity >=0.5.0;
import "../IOFTCoreUpgradeable.sol";
/**
* @dev Interface of the composable OFT core standard
*/
interface IComposableOFTCoreUpgradeable is IOFTCoreUpgradeable {
function estimateSendAndCallFee(
uint16 _dstChainId,
bytes calldata _toAddress,
uint _amount,
bytes calldata _payload,
uint64 _dstGasForCall,
bool _useZro,
bytes calldata _adapterParams
) external view returns (uint nativeFee, uint zroFee);
function sendAndCall(
address _from,
uint16 _dstChainId,
bytes calldata _toAddress,
uint _amount,
bytes calldata _payload,
uint64 _dstGasForCall,
address payable _refundAddress,
address _zroPaymentAddress,
bytes calldata _adapterParams
) external payable;
function retryOFTReceived(
uint16 _srcChainId,
bytes calldata _srcAddress,
uint64 _nonce,
bytes calldata _from,
address _to,
uint _amount,
bytes calldata _payload
) external;
event CallOFTReceivedFailure(
uint16 indexed _srcChainId,
bytes _srcAddress,
uint64 _nonce,
bytes _from,
address indexed _to,
uint _amount,
bytes _payload,
bytes _reason
);
event CallOFTReceivedSuccess(uint16 indexed _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _hash);
event RetryOFTReceivedSuccess(bytes32 _messageHash);
event NonContractAddress(address _address);
}
"
},
"contracts/dependencies/@layerzerolabs/solidity-examples/contracts-upgradeable/token/oft/composable/IOFTReceiverUpgradeable.sol": {
"content": "// SPDX-License-Identifier: MIT
pragma solidity >=0.5.0;
interface IOFTReceiverUpgradeable {
/**
* @dev Called by the OFT contract when tokens are received from source chain.
* @param _srcChainId The chain id of the source chain.
* @param _srcAddress The address of the OFT token contract on the source chain.
* @param _nonce The nonce of the transaction on the source chain.
* @param _from The address of the account who calls the sendAndCall() on the source chain.
* @param _amount The amount of tokens to transfer.
* @param _payload Additional data with no specified format.
*/
function onOFTReceived(
uint16 _srcChainId,
bytes calldata _srcAddress,
uint64 _nonce,
bytes calldata _from,
uint _amount,
bytes calldata _payload
) external;
}
"
},
"contracts/dependencies/openzeppelin-upgradeable/proxy/utils/Initializable.sol": {
"content": "// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.2;
import "../../utils/AddressUpgradeable.sol";
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
* case an upgrade adds a module that needs to be initialized.
*
* For example:
*
* [.hljs-theme-light.nopadding]
* ```
* contract MyToken is ERC20Upgradeable {
* function initialize() initializer public {
* __ERC20_init("MyToken", "MTK");
* }
* }
* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
* function initializeV2() reinitializer(2) public {
* __ERC20Permit_init("MyToken");
* }
* }
* ```
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
* the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() {
* _disableInitializers();
* }
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
* @custom:oz-retyped-from bool
*/
uint8 private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint8 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`.
*/
modifier initializer() {
bool isTopLevelCall = _setInitializedVersion(1);
if (isTopLevelCall) {
_initializing = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
emit Initialized(1);
}
}
/**
* @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
* contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
* used to initialize parent contracts.
*
* `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original
* initialization step. This is essential to configure modules that are added through upgrades and that require
* initialization.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*/
modifier reinitializer(uint8 version) {
bool isTopLevelCall = _setInitializedVersion(version);
if (isTopLevelCall) {
_initializing = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
emit Initialized(version);
}
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} and {reinitializer} modifiers, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*/
function _disableInitializers() internal virtual {
_setInitializedVersion(type(uint8).max);
}
function _setInitializedVersion(uint8 version) private returns (bool) {
// If the contract is initializing we ignore whether _initialized is set in order to support multiple
// inheritance patterns, but we only do this in the context of a constructor, and for the lowest level
// of initializers, because in other contexts the contract may have been reentered.
if (_initializing) {
require(
version == 1 && !AddressUpgradeable.isContract(address(this)),
"Initializable: contract is already initialized"
);
return false;
} else {
require(_initialized < version, "Initializable: contract is already initialized");
_initialized = version;
return true;
}
}
}
"
},
"contracts/dependencies/openzeppelin-upgradeable/utils/AddressUpgradeable.sol": {
"content": "// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @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, it is bubbled up by this
* function (like regular Solidity function calls).
*
* 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.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @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`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// 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
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
"
},
"contracts/dependencies/openzeppelin-upgradeable/utils/introspection/IERC165Upgradeable.sol": {
"content": "// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @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 IERC165Upgradeable {
/**
* @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);
}
"
},
"contracts/dependencies/openzeppelin/token/ERC20/IERC20.sol": {
"content": "// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) 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 `amount` 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 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @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);
}
"
},
"contracts/dependencies/openzeppelin/token/ERC20/extensions/IERC20Metadata.sol": {
"content": "// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
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);
}
"
},
"contracts/dependencies/openzeppelin/token/ERC20/utils/SafeERC20.sol": {
"content": "// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../../../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;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
/**
* @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, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
"
},
"contracts/dependencies/openzeppelin/utils/Address.sol": {
"content": "// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to ass
Submitted on: 2025-11-04 16:27:25
Comments
Log in to comment.
No comments yet.