More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 167 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
One Inch Swap | 20834985 | 61 days ago | IN | 0 ETH | 0.00635464 | ||||
One Inch Swap | 20818170 | 63 days ago | IN | 0.001 ETH | 0.00160914 | ||||
Withdraw Collate... | 20798115 | 66 days ago | IN | 0 ETH | 0.00899783 | ||||
Withdraw Collate... | 20792316 | 67 days ago | IN | 0 ETH | 0.00965119 | ||||
Withdraw Collate... | 20773105 | 70 days ago | IN | 0 ETH | 0.00703859 | ||||
Withdraw Collate... | 20771146 | 70 days ago | IN | 0 ETH | 0.01481466 | ||||
Withdraw Collate... | 20771035 | 70 days ago | IN | 0 ETH | 0.00073716 | ||||
One Inch Swap | 20748456 | 73 days ago | IN | 0.01 ETH | 0.00034589 | ||||
Withdraw Collate... | 20729134 | 76 days ago | IN | 0 ETH | 0.00213406 | ||||
Withdraw Collate... | 20728575 | 76 days ago | IN | 0 ETH | 0.00196711 | ||||
Withdraw Collate... | 20728570 | 76 days ago | IN | 0 ETH | 0.00028122 | ||||
Withdraw Collate... | 20728553 | 76 days ago | IN | 0 ETH | 0.00030529 | ||||
Withdraw Collate... | 20728404 | 76 days ago | IN | 0 ETH | 0.00221497 | ||||
Withdraw Collate... | 20728352 | 76 days ago | IN | 0 ETH | 0.00181846 | ||||
Withdraw Collate... | 20728234 | 76 days ago | IN | 0 ETH | 0.00252211 | ||||
Withdraw Collate... | 20727956 | 76 days ago | IN | 0 ETH | 0.00045983 | ||||
Withdraw Collate... | 20727952 | 76 days ago | IN | 0 ETH | 0.00037039 | ||||
Withdraw Collate... | 20727933 | 76 days ago | IN | 0 ETH | 0.00032278 | ||||
Repay Debt | 20727892 | 76 days ago | IN | 0 ETH | 0.00152157 | ||||
Borrow On Aave | 20722355 | 77 days ago | IN | 0 ETH | 0.00387797 | ||||
Repay Debt | 20721650 | 77 days ago | IN | 0 ETH | 0.00110885 | ||||
Borrow On Aave | 20720914 | 77 days ago | IN | 0 ETH | 0.00285854 | ||||
Borrow On Aave | 20720907 | 77 days ago | IN | 0 ETH | 0.00298158 | ||||
Borrow On Aave | 20720889 | 77 days ago | IN | 0 ETH | 0.00354856 | ||||
Borrow On Aave | 20720835 | 77 days ago | IN | 0 ETH | 0.00228787 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
20818170 | 63 days ago | 0.0009931 ETH | ||||
20818170 | 63 days ago | 0.0000069 ETH | ||||
20748456 | 73 days ago | 0.009931 ETH | ||||
20748456 | 73 days ago | 0.000069 ETH | ||||
20633709 | 89 days ago | 0.009931 ETH | ||||
20633709 | 89 days ago | 0.000069 ETH | ||||
20588109 | 95 days ago | 0.00049655 ETH | ||||
20588109 | 95 days ago | 0.00000345 ETH | ||||
20540655 | 102 days ago | 0.0009931 ETH | ||||
20540655 | 102 days ago | 0.0000069 ETH | ||||
20535471 | 103 days ago | 0.0009931 ETH | ||||
20535471 | 103 days ago | 0.0000069 ETH | ||||
20535132 | 103 days ago | 0.0009931 ETH | ||||
20535132 | 103 days ago | 0.0000069 ETH | ||||
20535116 | 103 days ago | 0.0009931 ETH | ||||
20535116 | 103 days ago | 0.0000069 ETH | ||||
20534424 | 103 days ago | 0.00049655 ETH | ||||
20534424 | 103 days ago | 0.00000345 ETH | ||||
20533996 | 103 days ago | 0.00049655 ETH | ||||
20533996 | 103 days ago | 0.00000345 ETH | ||||
20520719 | 105 days ago | 0.00049655 ETH | ||||
20520719 | 105 days ago | 0.00000345 ETH | ||||
20520291 | 105 days ago | 0.0009931 ETH | ||||
20520291 | 105 days ago | 0.0000069 ETH | ||||
20519887 | 105 days ago | 0.00049655 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
TestB
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import {IPool} from "@aave/core-v3/contracts/interfaces/IPool.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; interface IERC20 { function balanceOf(address account) external view returns (uint256); function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function wrap(uint256 _stETHAmount) external returns (uint256); function unwrap(uint256 _wstETHAmount) external returns (uint256); function depositETH( address, address onBehalfOf, uint16 referralCode ) external payable; function withdrawETH(address, uint256 amount, address to) external payable; function withdraw(uint wad) external; } interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function approve(address spender, uint256 value) external returns (bool); } error TestB__SameAsBefore(uint256 tax); error TestB__NotEnoughBalance(); error TestB__ValueCantBeZero(); error TestB__TransferFailed(); error TestB__NotEnoughCollatoral(uint256 _amount); error TestB__InvalidAddress(); error TestB__TransactionFailed(); contract TestB is Ownable { ///////////////////////////////////////////State Variables/////////////////////////////////////////////////////////////////// uint256 private plateFormfee; address payable private immutable SPLITTER; address public constant POOL = 0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2; address public constant stEth = 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84; address public constant wstEth = 0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0; address public constant oneInchRouter = 0x1111111254EEB25477B68fb85Ed929f73A960582; address public constant ethAddr = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; address public constant WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; address public constant WETHGate = 0xD322A49006FC828F9B5B37Ab215F99B4E5caB19C; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); receive() external payable {} constructor( uint256 _tax, address payable _splitter, address _treasury ) Ownable(_treasury) { plateFormfee = _tax; SPLITTER = _splitter; } ////////////////////////////////////////////Main Functions/////////////////////////////////////////////////////////////////// ///@notice Supplies an `amount` of underlying asset into the reserve, receiving in return overlying aTokens using AAVE Protocol /// @param _token The address of the underlying asset to supply /// @param _amount The amount to be supplied function lendTokenOnAave(address _token, uint256 _amount) external payable { if (_isNative(_token)) { uint256 amount_ = msg.value; if (amount_ == 0) revert TestB__ValueCantBeZero(); (uint256 _amountAfterFee, uint256 _fee) = _calculationForFee( amount_ ); _sendETH(_fee); IERC20(WETHGate).depositETH{value: _amountAfterFee}( address(0), _msgSender(), 0 ); } else { IERC20 _helper = IERC20(_token); if (_amount > _helper.balanceOf(_msgSender())) revert TestB__NotEnoughBalance(); _helper.transferFrom(_msgSender(), address(this), _amount); (uint256 _amountAfterFee, uint256 _fee) = _calculationForFee( _amount ); _helper.transfer(SPLITTER, _fee); if (_token == stEth) { _token = wstEth; _helper.approve(_token, _amountAfterFee); _helper = IERC20(_token); uint256 res = _helper.wrap(_amountAfterFee); _amountAfterFee = res; } _helper.approve(POOL, _amountAfterFee); IPool(POOL).supply(_token, _amountAfterFee, _msgSender(), 0); } } /// @notice Withdraws an `amount` of underlying asset from the reserve, burning the equivalent aTokens owned using AAVE Protocol /// @param _asset The address of the underlying asset to withdraw /// @param _amount The underlying amount to be withdrawn function withdrawCollateral(address _asset, uint256 _amount) external { if (_asset == address(0)) revert TestB__InvalidAddress(); address _stEth = stEth; address _wstEth = wstEth; address _WETH = WETH; address _pool = POOL; _asset = _asset == _stEth ? _wstEth : _asset; address aTokenAddress = IPool(_pool) .getReserveData(_asset) .aTokenAddress; IERC20 _helper = IERC20(aTokenAddress); if (_amount > _helper.balanceOf(_msgSender())) revert TestB__NotEnoughBalance(); _helper.transferFrom(_msgSender(), address(this), _amount); _asset == _WETH ? _helper.approve(WETHGate, _amount) : _helper.approve(_pool, _amount); if (_asset == _WETH) { (uint256 _amountAfterFee, uint256 _fee) = _calculationForFee( _amount ); IERC20(WETHGate).withdrawETH(_asset, _amountAfterFee, _msgSender()); IERC20(WETHGate).withdrawETH(_asset, _fee, SPLITTER); } else { uint256 amount = IPool(_pool).withdraw( _asset, _amount, address(this) ); if (_asset == _wstEth) { uint256 value = IERC20(_wstEth).unwrap(amount); IERC20 helper_ = IERC20(_stEth); (uint256 _amountAfterFee, uint256 _fee) = _calculationForFee( value ); helper_.transfer(_msgSender(), _amountAfterFee); helper_.transfer(SPLITTER, _fee); } else { IERC20 helper_ = IERC20(_asset); (uint256 _amountAfterFee, uint256 _fee) = _calculationForFee( amount ); helper_.transfer(_msgSender(), _amountAfterFee); helper_.transfer(SPLITTER, _fee); } } } /// @notice Allows users to borrow a specific `amount` of the reserve underlying asset, provided that the borrower using AAVE Protocol /// @param _asset The address of the underlying asset to borrow /// @param _amount The amount to be borrowed function borrowOnAave( address _asset, uint256 _amount, uint256 interestRateMode ) external { IERC20 _helper = IERC20(_asset); IPool(POOL).borrow(_asset, _amount, interestRateMode, 0, _msgSender()); (uint256 _amountAfterFee, uint256 _fee) = _calculationForFee(_amount); _helper.transfer(_msgSender(), _amountAfterFee); _helper.transfer(SPLITTER, _fee); } /// @notice Repays a borrowed `amount` on a specific reserve, burning the equivalent debt tokens owned using AAVE Protocol /// @param _asset The address of the borrowed underlying asset previously borrowed /// @param _interestRateMode The interest rate mode at of the debt the user wants to repay: 1 for Stable, 2 for Variable /// @param _amount The amount to repay function repayDebt( address _asset, uint256 _interestRateMode, uint256 _amount ) external payable { if (_asset == address(0)) revert TestB__InvalidAddress(); IERC20 _helper = IERC20(_asset); address _pool = POOL; if (_amount > _helper.balanceOf(_msgSender())) revert TestB__NotEnoughBalance(); _helper.transferFrom(_msgSender(), address(this), _amount); (uint256 _amountAfterFee, uint256 _fee) = _calculationForFee(_amount); _helper.transfer(SPLITTER, _fee); _helper.approve(_pool, _amountAfterFee); IPool(_pool).repay( _asset, _amountAfterFee, _interestRateMode, _msgSender() ); uint256 amountToBeGiven = _amount - (_amountAfterFee + _fee); if (amountToBeGiven > 0) { _helper.transfer(_msgSender(), amountToBeGiven); } } /// @notice @notice Performs a swap, delegating all calls encoded in `data` to `executor` using 1inch Protocol /// @param _fromToken The address of the token with which you want to swap /// @param _amount The amount to swap /// @param _oneInchDataParam Encoded calls that `caller` should execute in between of swaps function oneInchSwap( address _fromToken, uint256 _amount, bytes calldata _oneInchDataParam ) external payable { _amount = msg.value > 0 ? msg.value : _amount; (uint256 _amountAfterFee, uint256 _fee) = _calculationForFee(_amount); if (_isNative(_fromToken)) { _sendETH(_fee); } else { IERC20 _helper = IERC20(_fromToken); if (_amount > _helper.balanceOf(_msgSender())) revert TestB__NotEnoughBalance(); _helper.transferFrom(_msgSender(), address(this), _amount); _helper.approve(oneInchRouter, _amount); _helper.transfer(SPLITTER, _fee); } uint256 amountToBeSent = msg.value > 0 ? _amountAfterFee : 0; (bool success, ) = oneInchRouter.call{value: amountToBeSent}( _oneInchDataParam ); if (!success) revert TestB__TransactionFailed(); } /// @notice Do the calculation for fee deduction /// @dev Private function only for contract /// @param _amount The amount from which the fee will deduct /// @return _amountAfterFee The amount after fee deduction /// @return _fee The amount which is deducted by the contract in terms of fee function _calculationForFee( uint256 _amount ) private view returns (uint256 _amountAfterFee, uint256 _fee) { _fee = (_amount * plateFormfee) / 10000; _amountAfterFee = _amount - _fee; } /// @notice Use to send ethereum to the SPLITTER /// @dev Private function only for contract /// @param _amount The amount which will send to the SPLITTER function _sendETH(uint256 _amount) private { (bool success, ) = SPLITTER.call{value: _amount}(""); if (!success) revert TestB__TransferFailed(); } /////////////////////////////////////////Only Owner Functions/////////////////////////////////////////////////////////////////// /// @notice Change the fee percentage of platform /// @dev Ristrict to only owner of the contract /// @param _newPlateFormfee New fee in the form of bips function changeTax(uint256 _newPlateFormfee) external onlyOwner { require(_newPlateFormfee < 10000, "Tax can't be 100%"); if (getPlateFormfee() == _newPlateFormfee) revert TestB__SameAsBefore(getPlateFormfee()); plateFormfee = _newPlateFormfee; } ///////////////////////////////////////////View Functions/////////////////////////////////////////////////////////////////// /// @notice Tell either the asset is eth or not /// @dev Returns Boolean Value. /// @param _token The asset which you want to check /// @return bool true if asset is eth function _isNative(address _token) internal pure returns (bool) { return (_token == address(0) || _token == ethAddr); } /// @notice Tell the fee of PlateForm /// @dev Returns bips. e.g 69 ==> 0.69% /// @return plateFormfee in bips function getPlateFormfee() public view returns (uint256) { return plateFormfee; } /// @notice Tell the fee wallet address /// @dev Returns wallet address in which fee will send /// @return SPLITTER address function getWallet() public view returns (address) { return SPLITTER; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: AGPL-3.0 pragma solidity ^0.8.0; import {IPoolAddressesProvider} from './IPoolAddressesProvider.sol'; import {DataTypes} from '../protocol/libraries/types/DataTypes.sol'; /** * @title IPool * @author Aave * @notice Defines the basic interface for an Aave Pool. */ interface IPool { /** * @dev Emitted on mintUnbacked() * @param reserve The address of the underlying asset of the reserve * @param user The address initiating the supply * @param onBehalfOf The beneficiary of the supplied assets, receiving the aTokens * @param amount The amount of supplied assets * @param referralCode The referral code used */ event MintUnbacked( address indexed reserve, address user, address indexed onBehalfOf, uint256 amount, uint16 indexed referralCode ); /** * @dev Emitted on backUnbacked() * @param reserve The address of the underlying asset of the reserve * @param backer The address paying for the backing * @param amount The amount added as backing * @param fee The amount paid in fees */ event BackUnbacked(address indexed reserve, address indexed backer, uint256 amount, uint256 fee); /** * @dev Emitted on supply() * @param reserve The address of the underlying asset of the reserve * @param user The address initiating the supply * @param onBehalfOf The beneficiary of the supply, receiving the aTokens * @param amount The amount supplied * @param referralCode The referral code used */ event Supply( address indexed reserve, address user, address indexed onBehalfOf, uint256 amount, uint16 indexed referralCode ); /** * @dev Emitted on withdraw() * @param reserve The address of the underlying asset being withdrawn * @param user The address initiating the withdrawal, owner of aTokens * @param to The address that will receive the underlying * @param amount The amount to be withdrawn */ event Withdraw(address indexed reserve, address indexed user, address indexed to, uint256 amount); /** * @dev Emitted on borrow() and flashLoan() when debt needs to be opened * @param reserve The address of the underlying asset being borrowed * @param user The address of the user initiating the borrow(), receiving the funds on borrow() or just * initiator of the transaction on flashLoan() * @param onBehalfOf The address that will be getting the debt * @param amount The amount borrowed out * @param interestRateMode The rate mode: 1 for Stable, 2 for Variable * @param borrowRate The numeric rate at which the user has borrowed, expressed in ray * @param referralCode The referral code used */ event Borrow( address indexed reserve, address user, address indexed onBehalfOf, uint256 amount, DataTypes.InterestRateMode interestRateMode, uint256 borrowRate, uint16 indexed referralCode ); /** * @dev Emitted on repay() * @param reserve The address of the underlying asset of the reserve * @param user The beneficiary of the repayment, getting his debt reduced * @param repayer The address of the user initiating the repay(), providing the funds * @param amount The amount repaid * @param useATokens True if the repayment is done using aTokens, `false` if done with underlying asset directly */ event Repay( address indexed reserve, address indexed user, address indexed repayer, uint256 amount, bool useATokens ); /** * @dev Emitted on swapBorrowRateMode() * @param reserve The address of the underlying asset of the reserve * @param user The address of the user swapping his rate mode * @param interestRateMode The current interest rate mode of the position being swapped: 1 for Stable, 2 for Variable */ event SwapBorrowRateMode( address indexed reserve, address indexed user, DataTypes.InterestRateMode interestRateMode ); /** * @dev Emitted on borrow(), repay() and liquidationCall() when using isolated assets * @param asset The address of the underlying asset of the reserve * @param totalDebt The total isolation mode debt for the reserve */ event IsolationModeTotalDebtUpdated(address indexed asset, uint256 totalDebt); /** * @dev Emitted when the user selects a certain asset category for eMode * @param user The address of the user * @param categoryId The category id */ event UserEModeSet(address indexed user, uint8 categoryId); /** * @dev Emitted on setUserUseReserveAsCollateral() * @param reserve The address of the underlying asset of the reserve * @param user The address of the user enabling the usage as collateral */ event ReserveUsedAsCollateralEnabled(address indexed reserve, address indexed user); /** * @dev Emitted on setUserUseReserveAsCollateral() * @param reserve The address of the underlying asset of the reserve * @param user The address of the user enabling the usage as collateral */ event ReserveUsedAsCollateralDisabled(address indexed reserve, address indexed user); /** * @dev Emitted on rebalanceStableBorrowRate() * @param reserve The address of the underlying asset of the reserve * @param user The address of the user for which the rebalance has been executed */ event RebalanceStableBorrowRate(address indexed reserve, address indexed user); /** * @dev Emitted on flashLoan() * @param target The address of the flash loan receiver contract * @param initiator The address initiating the flash loan * @param asset The address of the asset being flash borrowed * @param amount The amount flash borrowed * @param interestRateMode The flashloan mode: 0 for regular flashloan, 1 for Stable debt, 2 for Variable debt * @param premium The fee flash borrowed * @param referralCode The referral code used */ event FlashLoan( address indexed target, address initiator, address indexed asset, uint256 amount, DataTypes.InterestRateMode interestRateMode, uint256 premium, uint16 indexed referralCode ); /** * @dev Emitted when a borrower is liquidated. * @param collateralAsset The address of the underlying asset used as collateral, to receive as result of the liquidation * @param debtAsset The address of the underlying borrowed asset to be repaid with the liquidation * @param user The address of the borrower getting liquidated * @param debtToCover The debt amount of borrowed `asset` the liquidator wants to cover * @param liquidatedCollateralAmount The amount of collateral received by the liquidator * @param liquidator The address of the liquidator * @param receiveAToken True if the liquidators wants to receive the collateral aTokens, `false` if he wants * to receive the underlying collateral asset directly */ event LiquidationCall( address indexed collateralAsset, address indexed debtAsset, address indexed user, uint256 debtToCover, uint256 liquidatedCollateralAmount, address liquidator, bool receiveAToken ); /** * @dev Emitted when the state of a reserve is updated. * @param reserve The address of the underlying asset of the reserve * @param liquidityRate The next liquidity rate * @param stableBorrowRate The next stable borrow rate * @param variableBorrowRate The next variable borrow rate * @param liquidityIndex The next liquidity index * @param variableBorrowIndex The next variable borrow index */ event ReserveDataUpdated( address indexed reserve, uint256 liquidityRate, uint256 stableBorrowRate, uint256 variableBorrowRate, uint256 liquidityIndex, uint256 variableBorrowIndex ); /** * @dev Emitted when the protocol treasury receives minted aTokens from the accrued interest. * @param reserve The address of the reserve * @param amountMinted The amount minted to the treasury */ event MintedToTreasury(address indexed reserve, uint256 amountMinted); /** * @notice Mints an `amount` of aTokens to the `onBehalfOf` * @param asset The address of the underlying asset to mint * @param amount The amount to mint * @param onBehalfOf The address that will receive the aTokens * @param referralCode Code used to register the integrator originating the operation, for potential rewards. * 0 if the action is executed directly by the user, without any middle-man */ function mintUnbacked( address asset, uint256 amount, address onBehalfOf, uint16 referralCode ) external; /** * @notice Back the current unbacked underlying with `amount` and pay `fee`. * @param asset The address of the underlying asset to back * @param amount The amount to back * @param fee The amount paid in fees * @return The backed amount */ function backUnbacked(address asset, uint256 amount, uint256 fee) external returns (uint256); /** * @notice Supplies an `amount` of underlying asset into the reserve, receiving in return overlying aTokens. * - E.g. User supplies 100 USDC and gets in return 100 aUSDC * @param asset The address of the underlying asset to supply * @param amount The amount to be supplied * @param onBehalfOf The address that will receive the aTokens, same as msg.sender if the user * wants to receive them on his own wallet, or a different address if the beneficiary of aTokens * is a different wallet * @param referralCode Code used to register the integrator originating the operation, for potential rewards. * 0 if the action is executed directly by the user, without any middle-man */ function supply(address asset, uint256 amount, address onBehalfOf, uint16 referralCode) external; /** * @notice Supply with transfer approval of asset to be supplied done via permit function * see: https://eips.ethereum.org/EIPS/eip-2612 and https://eips.ethereum.org/EIPS/eip-713 * @param asset The address of the underlying asset to supply * @param amount The amount to be supplied * @param onBehalfOf The address that will receive the aTokens, same as msg.sender if the user * wants to receive them on his own wallet, or a different address if the beneficiary of aTokens * is a different wallet * @param deadline The deadline timestamp that the permit is valid * @param referralCode Code used to register the integrator originating the operation, for potential rewards. * 0 if the action is executed directly by the user, without any middle-man * @param permitV The V parameter of ERC712 permit sig * @param permitR The R parameter of ERC712 permit sig * @param permitS The S parameter of ERC712 permit sig */ function supplyWithPermit( address asset, uint256 amount, address onBehalfOf, uint16 referralCode, uint256 deadline, uint8 permitV, bytes32 permitR, bytes32 permitS ) external; /** * @notice Withdraws an `amount` of underlying asset from the reserve, burning the equivalent aTokens owned * E.g. User has 100 aUSDC, calls withdraw() and receives 100 USDC, burning the 100 aUSDC * @param asset The address of the underlying asset to withdraw * @param amount The underlying amount to be withdrawn * - Send the value type(uint256).max in order to withdraw the whole aToken balance * @param to The address that will receive the underlying, same as msg.sender if the user * wants to receive it on his own wallet, or a different address if the beneficiary is a * different wallet * @return The final amount withdrawn */ function withdraw(address asset, uint256 amount, address to) external returns (uint256); /** * @notice Allows users to borrow a specific `amount` of the reserve underlying asset, provided that the borrower * already supplied enough collateral, or he was given enough allowance by a credit delegator on the * corresponding debt token (StableDebtToken or VariableDebtToken) * - E.g. User borrows 100 USDC passing as `onBehalfOf` his own address, receiving the 100 USDC in his wallet * and 100 stable/variable debt tokens, depending on the `interestRateMode` * @param asset The address of the underlying asset to borrow * @param amount The amount to be borrowed * @param interestRateMode The interest rate mode at which the user wants to borrow: 1 for Stable, 2 for Variable * @param referralCode The code used to register the integrator originating the operation, for potential rewards. * 0 if the action is executed directly by the user, without any middle-man * @param onBehalfOf The address of the user who will receive the debt. Should be the address of the borrower itself * calling the function if he wants to borrow against his own collateral, or the address of the credit delegator * if he has been given credit delegation allowance */ function borrow( address asset, uint256 amount, uint256 interestRateMode, uint16 referralCode, address onBehalfOf ) external; /** * @notice Repays a borrowed `amount` on a specific reserve, burning the equivalent debt tokens owned * - E.g. User repays 100 USDC, burning 100 variable/stable debt tokens of the `onBehalfOf` address * @param asset The address of the borrowed underlying asset previously borrowed * @param amount The amount to repay * - Send the value type(uint256).max in order to repay the whole debt for `asset` on the specific `debtMode` * @param interestRateMode The interest rate mode at of the debt the user wants to repay: 1 for Stable, 2 for Variable * @param onBehalfOf The address of the user who will get his debt reduced/removed. Should be the address of the * user calling the function if he wants to reduce/remove his own debt, or the address of any other * other borrower whose debt should be removed * @return The final amount repaid */ function repay( address asset, uint256 amount, uint256 interestRateMode, address onBehalfOf ) external returns (uint256); /** * @notice Repay with transfer approval of asset to be repaid done via permit function * see: https://eips.ethereum.org/EIPS/eip-2612 and https://eips.ethereum.org/EIPS/eip-713 * @param asset The address of the borrowed underlying asset previously borrowed * @param amount The amount to repay * - Send the value type(uint256).max in order to repay the whole debt for `asset` on the specific `debtMode` * @param interestRateMode The interest rate mode at of the debt the user wants to repay: 1 for Stable, 2 for Variable * @param onBehalfOf Address of the user who will get his debt reduced/removed. Should be the address of the * user calling the function if he wants to reduce/remove his own debt, or the address of any other * other borrower whose debt should be removed * @param deadline The deadline timestamp that the permit is valid * @param permitV The V parameter of ERC712 permit sig * @param permitR The R parameter of ERC712 permit sig * @param permitS The S parameter of ERC712 permit sig * @return The final amount repaid */ function repayWithPermit( address asset, uint256 amount, uint256 interestRateMode, address onBehalfOf, uint256 deadline, uint8 permitV, bytes32 permitR, bytes32 permitS ) external returns (uint256); /** * @notice Repays a borrowed `amount` on a specific reserve using the reserve aTokens, burning the * equivalent debt tokens * - E.g. User repays 100 USDC using 100 aUSDC, burning 100 variable/stable debt tokens * @dev Passing uint256.max as amount will clean up any residual aToken dust balance, if the user aToken * balance is not enough to cover the whole debt * @param asset The address of the borrowed underlying asset previously borrowed * @param amount The amount to repay * - Send the value type(uint256).max in order to repay the whole debt for `asset` on the specific `debtMode` * @param interestRateMode The interest rate mode at of the debt the user wants to repay: 1 for Stable, 2 for Variable * @return The final amount repaid */ function repayWithATokens( address asset, uint256 amount, uint256 interestRateMode ) external returns (uint256); /** * @notice Allows a borrower to swap his debt between stable and variable mode, or vice versa * @param asset The address of the underlying asset borrowed * @param interestRateMode The current interest rate mode of the position being swapped: 1 for Stable, 2 for Variable */ function swapBorrowRateMode(address asset, uint256 interestRateMode) external; /** * @notice Rebalances the stable interest rate of a user to the current stable rate defined on the reserve. * - Users can be rebalanced if the following conditions are satisfied: * 1. Usage ratio is above 95% * 2. the current supply APY is below REBALANCE_UP_THRESHOLD * maxVariableBorrowRate, which means that too * much has been borrowed at a stable rate and suppliers are not earning enough * @param asset The address of the underlying asset borrowed * @param user The address of the user to be rebalanced */ function rebalanceStableBorrowRate(address asset, address user) external; /** * @notice Allows suppliers to enable/disable a specific supplied asset as collateral * @param asset The address of the underlying asset supplied * @param useAsCollateral True if the user wants to use the supply as collateral, false otherwise */ function setUserUseReserveAsCollateral(address asset, bool useAsCollateral) external; /** * @notice Function to liquidate a non-healthy position collateral-wise, with Health Factor below 1 * - The caller (liquidator) covers `debtToCover` amount of debt of the user getting liquidated, and receives * a proportionally amount of the `collateralAsset` plus a bonus to cover market risk * @param collateralAsset The address of the underlying asset used as collateral, to receive as result of the liquidation * @param debtAsset The address of the underlying borrowed asset to be repaid with the liquidation * @param user The address of the borrower getting liquidated * @param debtToCover The debt amount of borrowed `asset` the liquidator wants to cover * @param receiveAToken True if the liquidators wants to receive the collateral aTokens, `false` if he wants * to receive the underlying collateral asset directly */ function liquidationCall( address collateralAsset, address debtAsset, address user, uint256 debtToCover, bool receiveAToken ) external; /** * @notice Allows smartcontracts to access the liquidity of the pool within one transaction, * as long as the amount taken plus a fee is returned. * @dev IMPORTANT There are security concerns for developers of flashloan receiver contracts that must be kept * into consideration. For further details please visit https://docs.aave.com/developers/ * @param receiverAddress The address of the contract receiving the funds, implementing IFlashLoanReceiver interface * @param assets The addresses of the assets being flash-borrowed * @param amounts The amounts of the assets being flash-borrowed * @param interestRateModes Types of the debt to open if the flash loan is not returned: * 0 -> Don't open any debt, just revert if funds can't be transferred from the receiver * 1 -> Open debt at stable rate for the value of the amount flash-borrowed to the `onBehalfOf` address * 2 -> Open debt at variable rate for the value of the amount flash-borrowed to the `onBehalfOf` address * @param onBehalfOf The address that will receive the debt in the case of using on `modes` 1 or 2 * @param params Variadic packed params to pass to the receiver as extra information * @param referralCode The code used to register the integrator originating the operation, for potential rewards. * 0 if the action is executed directly by the user, without any middle-man */ function flashLoan( address receiverAddress, address[] calldata assets, uint256[] calldata amounts, uint256[] calldata interestRateModes, address onBehalfOf, bytes calldata params, uint16 referralCode ) external; /** * @notice Allows smartcontracts to access the liquidity of the pool within one transaction, * as long as the amount taken plus a fee is returned. * @dev IMPORTANT There are security concerns for developers of flashloan receiver contracts that must be kept * into consideration. For further details please visit https://docs.aave.com/developers/ * @param receiverAddress The address of the contract receiving the funds, implementing IFlashLoanSimpleReceiver interface * @param asset The address of the asset being flash-borrowed * @param amount The amount of the asset being flash-borrowed * @param params Variadic packed params to pass to the receiver as extra information * @param referralCode The code used to register the integrator originating the operation, for potential rewards. * 0 if the action is executed directly by the user, without any middle-man */ function flashLoanSimple( address receiverAddress, address asset, uint256 amount, bytes calldata params, uint16 referralCode ) external; /** * @notice Returns the user account data across all the reserves * @param user The address of the user * @return totalCollateralBase The total collateral of the user in the base currency used by the price feed * @return totalDebtBase The total debt of the user in the base currency used by the price feed * @return availableBorrowsBase The borrowing power left of the user in the base currency used by the price feed * @return currentLiquidationThreshold The liquidation threshold of the user * @return ltv The loan to value of The user * @return healthFactor The current health factor of the user */ function getUserAccountData( address user ) external view returns ( uint256 totalCollateralBase, uint256 totalDebtBase, uint256 availableBorrowsBase, uint256 currentLiquidationThreshold, uint256 ltv, uint256 healthFactor ); /** * @notice Initializes a reserve, activating it, assigning an aToken and debt tokens and an * interest rate strategy * @dev Only callable by the PoolConfigurator contract * @param asset The address of the underlying asset of the reserve * @param aTokenAddress The address of the aToken that will be assigned to the reserve * @param stableDebtAddress The address of the StableDebtToken that will be assigned to the reserve * @param variableDebtAddress The address of the VariableDebtToken that will be assigned to the reserve * @param interestRateStrategyAddress The address of the interest rate strategy contract */ function initReserve( address asset, address aTokenAddress, address stableDebtAddress, address variableDebtAddress, address interestRateStrategyAddress ) external; /** * @notice Drop a reserve * @dev Only callable by the PoolConfigurator contract * @param asset The address of the underlying asset of the reserve */ function dropReserve(address asset) external; /** * @notice Updates the address of the interest rate strategy contract * @dev Only callable by the PoolConfigurator contract * @param asset The address of the underlying asset of the reserve * @param rateStrategyAddress The address of the interest rate strategy contract */ function setReserveInterestRateStrategyAddress( address asset, address rateStrategyAddress ) external; /** * @notice Sets the configuration bitmap of the reserve as a whole * @dev Only callable by the PoolConfigurator contract * @param asset The address of the underlying asset of the reserve * @param configuration The new configuration bitmap */ function setConfiguration( address asset, DataTypes.ReserveConfigurationMap calldata configuration ) external; /** * @notice Returns the configuration of the reserve * @param asset The address of the underlying asset of the reserve * @return The configuration of the reserve */ function getConfiguration( address asset ) external view returns (DataTypes.ReserveConfigurationMap memory); /** * @notice Returns the configuration of the user across all the reserves * @param user The user address * @return The configuration of the user */ function getUserConfiguration( address user ) external view returns (DataTypes.UserConfigurationMap memory); /** * @notice Returns the normalized income of the reserve * @param asset The address of the underlying asset of the reserve * @return The reserve's normalized income */ function getReserveNormalizedIncome(address asset) external view returns (uint256); /** * @notice Returns the normalized variable debt per unit of asset * @dev WARNING: This function is intended to be used primarily by the protocol itself to get a * "dynamic" variable index based on time, current stored index and virtual rate at the current * moment (approx. a borrower would get if opening a position). This means that is always used in * combination with variable debt supply/balances. * If using this function externally, consider that is possible to have an increasing normalized * variable debt that is not equivalent to how the variable debt index would be updated in storage * (e.g. only updates with non-zero variable debt supply) * @param asset The address of the underlying asset of the reserve * @return The reserve normalized variable debt */ function getReserveNormalizedVariableDebt(address asset) external view returns (uint256); /** * @notice Returns the state and configuration of the reserve * @param asset The address of the underlying asset of the reserve * @return The state and configuration data of the reserve */ function getReserveData(address asset) external view returns (DataTypes.ReserveData memory); /** * @notice Validates and finalizes an aToken transfer * @dev Only callable by the overlying aToken of the `asset` * @param asset The address of the underlying asset of the aToken * @param from The user from which the aTokens are transferred * @param to The user receiving the aTokens * @param amount The amount being transferred/withdrawn * @param balanceFromBefore The aToken balance of the `from` user before the transfer * @param balanceToBefore The aToken balance of the `to` user before the transfer */ function finalizeTransfer( address asset, address from, address to, uint256 amount, uint256 balanceFromBefore, uint256 balanceToBefore ) external; /** * @notice Returns the list of the underlying assets of all the initialized reserves * @dev It does not include dropped reserves * @return The addresses of the underlying assets of the initialized reserves */ function getReservesList() external view returns (address[] memory); /** * @notice Returns the address of the underlying asset of a reserve by the reserve id as stored in the DataTypes.ReserveData struct * @param id The id of the reserve as stored in the DataTypes.ReserveData struct * @return The address of the reserve associated with id */ function getReserveAddressById(uint16 id) external view returns (address); /** * @notice Returns the PoolAddressesProvider connected to this contract * @return The address of the PoolAddressesProvider */ function ADDRESSES_PROVIDER() external view returns (IPoolAddressesProvider); /** * @notice Updates the protocol fee on the bridging * @param bridgeProtocolFee The part of the premium sent to the protocol treasury */ function updateBridgeProtocolFee(uint256 bridgeProtocolFee) external; /** * @notice Updates flash loan premiums. Flash loan premium consists of two parts: * - A part is sent to aToken holders as extra, one time accumulated interest * - A part is collected by the protocol treasury * @dev The total premium is calculated on the total borrowed amount * @dev The premium to protocol is calculated on the total premium, being a percentage of `flashLoanPremiumTotal` * @dev Only callable by the PoolConfigurator contract * @param flashLoanPremiumTotal The total premium, expressed in bps * @param flashLoanPremiumToProtocol The part of the premium sent to the protocol treasury, expressed in bps */ function updateFlashloanPremiums( uint128 flashLoanPremiumTotal, uint128 flashLoanPremiumToProtocol ) external; /** * @notice Configures a new category for the eMode. * @dev In eMode, the protocol allows very high borrowing power to borrow assets of the same category. * The category 0 is reserved as it's the default for volatile assets * @param id The id of the category * @param config The configuration of the category */ function configureEModeCategory(uint8 id, DataTypes.EModeCategory memory config) external; /** * @notice Returns the data of an eMode category * @param id The id of the category * @return The configuration data of the category */ function getEModeCategoryData(uint8 id) external view returns (DataTypes.EModeCategory memory); /** * @notice Allows a user to use the protocol in eMode * @param categoryId The id of the category */ function setUserEMode(uint8 categoryId) external; /** * @notice Returns the eMode the user is using * @param user The address of the user * @return The eMode id */ function getUserEMode(address user) external view returns (uint256); /** * @notice Resets the isolation mode total debt of the given asset to zero * @dev It requires the given asset has zero debt ceiling * @param asset The address of the underlying asset to reset the isolationModeTotalDebt */ function resetIsolationModeTotalDebt(address asset) external; /** * @notice Returns the percentage of available liquidity that can be borrowed at once at stable rate * @return The percentage of available liquidity to borrow, expressed in bps */ function MAX_STABLE_RATE_BORROW_SIZE_PERCENT() external view returns (uint256); /** * @notice Returns the total fee on flash loans * @return The total fee on flashloans */ function FLASHLOAN_PREMIUM_TOTAL() external view returns (uint128); /** * @notice Returns the part of the bridge fees sent to protocol * @return The bridge fee sent to the protocol treasury */ function BRIDGE_PROTOCOL_FEE() external view returns (uint256); /** * @notice Returns the part of the flashloan fees sent to protocol * @return The flashloan fee sent to the protocol treasury */ function FLASHLOAN_PREMIUM_TO_PROTOCOL() external view returns (uint128); /** * @notice Returns the maximum number of reserves supported to be listed in this Pool * @return The maximum number of reserves supported */ function MAX_NUMBER_RESERVES() external view returns (uint16); /** * @notice Mints the assets accrued through the reserve factor to the treasury in the form of aTokens * @param assets The list of reserves for which the minting needs to be executed */ function mintToTreasury(address[] calldata assets) external; /** * @notice Rescue and transfer tokens locked in this contract * @param token The address of the token * @param to The address of the recipient * @param amount The amount of token to transfer */ function rescueTokens(address token, address to, uint256 amount) external; /** * @notice Supplies an `amount` of underlying asset into the reserve, receiving in return overlying aTokens. * - E.g. User supplies 100 USDC and gets in return 100 aUSDC * @dev Deprecated: Use the `supply` function instead * @param asset The address of the underlying asset to supply * @param amount The amount to be supplied * @param onBehalfOf The address that will receive the aTokens, same as msg.sender if the user * wants to receive them on his own wallet, or a different address if the beneficiary of aTokens * is a different wallet * @param referralCode Code used to register the integrator originating the operation, for potential rewards. * 0 if the action is executed directly by the user, without any middle-man */ function deposit(address asset, uint256 amount, address onBehalfOf, uint16 referralCode) external; }
// 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: BUSL-1.1 pragma solidity ^0.8.0; library DataTypes { struct ReserveData { //stores the reserve configuration ReserveConfigurationMap configuration; //the liquidity index. Expressed in ray uint128 liquidityIndex; //the current supply rate. Expressed in ray uint128 currentLiquidityRate; //variable borrow index. Expressed in ray uint128 variableBorrowIndex; //the current variable borrow rate. Expressed in ray uint128 currentVariableBorrowRate; //the current stable borrow rate. Expressed in ray uint128 currentStableBorrowRate; //timestamp of last update uint40 lastUpdateTimestamp; //the id of the reserve. Represents the position in the list of the active reserves uint16 id; //aToken address address aTokenAddress; //stableDebtToken address address stableDebtTokenAddress; //variableDebtToken address address variableDebtTokenAddress; //address of the interest rate strategy address interestRateStrategyAddress; //the current treasury balance, scaled uint128 accruedToTreasury; //the outstanding unbacked aTokens minted through the bridging feature uint128 unbacked; //the outstanding debt borrowed against this asset in isolation mode uint128 isolationModeTotalDebt; } struct ReserveConfigurationMap { //bit 0-15: LTV //bit 16-31: Liq. threshold //bit 32-47: Liq. bonus //bit 48-55: Decimals //bit 56: reserve is active //bit 57: reserve is frozen //bit 58: borrowing is enabled //bit 59: stable rate borrowing enabled //bit 60: asset is paused //bit 61: borrowing in isolation mode is enabled //bit 62-63: reserved //bit 64-79: reserve factor //bit 80-115 borrow cap in whole tokens, borrowCap == 0 => no cap //bit 116-151 supply cap in whole tokens, supplyCap == 0 => no cap //bit 152-167 liquidation protocol fee //bit 168-175 eMode category //bit 176-211 unbacked mint cap in whole tokens, unbackedMintCap == 0 => minting disabled //bit 212-251 debt ceiling for isolation mode with (ReserveConfiguration::DEBT_CEILING_DECIMALS) decimals //bit 252-255 unused uint256 data; } struct UserConfigurationMap { /** * @dev Bitmap of the users collaterals and borrows. It is divided in pairs of bits, one pair per asset. * The first bit indicates if an asset is used as collateral by the user, the second whether an * asset is borrowed by the user. */ uint256 data; } struct EModeCategory { // each eMode category has a custom ltv and liquidation threshold uint16 ltv; uint16 liquidationThreshold; uint16 liquidationBonus; // each eMode category may or may not have a custom oracle to override the individual assets price oracles address priceSource; string label; } enum InterestRateMode {NONE, STABLE, VARIABLE} struct ReserveCache { uint256 currScaledVariableDebt; uint256 nextScaledVariableDebt; uint256 currPrincipalStableDebt; uint256 currAvgStableBorrowRate; uint256 currTotalStableDebt; uint256 nextAvgStableBorrowRate; uint256 nextTotalStableDebt; uint256 currLiquidityIndex; uint256 nextLiquidityIndex; uint256 currVariableBorrowIndex; uint256 nextVariableBorrowIndex; uint256 currLiquidityRate; uint256 currVariableBorrowRate; uint256 reserveFactor; ReserveConfigurationMap reserveConfiguration; address aTokenAddress; address stableDebtTokenAddress; address variableDebtTokenAddress; uint40 reserveLastUpdateTimestamp; uint40 stableDebtLastUpdateTimestamp; } struct ExecuteLiquidationCallParams { uint256 reservesCount; uint256 debtToCover; address collateralAsset; address debtAsset; address user; bool receiveAToken; address priceOracle; uint8 userEModeCategory; address priceOracleSentinel; } struct ExecuteSupplyParams { address asset; uint256 amount; address onBehalfOf; uint16 referralCode; } struct ExecuteBorrowParams { address asset; address user; address onBehalfOf; uint256 amount; InterestRateMode interestRateMode; uint16 referralCode; bool releaseUnderlying; uint256 maxStableRateBorrowSizePercent; uint256 reservesCount; address oracle; uint8 userEModeCategory; address priceOracleSentinel; } struct ExecuteRepayParams { address asset; uint256 amount; InterestRateMode interestRateMode; address onBehalfOf; bool useATokens; } struct ExecuteWithdrawParams { address asset; uint256 amount; address to; uint256 reservesCount; address oracle; uint8 userEModeCategory; } struct ExecuteSetUserEModeParams { uint256 reservesCount; address oracle; uint8 categoryId; } struct FinalizeTransferParams { address asset; address from; address to; uint256 amount; uint256 balanceFromBefore; uint256 balanceToBefore; uint256 reservesCount; address oracle; uint8 fromEModeCategory; } struct FlashloanParams { address receiverAddress; address[] assets; uint256[] amounts; uint256[] interestRateModes; address onBehalfOf; bytes params; uint16 referralCode; uint256 flashLoanPremiumToProtocol; uint256 flashLoanPremiumTotal; uint256 maxStableRateBorrowSizePercent; uint256 reservesCount; address addressesProvider; uint8 userEModeCategory; bool isAuthorizedFlashBorrower; } struct FlashloanSimpleParams { address receiverAddress; address asset; uint256 amount; bytes params; uint16 referralCode; uint256 flashLoanPremiumToProtocol; uint256 flashLoanPremiumTotal; } struct FlashLoanRepaymentParams { uint256 amount; uint256 totalPremium; uint256 flashLoanPremiumToProtocol; address asset; address receiverAddress; uint16 referralCode; } struct CalculateUserAccountDataParams { UserConfigurationMap userConfig; uint256 reservesCount; address user; address oracle; uint8 userEModeCategory; } struct ValidateBorrowParams { ReserveCache reserveCache; UserConfigurationMap userConfig; address asset; address userAddress; uint256 amount; InterestRateMode interestRateMode; uint256 maxStableLoanPercent; uint256 reservesCount; address oracle; uint8 userEModeCategory; address priceOracleSentinel; bool isolationModeActive; address isolationModeCollateralAddress; uint256 isolationModeDebtCeiling; } struct ValidateLiquidationCallParams { ReserveCache debtReserveCache; uint256 totalDebt; uint256 healthFactor; address priceOracleSentinel; } struct CalculateInterestRatesParams { uint256 unbacked; uint256 liquidityAdded; uint256 liquidityTaken; uint256 totalStableDebt; uint256 totalVariableDebt; uint256 averageStableBorrowRate; uint256 reserveFactor; address reserve; address aToken; } struct InitReserveParams { address asset; address aTokenAddress; address stableDebtAddress; address variableDebtAddress; address interestRateStrategyAddress; uint16 reservesCount; uint16 maxNumberReserves; } }
// SPDX-License-Identifier: AGPL-3.0 pragma solidity ^0.8.0; /** * @title IPoolAddressesProvider * @author Aave * @notice Defines the basic interface for a Pool Addresses Provider. */ interface IPoolAddressesProvider { /** * @dev Emitted when the market identifier is updated. * @param oldMarketId The old id of the market * @param newMarketId The new id of the market */ event MarketIdSet(string indexed oldMarketId, string indexed newMarketId); /** * @dev Emitted when the pool is updated. * @param oldAddress The old address of the Pool * @param newAddress The new address of the Pool */ event PoolUpdated(address indexed oldAddress, address indexed newAddress); /** * @dev Emitted when the pool configurator is updated. * @param oldAddress The old address of the PoolConfigurator * @param newAddress The new address of the PoolConfigurator */ event PoolConfiguratorUpdated(address indexed oldAddress, address indexed newAddress); /** * @dev Emitted when the price oracle is updated. * @param oldAddress The old address of the PriceOracle * @param newAddress The new address of the PriceOracle */ event PriceOracleUpdated(address indexed oldAddress, address indexed newAddress); /** * @dev Emitted when the ACL manager is updated. * @param oldAddress The old address of the ACLManager * @param newAddress The new address of the ACLManager */ event ACLManagerUpdated(address indexed oldAddress, address indexed newAddress); /** * @dev Emitted when the ACL admin is updated. * @param oldAddress The old address of the ACLAdmin * @param newAddress The new address of the ACLAdmin */ event ACLAdminUpdated(address indexed oldAddress, address indexed newAddress); /** * @dev Emitted when the price oracle sentinel is updated. * @param oldAddress The old address of the PriceOracleSentinel * @param newAddress The new address of the PriceOracleSentinel */ event PriceOracleSentinelUpdated(address indexed oldAddress, address indexed newAddress); /** * @dev Emitted when the pool data provider is updated. * @param oldAddress The old address of the PoolDataProvider * @param newAddress The new address of the PoolDataProvider */ event PoolDataProviderUpdated(address indexed oldAddress, address indexed newAddress); /** * @dev Emitted when a new proxy is created. * @param id The identifier of the proxy * @param proxyAddress The address of the created proxy contract * @param implementationAddress The address of the implementation contract */ event ProxyCreated( bytes32 indexed id, address indexed proxyAddress, address indexed implementationAddress ); /** * @dev Emitted when a new non-proxied contract address is registered. * @param id The identifier of the contract * @param oldAddress The address of the old contract * @param newAddress The address of the new contract */ event AddressSet(bytes32 indexed id, address indexed oldAddress, address indexed newAddress); /** * @dev Emitted when the implementation of the proxy registered with id is updated * @param id The identifier of the contract * @param proxyAddress The address of the proxy contract * @param oldImplementationAddress The address of the old implementation contract * @param newImplementationAddress The address of the new implementation contract */ event AddressSetAsProxy( bytes32 indexed id, address indexed proxyAddress, address oldImplementationAddress, address indexed newImplementationAddress ); /** * @notice Returns the id of the Aave market to which this contract points to. * @return The market id */ function getMarketId() external view returns (string memory); /** * @notice Associates an id with a specific PoolAddressesProvider. * @dev This can be used to create an onchain registry of PoolAddressesProviders to * identify and validate multiple Aave markets. * @param newMarketId The market id */ function setMarketId(string calldata newMarketId) external; /** * @notice Returns an address by its identifier. * @dev The returned address might be an EOA or a contract, potentially proxied * @dev It returns ZERO if there is no registered address with the given id * @param id The id * @return The address of the registered for the specified id */ function getAddress(bytes32 id) external view returns (address); /** * @notice General function to update the implementation of a proxy registered with * certain `id`. If there is no proxy registered, it will instantiate one and * set as implementation the `newImplementationAddress`. * @dev IMPORTANT Use this function carefully, only for ids that don't have an explicit * setter function, in order to avoid unexpected consequences * @param id The id * @param newImplementationAddress The address of the new implementation */ function setAddressAsProxy(bytes32 id, address newImplementationAddress) external; /** * @notice Sets an address for an id replacing the address saved in the addresses map. * @dev IMPORTANT Use this function carefully, as it will do a hard replacement * @param id The id * @param newAddress The address to set */ function setAddress(bytes32 id, address newAddress) external; /** * @notice Returns the address of the Pool proxy. * @return The Pool proxy address */ function getPool() external view returns (address); /** * @notice Updates the implementation of the Pool, or creates a proxy * setting the new `pool` implementation when the function is called for the first time. * @param newPoolImpl The new Pool implementation */ function setPoolImpl(address newPoolImpl) external; /** * @notice Returns the address of the PoolConfigurator proxy. * @return The PoolConfigurator proxy address */ function getPoolConfigurator() external view returns (address); /** * @notice Updates the implementation of the PoolConfigurator, or creates a proxy * setting the new `PoolConfigurator` implementation when the function is called for the first time. * @param newPoolConfiguratorImpl The new PoolConfigurator implementation */ function setPoolConfiguratorImpl(address newPoolConfiguratorImpl) external; /** * @notice Returns the address of the price oracle. * @return The address of the PriceOracle */ function getPriceOracle() external view returns (address); /** * @notice Updates the address of the price oracle. * @param newPriceOracle The address of the new PriceOracle */ function setPriceOracle(address newPriceOracle) external; /** * @notice Returns the address of the ACL manager. * @return The address of the ACLManager */ function getACLManager() external view returns (address); /** * @notice Updates the address of the ACL manager. * @param newAclManager The address of the new ACLManager */ function setACLManager(address newAclManager) external; /** * @notice Returns the address of the ACL admin. * @return The address of the ACL admin */ function getACLAdmin() external view returns (address); /** * @notice Updates the address of the ACL admin. * @param newAclAdmin The address of the new ACL admin */ function setACLAdmin(address newAclAdmin) external; /** * @notice Returns the address of the price oracle sentinel. * @return The address of the PriceOracleSentinel */ function getPriceOracleSentinel() external view returns (address); /** * @notice Updates the address of the price oracle sentinel. * @param newPriceOracleSentinel The address of the new PriceOracleSentinel */ function setPriceOracleSentinel(address newPriceOracleSentinel) external; /** * @notice Returns the address of the data provider. * @return The address of the DataProvider */ function getPoolDataProvider() external view returns (address); /** * @notice Updates the address of the data provider. * @param newDataProvider The address of the new DataProvider */ function setPoolDataProvider(address newDataProvider) external; }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_tax","type":"uint256"},{"internalType":"address payable","name":"_splitter","type":"address"},{"internalType":"address","name":"_treasury","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"TestB__InvalidAddress","type":"error"},{"inputs":[],"name":"TestB__NotEnoughBalance","type":"error"},{"inputs":[{"internalType":"uint256","name":"tax","type":"uint256"}],"name":"TestB__SameAsBefore","type":"error"},{"inputs":[],"name":"TestB__TransactionFailed","type":"error"},{"inputs":[],"name":"TestB__TransferFailed","type":"error"},{"inputs":[],"name":"TestB__ValueCantBeZero","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"POOL","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETHGate","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"interestRateMode","type":"uint256"}],"name":"borrowOnAave","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPlateFormfee","type":"uint256"}],"name":"changeTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ethAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPlateFormfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"lendTokenOnAave","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"oneInchRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_fromToken","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_oneInchDataParam","type":"bytes"}],"name":"oneInchSwap","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"},{"internalType":"uint256","name":"_interestRateMode","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"repayDebt","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"stEth","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawCollateral","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wstEth","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052600280546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d17905534801562000036575f80fd5b5060405162001ff138038062001ff1833981016040819052620000599162000114565b806001600160a01b0381166200008857604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b6200009381620000ad565b50506001919091556001600160a01b031660805262000159565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038116811462000111575f80fd5b50565b5f805f6060848603121562000127575f80fd5b8351925060208401516200013b81620000fc565b60408501519092506200014e81620000fc565b809150509250925092565b608051611e47620001aa5f395f8181610143015281816107600152818161098301528181610aa001528181610c9301528181611036015281816112b30152818161173c01526119210152611e475ff3fe608060405260043610610108575f3560e01c80637535d24611610092578063a03017ec11610062578063a03017ec146102cc578063ac3af208146102df578063ad5c464814610306578063bbf646c21461032d578063f2fde38b14610354575f80fd5b80637535d2461461023b5780638da5cb5b1461026257806391815a981461027e57806399940ece146102a5575f80fd5b80633e45c8af116100d85780633e45c8af146101af578063487c5f86146101ce5780636f873026146101ed5780636fefa7e614610214578063715018a614610227575f80fd5b806302d2f0a8146101135780631329960414610135578063350c35e91461017b57806339a725741461019c575f80fd5b3661010f57005b5f80fd5b34801561011e575f80fd5b506001546040519081526020015b60405180910390f35b348015610140575f80fd5b507f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b03909116815260200161012c565b348015610186575f80fd5b5061019a610195366004611a11565b610373565b005b61019a6101aa366004611a3b565b610b1b565b3480156101ba575f80fd5b5061019a6101c9366004611a6d565b610e7f565b3480156101d9575f80fd5b5061019a6101e8366004611a3b565b610f04565b3480156101f8575f80fd5b5061016373d322a49006fc828f9b5b37ab215f99b4e5cab19c81565b61019a610222366004611a11565b6110a9565b348015610232575f80fd5b5061019a61153e565b348015610246575f80fd5b506101637387870bca3f3fd6335c3f4ce8392d69350b4fa4e281565b34801561026d575f80fd5b505f546001600160a01b0316610163565b348015610289575f80fd5b50610163737f39c581f595b53c5cb19bd0b3f8da6c935e2ca081565b3480156102b0575f80fd5b5061016373ae7ab96520de3a18e5e111b5eaab095312d7fe8481565b61019a6102da366004611a84565b611551565b3480156102ea575f80fd5b50610163731111111254eeb25477b68fb85ed929f73a96058281565b348015610311575f80fd5b5061016373c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b348015610338575f80fd5b5061016373eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee81565b34801561035f575f80fd5b5061019a61036e366004611b06565b61184c565b6001600160a01b03821661039a576040516386d7a5fb60e01b815260040160405180910390fd5b73ae7ab96520de3a18e5e111b5eaab095312d7fe84737f39c581f595b53c5cb19bd0b3f8da6c935e2ca073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc27387870bca3f3fd6335c3f4ce8392d69350b4fa4e26001600160a01b03861684146104045785610406565b825b6040516335ea6a7560e01b81526001600160a01b0380831660048301529197505f918316906335ea6a75906024016101e060405180830381865afa158015610450573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104749190611bfe565b61010001519050806001600160a01b0381166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156104ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104f29190611d1f565b87111561051257604051633cb6244560e01b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b038216906323b872dd9061054290339030908c90600401611d36565b6020604051808303815f875af115801561055e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105829190611d5a565b50836001600160a01b0316886001600160a01b03161461060f5760405163095ea7b360e01b81526001600160a01b0382169063095ea7b3906105ca9086908b90600401611d79565b6020604051808303815f875af11580156105e6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061060a9190611d5a565b610691565b60405163095ea7b360e01b81526001600160a01b0382169063095ea7b3906106519073d322a49006fc828f9b5b37ab215f99b4e5cab19c908b90600401611d79565b6020604051808303815f875af115801561066d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106919190611d5a565b50836001600160a01b0316886001600160a01b0316036107da575f806106b689611889565b909250905073d322a49006fc828f9b5b37ab215f99b4e5cab19c6380500d208b843360405160e085901b6001600160e01b03191681526001600160a01b039384166004820152602481019290925290911660448201526064015f604051808303815f87803b158015610726575f80fd5b505af1158015610738573d5f803e3d5ffd5b5050604051630402806960e51b81526001600160a01b03808e166004830152602482018590527f000000000000000000000000000000000000000000000000000000000000000016604482015273d322a49006fc828f9b5b37ab215f99b4e5cab19c92506380500d2091506064015f604051808303815f87803b1580156107bd575f80fd5b505af11580156107cf573d5f803e3d5ffd5b505050505050610b11565b604051631a4ca37b60e21b81526001600160a01b038981166004830152602482018990523060448301525f91908516906369328dec906064016020604051808303815f875af115801561082f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108539190611d1f565b9050856001600160a01b0316896001600160a01b0316036109f757604051636f074d1f60e11b8152600481018290525f906001600160a01b0388169063de0e9a3e906024016020604051808303815f875af11580156108b4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108d89190611d1f565b9050875f806108e684611889565b91509150826001600160a01b031663a9059cbb6109003390565b846040518363ffffffff1660e01b815260040161091e929190611d79565b6020604051808303815f875af115801561093a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061095e9190611d5a565b5060405163a9059cbb60e01b81526001600160a01b0384169063a9059cbb906109ad907f0000000000000000000000000000000000000000000000000000000000000000908590600401611d79565b6020604051808303815f875af11580156109c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109ed9190611d5a565b5050505050610b0f565b885f80610a0384611889565b91509150826001600160a01b031663a9059cbb610a1d3390565b846040518363ffffffff1660e01b8152600401610a3b929190611d79565b6020604051808303815f875af1158015610a57573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a7b9190611d5a565b5060405163a9059cbb60e01b81526001600160a01b0384169063a9059cbb90610aca907f0000000000000000000000000000000000000000000000000000000000000000908590600401611d79565b6020604051808303815f875af1158015610ae6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b0a9190611d5a565b505050505b505b5050505050505050565b6001600160a01b038316610b42576040516386d7a5fb60e01b815260040160405180910390fd5b827387870bca3f3fd6335c3f4ce8392d69350b4fa4e26001600160a01b0382166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015610baa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bce9190611d1f565b831115610bee57604051633cb6244560e01b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b038316906323b872dd90610c1e90339030908890600401611d36565b6020604051808303815f875af1158015610c3a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c5e9190611d5a565b505f80610c6a85611889565b60405163a9059cbb60e01b815291935091506001600160a01b0385169063a9059cbb90610cbd907f0000000000000000000000000000000000000000000000000000000000000000908590600401611d79565b6020604051808303815f875af1158015610cd9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cfd9190611d5a565b5060405163095ea7b360e01b81526001600160a01b0385169063095ea7b390610d2c9086908690600401611d79565b6020604051808303815f875af1158015610d48573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d6c9190611d5a565b506040805163573ade8160e01b81526001600160a01b038981166004830152602482018590526044820189905233606483015291519185169163573ade819160848082019260209290919082900301815f875af1158015610dcf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610df39190611d1f565b505f610dff8284611da6565b610e099087611db9565b90508015610b115760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb90610e3f9033908590600401611d79565b6020604051808303815f875af1158015610e5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b0f9190611d5a565b610e876118b9565b6127108110610ed15760405162461bcd60e51b81526020600482015260116024820152705461782063616e2774206265203130302560781b60448201526064015b60405180910390fd5b80610edb60015490565b03610eff576001546040516360a607c760e11b8152600401610ec891815260200190565b600155565b6040805163a415bcad60e01b81526001600160a01b038516600482015260248101849052604481018390525f60648201819052336084830152915185927387870bca3f3fd6335c3f4ce8392d69350b4fa4e29263a415bcad9260a4808301939282900301818387803b158015610f78575f80fd5b505af1158015610f8a573d5f803e3d5ffd5b505050505f80610f9985611889565b91509150826001600160a01b031663a9059cbb610fb33390565b846040518363ffffffff1660e01b8152600401610fd1929190611d79565b6020604051808303815f875af1158015610fed573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110119190611d5a565b5060405163a9059cbb60e01b81526001600160a01b0384169063a9059cbb90611060907f0000000000000000000000000000000000000000000000000000000000000000908590600401611d79565b6020604051808303815f875af115801561107c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110a09190611d5a565b50505050505050565b6110b2826118e5565b1561117757345f8190036110d95760405163e37c446f60e01b815260040160405180910390fd5b5f806110e483611889565b915091506110f18161191e565b73d322a49006fc828f9b5b37ab215f99b4e5cab19c63474cf53d835f336040516001600160e01b031960e086901b1681526001600160a01b039283166004820152911660248201525f60448201526064015f604051808303818588803b158015611159575f80fd5b505af115801561116b573d5f803e3d5ffd5b50505050505050505050565b816001600160a01b0381166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156111ca573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111ee9190611d1f565b82111561120e57604051633cb6244560e01b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b038216906323b872dd9061123e90339030908790600401611d36565b6020604051808303815f875af115801561125a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061127e9190611d5a565b505f8061128a84611889565b60405163a9059cbb60e01b815291935091506001600160a01b0384169063a9059cbb906112dd907f0000000000000000000000000000000000000000000000000000000000000000908590600401611d79565b6020604051808303815f875af11580156112f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061131d9190611d5a565b5073ae7ab96520de3a18e5e111b5eaab095312d7fe83196001600160a01b0386160161143a5760405163095ea7b360e01b8152737f39c581f595b53c5cb19bd0b3f8da6c935e2ca095506001600160a01b0384169063095ea7b3906113889088908690600401611d79565b6020604051808303815f875af11580156113a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113c89190611d5a565b50604051630ea598cb60e41b8152600481018390528593505f906001600160a01b0385169063ea598cb0906024016020604051808303815f875af1158015611412573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114369190611d1f565b9250505b60405163095ea7b360e01b81526001600160a01b0384169063095ea7b39061147c907387870bca3f3fd6335c3f4ce8392d69350b4fa4e2908690600401611d79565b6020604051808303815f875af1158015611498573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114bc9190611d5a565b506040805163617ba03760e01b81526001600160a01b0387166004820152602481018490523360448201525f6064820181905291517387870bca3f3fd6335c3f4ce8392d69350b4fa4e29263617ba037926084808201939182900301818387803b158015611528575f80fd5b505af1158015610b0f573d5f803e3d5ffd5b5050565b6115466118b9565b61154f5f6119ae565b565b5f341161155e5782611560565b345b92505f8061156d85611889565b9150915061157a866118e5565b1561158d576115888161191e565b6117a9565b856001600160a01b0381166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156115e0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116049190611d1f565b86111561162457604051633cb6244560e01b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b038216906323b872dd9061165490339030908b90600401611d36565b6020604051808303815f875af1158015611670573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116949190611d5a565b5060405163095ea7b360e01b81526001600160a01b0382169063095ea7b3906116d790731111111254eeb25477b68fb85ed929f73a960582908a90600401611d79565b6020604051808303815f875af11580156116f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117179190611d5a565b5060405163a9059cbb60e01b81526001600160a01b0382169063a9059cbb90611766907f0000000000000000000000000000000000000000000000000000000000000000908690600401611d79565b6020604051808303815f875af1158015611782573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117a69190611d5a565b50505b5f8034116117b7575f6117b9565b825b90505f731111111254eeb25477b68fb85ed929f73a9605826001600160a01b03168287876040516117eb929190611dcc565b5f6040518083038185875af1925050503d805f8114611825576040519150601f19603f3d011682016040523d82523d5f602084013e61182a565b606091505b5050905080610b11576040516318c8b4d760e01b815260040160405180910390fd5b6118546118b9565b6001600160a01b03811661187d57604051631e4fbdf760e01b81525f6004820152602401610ec8565b611886816119ae565b50565b5f806127106001548461189c9190611ddb565b6118a69190611df2565b90506118b28184611db9565b9150915091565b5f546001600160a01b0316331461154f5760405163118cdaa760e01b8152336004820152602401610ec8565b5f6001600160a01b038216158061191857506001600160a01b03821673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee145b92915050565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826040515f6040518083038185875af1925050503d805f8114611987576040519150601f19603f3d011682016040523d82523d5f602084013e61198c565b606091505b505090508061153a576040516317c1477960e01b815260040160405180910390fd5b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381168114611886575f80fd5b5f8060408385031215611a22575f80fd5b8235611a2d816119fd565b946020939093013593505050565b5f805f60608486031215611a4d575f80fd5b8335611a58816119fd565b95602085013595506040909401359392505050565b5f60208284031215611a7d575f80fd5b5035919050565b5f805f8060608587031215611a97575f80fd5b8435611aa2816119fd565b935060208501359250604085013567ffffffffffffffff80821115611ac5575f80fd5b818701915087601f830112611ad8575f80fd5b813581811115611ae6575f80fd5b886020828501011115611af7575f80fd5b95989497505060200194505050565b5f60208284031215611b16575f80fd5b8135611b21816119fd565b9392505050565b6040516101e0810167ffffffffffffffff81118282101715611b5857634e487b7160e01b5f52604160045260245ffd5b60405290565b5f60208284031215611b6e575f80fd5b6040516020810181811067ffffffffffffffff82111715611b9d57634e487b7160e01b5f52604160045260245ffd5b6040529151825250919050565b80516fffffffffffffffffffffffffffffffff81168114611bc9575f80fd5b919050565b805164ffffffffff81168114611bc9575f80fd5b805161ffff81168114611bc9575f80fd5b8051611bc9816119fd565b5f6101e08284031215611c0f575f80fd5b611c17611b28565b611c218484611b5e565b8152611c2f60208401611baa565b6020820152611c4060408401611baa565b6040820152611c5160608401611baa565b6060820152611c6260808401611baa565b6080820152611c7360a08401611baa565b60a0820152611c8460c08401611bce565b60c0820152611c9560e08401611be2565b60e0820152610100611ca8818501611bf3565b90820152610120611cba848201611bf3565b90820152610140611ccc848201611bf3565b90820152610160611cde848201611bf3565b90820152610180611cf0848201611baa565b908201526101a0611d02848201611baa565b908201526101c0611d14848201611baa565b908201529392505050565b5f60208284031215611d2f575f80fd5b5051919050565b6001600160a01b039384168152919092166020820152604081019190915260600190565b5f60208284031215611d6a575f80fd5b81518015158114611b21575f80fd5b6001600160a01b03929092168252602082015260400190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561191857611918611d92565b8181038181111561191857611918611d92565b818382375f9101908152919050565b808202811582820484141761191857611918611d92565b5f82611e0c57634e487b7160e01b5f52601260045260245ffd5b50049056fea26469706673582212207e672db5a71988aeadb72e99402646ed8d3d89d60cf4482d249fb31b0e8ee89264736f6c63430008180033000000000000000000000000000000000000000000000000000000000000004500000000000000000000000065e28d4aa21a34ade6c87ffec9a17a9b620046260000000000000000000000004067d7747898e63689a668b81251cebb74485d57
Deployed Bytecode
0x608060405260043610610108575f3560e01c80637535d24611610092578063a03017ec11610062578063a03017ec146102cc578063ac3af208146102df578063ad5c464814610306578063bbf646c21461032d578063f2fde38b14610354575f80fd5b80637535d2461461023b5780638da5cb5b1461026257806391815a981461027e57806399940ece146102a5575f80fd5b80633e45c8af116100d85780633e45c8af146101af578063487c5f86146101ce5780636f873026146101ed5780636fefa7e614610214578063715018a614610227575f80fd5b806302d2f0a8146101135780631329960414610135578063350c35e91461017b57806339a725741461019c575f80fd5b3661010f57005b5f80fd5b34801561011e575f80fd5b506001546040519081526020015b60405180910390f35b348015610140575f80fd5b507f00000000000000000000000065e28d4aa21a34ade6c87ffec9a17a9b620046265b6040516001600160a01b03909116815260200161012c565b348015610186575f80fd5b5061019a610195366004611a11565b610373565b005b61019a6101aa366004611a3b565b610b1b565b3480156101ba575f80fd5b5061019a6101c9366004611a6d565b610e7f565b3480156101d9575f80fd5b5061019a6101e8366004611a3b565b610f04565b3480156101f8575f80fd5b5061016373d322a49006fc828f9b5b37ab215f99b4e5cab19c81565b61019a610222366004611a11565b6110a9565b348015610232575f80fd5b5061019a61153e565b348015610246575f80fd5b506101637387870bca3f3fd6335c3f4ce8392d69350b4fa4e281565b34801561026d575f80fd5b505f546001600160a01b0316610163565b348015610289575f80fd5b50610163737f39c581f595b53c5cb19bd0b3f8da6c935e2ca081565b3480156102b0575f80fd5b5061016373ae7ab96520de3a18e5e111b5eaab095312d7fe8481565b61019a6102da366004611a84565b611551565b3480156102ea575f80fd5b50610163731111111254eeb25477b68fb85ed929f73a96058281565b348015610311575f80fd5b5061016373c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b348015610338575f80fd5b5061016373eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee81565b34801561035f575f80fd5b5061019a61036e366004611b06565b61184c565b6001600160a01b03821661039a576040516386d7a5fb60e01b815260040160405180910390fd5b73ae7ab96520de3a18e5e111b5eaab095312d7fe84737f39c581f595b53c5cb19bd0b3f8da6c935e2ca073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc27387870bca3f3fd6335c3f4ce8392d69350b4fa4e26001600160a01b03861684146104045785610406565b825b6040516335ea6a7560e01b81526001600160a01b0380831660048301529197505f918316906335ea6a75906024016101e060405180830381865afa158015610450573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104749190611bfe565b61010001519050806001600160a01b0381166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156104ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104f29190611d1f565b87111561051257604051633cb6244560e01b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b038216906323b872dd9061054290339030908c90600401611d36565b6020604051808303815f875af115801561055e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105829190611d5a565b50836001600160a01b0316886001600160a01b03161461060f5760405163095ea7b360e01b81526001600160a01b0382169063095ea7b3906105ca9086908b90600401611d79565b6020604051808303815f875af11580156105e6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061060a9190611d5a565b610691565b60405163095ea7b360e01b81526001600160a01b0382169063095ea7b3906106519073d322a49006fc828f9b5b37ab215f99b4e5cab19c908b90600401611d79565b6020604051808303815f875af115801561066d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106919190611d5a565b50836001600160a01b0316886001600160a01b0316036107da575f806106b689611889565b909250905073d322a49006fc828f9b5b37ab215f99b4e5cab19c6380500d208b843360405160e085901b6001600160e01b03191681526001600160a01b039384166004820152602481019290925290911660448201526064015f604051808303815f87803b158015610726575f80fd5b505af1158015610738573d5f803e3d5ffd5b5050604051630402806960e51b81526001600160a01b03808e166004830152602482018590527f00000000000000000000000065e28d4aa21a34ade6c87ffec9a17a9b6200462616604482015273d322a49006fc828f9b5b37ab215f99b4e5cab19c92506380500d2091506064015f604051808303815f87803b1580156107bd575f80fd5b505af11580156107cf573d5f803e3d5ffd5b505050505050610b11565b604051631a4ca37b60e21b81526001600160a01b038981166004830152602482018990523060448301525f91908516906369328dec906064016020604051808303815f875af115801561082f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108539190611d1f565b9050856001600160a01b0316896001600160a01b0316036109f757604051636f074d1f60e11b8152600481018290525f906001600160a01b0388169063de0e9a3e906024016020604051808303815f875af11580156108b4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108d89190611d1f565b9050875f806108e684611889565b91509150826001600160a01b031663a9059cbb6109003390565b846040518363ffffffff1660e01b815260040161091e929190611d79565b6020604051808303815f875af115801561093a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061095e9190611d5a565b5060405163a9059cbb60e01b81526001600160a01b0384169063a9059cbb906109ad907f00000000000000000000000065e28d4aa21a34ade6c87ffec9a17a9b62004626908590600401611d79565b6020604051808303815f875af11580156109c9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109ed9190611d5a565b5050505050610b0f565b885f80610a0384611889565b91509150826001600160a01b031663a9059cbb610a1d3390565b846040518363ffffffff1660e01b8152600401610a3b929190611d79565b6020604051808303815f875af1158015610a57573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a7b9190611d5a565b5060405163a9059cbb60e01b81526001600160a01b0384169063a9059cbb90610aca907f00000000000000000000000065e28d4aa21a34ade6c87ffec9a17a9b62004626908590600401611d79565b6020604051808303815f875af1158015610ae6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b0a9190611d5a565b505050505b505b5050505050505050565b6001600160a01b038316610b42576040516386d7a5fb60e01b815260040160405180910390fd5b827387870bca3f3fd6335c3f4ce8392d69350b4fa4e26001600160a01b0382166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015610baa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bce9190611d1f565b831115610bee57604051633cb6244560e01b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b038316906323b872dd90610c1e90339030908890600401611d36565b6020604051808303815f875af1158015610c3a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c5e9190611d5a565b505f80610c6a85611889565b60405163a9059cbb60e01b815291935091506001600160a01b0385169063a9059cbb90610cbd907f00000000000000000000000065e28d4aa21a34ade6c87ffec9a17a9b62004626908590600401611d79565b6020604051808303815f875af1158015610cd9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cfd9190611d5a565b5060405163095ea7b360e01b81526001600160a01b0385169063095ea7b390610d2c9086908690600401611d79565b6020604051808303815f875af1158015610d48573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d6c9190611d5a565b506040805163573ade8160e01b81526001600160a01b038981166004830152602482018590526044820189905233606483015291519185169163573ade819160848082019260209290919082900301815f875af1158015610dcf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610df39190611d1f565b505f610dff8284611da6565b610e099087611db9565b90508015610b115760405163a9059cbb60e01b81526001600160a01b0386169063a9059cbb90610e3f9033908590600401611d79565b6020604051808303815f875af1158015610e5b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b0f9190611d5a565b610e876118b9565b6127108110610ed15760405162461bcd60e51b81526020600482015260116024820152705461782063616e2774206265203130302560781b60448201526064015b60405180910390fd5b80610edb60015490565b03610eff576001546040516360a607c760e11b8152600401610ec891815260200190565b600155565b6040805163a415bcad60e01b81526001600160a01b038516600482015260248101849052604481018390525f60648201819052336084830152915185927387870bca3f3fd6335c3f4ce8392d69350b4fa4e29263a415bcad9260a4808301939282900301818387803b158015610f78575f80fd5b505af1158015610f8a573d5f803e3d5ffd5b505050505f80610f9985611889565b91509150826001600160a01b031663a9059cbb610fb33390565b846040518363ffffffff1660e01b8152600401610fd1929190611d79565b6020604051808303815f875af1158015610fed573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110119190611d5a565b5060405163a9059cbb60e01b81526001600160a01b0384169063a9059cbb90611060907f00000000000000000000000065e28d4aa21a34ade6c87ffec9a17a9b62004626908590600401611d79565b6020604051808303815f875af115801561107c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110a09190611d5a565b50505050505050565b6110b2826118e5565b1561117757345f8190036110d95760405163e37c446f60e01b815260040160405180910390fd5b5f806110e483611889565b915091506110f18161191e565b73d322a49006fc828f9b5b37ab215f99b4e5cab19c63474cf53d835f336040516001600160e01b031960e086901b1681526001600160a01b039283166004820152911660248201525f60448201526064015f604051808303818588803b158015611159575f80fd5b505af115801561116b573d5f803e3d5ffd5b50505050505050505050565b816001600160a01b0381166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156111ca573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111ee9190611d1f565b82111561120e57604051633cb6244560e01b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b038216906323b872dd9061123e90339030908790600401611d36565b6020604051808303815f875af115801561125a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061127e9190611d5a565b505f8061128a84611889565b60405163a9059cbb60e01b815291935091506001600160a01b0384169063a9059cbb906112dd907f00000000000000000000000065e28d4aa21a34ade6c87ffec9a17a9b62004626908590600401611d79565b6020604051808303815f875af11580156112f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061131d9190611d5a565b5073ae7ab96520de3a18e5e111b5eaab095312d7fe83196001600160a01b0386160161143a5760405163095ea7b360e01b8152737f39c581f595b53c5cb19bd0b3f8da6c935e2ca095506001600160a01b0384169063095ea7b3906113889088908690600401611d79565b6020604051808303815f875af11580156113a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113c89190611d5a565b50604051630ea598cb60e41b8152600481018390528593505f906001600160a01b0385169063ea598cb0906024016020604051808303815f875af1158015611412573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114369190611d1f565b9250505b60405163095ea7b360e01b81526001600160a01b0384169063095ea7b39061147c907387870bca3f3fd6335c3f4ce8392d69350b4fa4e2908690600401611d79565b6020604051808303815f875af1158015611498573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114bc9190611d5a565b506040805163617ba03760e01b81526001600160a01b0387166004820152602481018490523360448201525f6064820181905291517387870bca3f3fd6335c3f4ce8392d69350b4fa4e29263617ba037926084808201939182900301818387803b158015611528575f80fd5b505af1158015610b0f573d5f803e3d5ffd5b5050565b6115466118b9565b61154f5f6119ae565b565b5f341161155e5782611560565b345b92505f8061156d85611889565b9150915061157a866118e5565b1561158d576115888161191e565b6117a9565b856001600160a01b0381166370a08231336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156115e0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116049190611d1f565b86111561162457604051633cb6244560e01b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b038216906323b872dd9061165490339030908b90600401611d36565b6020604051808303815f875af1158015611670573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116949190611d5a565b5060405163095ea7b360e01b81526001600160a01b0382169063095ea7b3906116d790731111111254eeb25477b68fb85ed929f73a960582908a90600401611d79565b6020604051808303815f875af11580156116f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117179190611d5a565b5060405163a9059cbb60e01b81526001600160a01b0382169063a9059cbb90611766907f00000000000000000000000065e28d4aa21a34ade6c87ffec9a17a9b62004626908690600401611d79565b6020604051808303815f875af1158015611782573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117a69190611d5a565b50505b5f8034116117b7575f6117b9565b825b90505f731111111254eeb25477b68fb85ed929f73a9605826001600160a01b03168287876040516117eb929190611dcc565b5f6040518083038185875af1925050503d805f8114611825576040519150601f19603f3d011682016040523d82523d5f602084013e61182a565b606091505b5050905080610b11576040516318c8b4d760e01b815260040160405180910390fd5b6118546118b9565b6001600160a01b03811661187d57604051631e4fbdf760e01b81525f6004820152602401610ec8565b611886816119ae565b50565b5f806127106001548461189c9190611ddb565b6118a69190611df2565b90506118b28184611db9565b9150915091565b5f546001600160a01b0316331461154f5760405163118cdaa760e01b8152336004820152602401610ec8565b5f6001600160a01b038216158061191857506001600160a01b03821673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee145b92915050565b5f7f00000000000000000000000065e28d4aa21a34ade6c87ffec9a17a9b620046266001600160a01b0316826040515f6040518083038185875af1925050503d805f8114611987576040519150601f19603f3d011682016040523d82523d5f602084013e61198c565b606091505b505090508061153a576040516317c1477960e01b815260040160405180910390fd5b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381168114611886575f80fd5b5f8060408385031215611a22575f80fd5b8235611a2d816119fd565b946020939093013593505050565b5f805f60608486031215611a4d575f80fd5b8335611a58816119fd565b95602085013595506040909401359392505050565b5f60208284031215611a7d575f80fd5b5035919050565b5f805f8060608587031215611a97575f80fd5b8435611aa2816119fd565b935060208501359250604085013567ffffffffffffffff80821115611ac5575f80fd5b818701915087601f830112611ad8575f80fd5b813581811115611ae6575f80fd5b886020828501011115611af7575f80fd5b95989497505060200194505050565b5f60208284031215611b16575f80fd5b8135611b21816119fd565b9392505050565b6040516101e0810167ffffffffffffffff81118282101715611b5857634e487b7160e01b5f52604160045260245ffd5b60405290565b5f60208284031215611b6e575f80fd5b6040516020810181811067ffffffffffffffff82111715611b9d57634e487b7160e01b5f52604160045260245ffd5b6040529151825250919050565b80516fffffffffffffffffffffffffffffffff81168114611bc9575f80fd5b919050565b805164ffffffffff81168114611bc9575f80fd5b805161ffff81168114611bc9575f80fd5b8051611bc9816119fd565b5f6101e08284031215611c0f575f80fd5b611c17611b28565b611c218484611b5e565b8152611c2f60208401611baa565b6020820152611c4060408401611baa565b6040820152611c5160608401611baa565b6060820152611c6260808401611baa565b6080820152611c7360a08401611baa565b60a0820152611c8460c08401611bce565b60c0820152611c9560e08401611be2565b60e0820152610100611ca8818501611bf3565b90820152610120611cba848201611bf3565b90820152610140611ccc848201611bf3565b90820152610160611cde848201611bf3565b90820152610180611cf0848201611baa565b908201526101a0611d02848201611baa565b908201526101c0611d14848201611baa565b908201529392505050565b5f60208284031215611d2f575f80fd5b5051919050565b6001600160a01b039384168152919092166020820152604081019190915260600190565b5f60208284031215611d6a575f80fd5b81518015158114611b21575f80fd5b6001600160a01b03929092168252602082015260400190565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561191857611918611d92565b8181038181111561191857611918611d92565b818382375f9101908152919050565b808202811582820484141761191857611918611d92565b5f82611e0c57634e487b7160e01b5f52601260045260245ffd5b50049056fea26469706673582212207e672db5a71988aeadb72e99402646ed8d3d89d60cf4482d249fb31b0e8ee89264736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004500000000000000000000000065e28d4aa21a34ade6c87ffec9a17a9b620046260000000000000000000000004067d7747898e63689a668b81251cebb74485d57
-----Decoded View---------------
Arg [0] : _tax (uint256): 69
Arg [1] : _splitter (address): 0x65e28d4Aa21A34ADE6c87FFEc9A17A9b62004626
Arg [2] : _treasury (address): 0x4067d7747898e63689A668b81251Cebb74485d57
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000045
Arg [1] : 00000000000000000000000065e28d4aa21a34ade6c87ffec9a17a9b62004626
Arg [2] : 0000000000000000000000004067d7747898e63689a668b81251cebb74485d57
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $1 | 7.714 | $7.73 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
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.