Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
LidoDepositor
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.11;
pragma abicoder v2;
import "contracts/ZapDepositor.sol";
import "contracts/interfaces/protocols/ILidoSTETH.sol";
import "contracts/interfaces/IWETH9.sol";
contract LidoDepositor is ZapDepositor {
using SafeERC20Upgradeable for IERC20;
ILidoSTETH public constant ST_ETH =
ILidoSTETH(0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84); // mainnet address
IWETH9 public constant weth9 =
IWETH9(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2); // mainnet address
fallback() external payable {}
/**
* @notice Deposit a defined underling in the depositor protocol
* @param _token the token to deposit
* @param _underlyingAmount the amount to deposit
* @return the amount ibt generated and sent back to the caller
*/
function depositInProtocol(address _token, uint256 _underlyingAmount)
public
override
onlyZaps
tokenIsValid(_token)
returns (uint256)
{
require(_token == address(0x00), "Lido: Token address not valid");
IERC20(_token).transferFrom(
msg.sender,
address(this),
_underlyingAmount
);
uint256 wethBalance = IERC20(_token).balanceOf(address(this));
// swap weth to eth
weth9.withdraw(wethBalance);
ST_ETH.submit{ value: address(this).balance }(
address(0x00)
); // deposit ETH and get STETH to depositor with referral address to 0x00.
uint256 IBTAMOUNT = ST_ETH.balanceOf(address(this));
return IBTAMOUNT;
}
/**
* @notice Deposit a defined underling in the depositor protocol from the caller adderss
* @param _token the token to deposit
* @param _underlyingAmount the amount to deposit
* @param _from the address from which the underlying need to be pulled
* @return the amount ibt generated
*/
function depositInProtocolFrom(
address _token,
uint256 _underlyingAmount,
address _from
) public override onlyZaps tokenIsValid(_token) returns (uint256) {
IERC20(_token).transferFrom(_from, address(this), _underlyingAmount); // pull weth from user to depositor
uint256 wethBalance = IERC20(_token).balanceOf(address(this));
weth9.withdraw(wethBalance);
uint256 IBTAMOUNT = ST_ETH.getSharesByPooledEth(address(this).balance);
ST_ETH.submit{ value: address(this).balance }(
address(0x00)
); // deposit ETH and get STETH to depositor with referral address to 0x00.
ST_ETH.transfer(msg.sender, IBTAMOUNT);
return IBTAMOUNT;
}
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.11;
pragma abicoder v2;
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/structs/EnumerableSetUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol";
import "contracts/interfaces/IERC20.sol";
import "contracts/interfaces/IDepositorRegistry.sol";
abstract contract ZapDepositor is Initializable, OwnableUpgradeable {
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
using SafeERC20Upgradeable for IERC20;
uint256 internal constant MAX_UINT256 =
0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff;
IDepositorRegistry public depositorRegistry;
EnumerableSetUpgradeable.AddressSet private tokens;
mapping(address => address) public IBTOfUnderlying; // underlying to respective IBT
event TokenAdded(address _token);
event TokenRemoved(address _token);
event IBTOfUnderlyingUpdated(
address indexed _underlying,
address indexed _pool
);
modifier onlyZaps() {
require(
depositorRegistry.isRegisteredZap(msg.sender),
"ZapDepositor: Invalid caller"
);
_;
}
modifier tokenIsValid(address _token) {
require(tokens.contains(_token), "ZapDepositor: invalid token address");
_;
}
/**
* @notice ZapDepositor initializer
* @param _depositorRegistry the depositor registry
*/
function initialize(IDepositorRegistry _depositorRegistry)
public
initializer
{
__Ownable_init();
depositorRegistry = _depositorRegistry;
}
/**
* @notice Deposit a defined underling in the depositor protocol
* @param _token the token to deposit
* @param _underlyingAmount the amount to deposit
* @return the amount ibt generated and sent back to the caller
*/
function depositInProtocol(address _token, uint256 _underlyingAmount)
public
virtual
onlyZaps
tokenIsValid(_token)
returns (uint256)
{}
/**
* @notice Deposit a defined underling in the depositor protocol from the caller adderss
* @param _token the token to deposit
* @param _underlyingAmount the amount to deposit
* @param _from the address from which the underlying need to be pulled
* @return the amount ibt generated
*/
function depositInProtocolFrom(
address _token,
uint256 _underlyingAmount,
address _from
) public virtual onlyZaps tokenIsValid(_token) returns (uint256) {}
/**
* @notice Add a token to the depositor's list of underlyings
* @param _token the token to add
*/
function addToken(address _token) external onlyOwner {
require(tokens.add(_token), "ZapDepositor: token already added");
emit TokenAdded(_token);
}
/**
* @notice Remove a token from the depositor's list of underlyings
* @param _token the token to remove
*/
function removeToken(address _token) external onlyOwner {
require(tokens.add(_token), "ZapDepositor: invalid token address");
emit TokenRemoved(_token);
}
/**
* @notice Getter for the length of the token list
* @return the length of the list
*/
function getTokensLength() external view returns (uint256) {
return tokens.length();
}
/**
* @notice Getter for a particular token address of the list
* @param _index the index of the token to get the address of
* @return the address of the token
*/
function getTokensAt(uint256 _index) external view returns (address) {
return tokens.at(_index);
}
function setIBTOfUnderlying(address _underlying, address _ibt)
external
onlyOwner
{
IBTOfUnderlying[_underlying] = _ibt;
IERC20(_underlying).safeIncreaseAllowance(
address(_ibt),
MAX_UINT256 -
(IERC20(_underlying).allowance(address(this), address(_ibt)))
);
emit IBTOfUnderlyingUpdated(_underlying, _ibt);
}
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.11;
pragma abicoder v2;
interface ILidoSTETH {
/**
* @notice Adds eth to the pool
* @return StETH Amount of StETH generated
*/
function submit(address _referral) external payable returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address _recipient, uint256 _amount) external returns (bool);
function getSharesByPooledEth(uint256 _amount) external view returns (uint256);
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.7.5;
pragma abicoder v2;
interface IWETH9 {
function withdraw(uint wad) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.0;
import "../../utils/AddressUpgradeable.sol";
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the
* initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() initializer {}
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
*/
bool private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Modifier to protect an initializer function from being invoked twice.
*/
modifier initializer() {
// If the contract is initializing we ignore whether _initialized is set in order to support multiple
// inheritance patterns, but we only do this in the context of a constructor, because in other contexts the
// contract may have been reentered.
require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized");
bool isTopLevelCall = !_initializing;
if (isTopLevelCall) {
_initializing = true;
_initialized = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
}
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} modifier, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
function _isConstructor() private view returns (bool) {
return !AddressUpgradeable.isContract(address(this));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.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.
*
* By default, the owner account will be the one that deploys the contract. 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 OwnableUpgradeable is Initializable, ContextUpgradeable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
function __Ownable_init() internal onlyInitializing {
__Ownable_init_unchained();
}
function __Ownable_init_unchained() internal onlyInitializing {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing 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 {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_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);
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol)
pragma solidity ^0.8.0;
/**
* @dev Library for managing
* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
* types.
*
* Sets have the following properties:
*
* - Elements are added, removed, and checked for existence in constant time
* (O(1)).
* - Elements are enumerated in O(n). No guarantees are made on the ordering.
*
* ```
* contract Example {
* // Add the library methods
* using EnumerableSet for EnumerableSet.AddressSet;
*
* // Declare a set state variable
* EnumerableSet.AddressSet private mySet;
* }
* ```
*
* As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
* and `uint256` (`UintSet`) are supported.
*/
library EnumerableSetUpgradeable {
// To implement this library for multiple types with as little code
// repetition as possible, we write it in terms of a generic Set type with
// bytes32 values.
// The Set implementation uses private functions, and user-facing
// implementations (such as AddressSet) are just wrappers around the
// underlying Set.
// This means that we can only create new EnumerableSets for types that fit
// in bytes32.
struct Set {
// Storage of set values
bytes32[] _values;
// Position of the value in the `values` array, plus 1 because index 0
// means a value is not in the set.
mapping(bytes32 => uint256) _indexes;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function _add(Set storage set, bytes32 value) private returns (bool) {
if (!_contains(set, value)) {
set._values.push(value);
// The value is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
set._indexes[value] = set._values.length;
return true;
} else {
return false;
}
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function _remove(Set storage set, bytes32 value) private returns (bool) {
// We read and store the value's index to prevent multiple reads from the same storage slot
uint256 valueIndex = set._indexes[value];
if (valueIndex != 0) {
// Equivalent to contains(set, value)
// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
// the array, and then remove the last element (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 toDeleteIndex = valueIndex - 1;
uint256 lastIndex = set._values.length - 1;
if (lastIndex != toDeleteIndex) {
bytes32 lastvalue = set._values[lastIndex];
// Move the last value to the index where the value to delete is
set._values[toDeleteIndex] = lastvalue;
// Update the index for the moved value
set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
}
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the index for the deleted slot
delete set._indexes[value];
return true;
} else {
return false;
}
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function _contains(Set storage set, bytes32 value) private view returns (bool) {
return set._indexes[value] != 0;
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function _length(Set storage set) private view returns (uint256) {
return set._values.length;
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function _at(Set storage set, uint256 index) private view returns (bytes32) {
return set._values[index];
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function _values(Set storage set) private view returns (bytes32[] memory) {
return set._values;
}
// Bytes32Set
struct Bytes32Set {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _add(set._inner, value);
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _remove(set._inner, value);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
return _contains(set._inner, value);
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(Bytes32Set storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
return _at(set._inner, index);
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
return _values(set._inner);
}
// AddressSet
struct AddressSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(AddressSet storage set, address value) internal returns (bool) {
return _add(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(AddressSet storage set, address value) internal returns (bool) {
return _remove(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(AddressSet storage set, address value) internal view returns (bool) {
return _contains(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(AddressSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(AddressSet storage set, uint256 index) internal view returns (address) {
return address(uint160(uint256(_at(set._inner, index))));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(AddressSet storage set) internal view returns (address[] memory) {
bytes32[] memory store = _values(set._inner);
address[] memory result;
assembly {
result := store
}
return result;
}
// UintSet
struct UintSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(UintSet storage set, uint256 value) internal returns (bool) {
return _add(set._inner, bytes32(value));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(UintSet storage set, uint256 value) internal returns (bool) {
return _remove(set._inner, bytes32(value));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(UintSet storage set, uint256 value) internal view returns (bool) {
return _contains(set._inner, bytes32(value));
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function length(UintSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(UintSet storage set, uint256 index) internal view returns (uint256) {
return uint256(_at(set._inner, index));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(UintSet storage set) internal view returns (uint256[] memory) {
bytes32[] memory store = _values(set._inner);
uint256[] memory result;
assembly {
result := store
}
return result;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20Upgradeable.sol";
import "../../../utils/AddressUpgradeable.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20Upgradeable {
using AddressUpgradeable for address;
function safeTransfer(
IERC20Upgradeable token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20Upgradeable token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20Upgradeable token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20Upgradeable token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20Upgradeable token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20Upgradeable token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.11;
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
interface IERC20 is IERC20Upgradeable {
/**
* @dev Returns the name of the token.
*/
function name() external returns (string memory);
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() external returns (string memory);
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
* called.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() external view returns (uint8);
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue)
external
returns (bool);
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue)
external
returns (bool);
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount)
external
returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender)
external
view
returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
function mint(address to, uint256 amount) external;
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.11;
pragma abicoder v2;
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "contracts/interfaces/IZapDepositor.sol";
import "contracts/interfaces/IAMM.sol";
import "contracts/interfaces/IAMMRegistry.sol";
interface IDepositorRegistry {
event ZapDepositorSet(address _amm, IZapDepositor _zapDepositor);
function ZapDepositorsPerAMM(address _address)
external
view
returns (IZapDepositor);
function registry() external view returns (IAMMRegistry);
function setZapDepositor(address _amm, IZapDepositor _zapDepositor)
external;
function isRegisteredZap(address _zapAddress) external view returns (bool);
function addZap(address _zapAddress) external returns (bool);
function removeZap(address _zapAddress) external returns (bool);
function zapLength() external view returns (uint256);
function zapAt(uint256 _index) external view returns (address);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";
/**
* @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 ContextUpgradeable is Initializable {
function __Context_init() internal onlyInitializing {
}
function __Context_init_unchained() internal onlyInitializing {
}
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20Upgradeable {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.11;
pragma abicoder v2;
interface IZapDepositor {
/**
* @notice Deposit a defined underling in the depositor protocol
* @param _token the token to deposit
* @param _underlyingAmount the amount to deposit
* @return the amount ibt generated and sent back to the caller
*/
function depositInProtocol(address _token, uint256 _underlyingAmount)
external
returns (uint256);
/**
* @notice Deposit a defined underling in the depositor protocol from the caller adderss
* @param _token the token to deposit
* @param _underlyingAmount the amount to deposit
* @param _from the address from which the underlying need to be pulled
* @return the amount ibt generated
*/
function depositInProtocolFrom(
address _token,
uint256 _underlyingAmount,
address _from
) external returns (uint256);
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.11;
pragma abicoder v2;
interface IAMM {
/* Struct */
struct Pair {
address tokenAddress; // first is always PT
uint256[2] weights;
uint256[2] balances;
bool liquidityIsInitialized;
}
enum AMMGlobalState {
Created,
Activated,
Paused
}
/**
* @notice finalize the initialization of the amm
* @dev must be called during the first period the amm is supposed to be active
*/
function finalize() external;
/**
* @notice switch period
* @dev must be called after each new period switch
* @dev the switch will auto renew part of the tokens and update the weights accordingly
*/
function switchPeriod() external;
/**
* @notice toggle amm pause for pausing/resuming all user functionalities
*/
function togglePauseAmm() external;
/**
* @notice Withdraw expired LP tokens
*/
function withdrawExpiredToken(address _user, uint256 _lpTokenId) external;
/**
* @notice Getter for redeemable expired tokens info
* @param _user the address of the user to check the redeemable tokens of
* @param _lpTokenId the lp token id
* @return the amount, the period id and the pair id of the expired tokens of the user
*/
function getExpiredTokensInfo(address _user, uint256 _lpTokenId)
external
view
returns (
uint256,
uint256,
uint256
);
function swapExactAmountIn(
uint256 _pairID,
uint256 _tokenIn,
uint256 _tokenAmountIn,
uint256 _tokenOut,
uint256 _minAmountOut,
address _to
) external returns (uint256 tokenAmountOut, uint256 spotPriceAfter);
function swapExactAmountOut(
uint256 _pairID,
uint256 _tokenIn,
uint256 _maxAmountIn,
uint256 _tokenOut,
uint256 _tokenAmountOut,
address _to
) external returns (uint256 tokenAmountIn, uint256 spotPriceAfter);
/**
* @notice Create liquidity on the pair setting an initial price
*/
function createLiquidity(uint256 _pairID, uint256[2] memory _tokenAmounts)
external;
function addLiquidity(
uint256 _pairID,
uint256 _poolAmountOut,
uint256[2] memory _maxAmountsIn
) external;
function removeLiquidity(
uint256 _pairID,
uint256 _poolAmountIn,
uint256[] calldata _minAmountsOut
) external;
function joinSwapExternAmountIn(
uint256 _pairID,
uint256 _tokenIn,
uint256 _tokenAmountIn,
uint256 _minPoolAmountOut
) external returns (uint256 poolAmountOut);
function joinSwapPoolAmountOut(
uint256 _pairID,
uint256 _tokenIn,
uint256 _poolAmountOut,
uint256 _maxAmountIn
) external returns (uint256 tokenAmountIn);
function exitSwapPoolAmountIn(
uint256 _pairID,
uint256 _tokenOut,
uint256 _poolAmountIn,
uint256 _minAmountOut
) external returns (uint256 tokenAmountOut);
function exitSwapExternAmountOut(
uint256 _pairID,
uint256 _tokenOut,
uint256 _tokenAmountOut,
uint256 _maxPoolAmountIn
) external returns (uint256 poolAmountIn);
function setSwappingFees(uint256 _swapFee) external;
/* Getters */
function calcOutAndSpotGivenIn(
uint256 _pairID,
uint256 _tokenIn,
uint256 _tokenAmountIn,
uint256 _tokenOut,
uint256 _minAmountOut
) external view returns (uint256 tokenAmountOut, uint256 spotPriceAfter);
function calcInAndSpotGivenOut(
uint256 _pairID,
uint256 _tokenIn,
uint256 _maxAmountIn,
uint256 _tokenOut,
uint256 _tokenAmountOut
) external view returns (uint256 tokenAmountIn, uint256 spotPriceAfter);
/**
* @notice Getter for the spot price of a pair
* @param _pairID the id of the pair
* @param _tokenIn the id of the tokens sent
* @param _tokenOut the id of the tokens received
* @return the sport price of the pair
*/
function getSpotPrice(
uint256 _pairID,
uint256 _tokenIn,
uint256 _tokenOut
) external view returns (uint256);
/**
* @notice Getter for the address of the corresponding future vault
* @return the address of the future vault
*/
function getFutureAddress() external view returns (address);
/**
* @notice Getter for the pt address
* @return the pt address
*/
function getPTAddress() external view returns (address);
/**
* @notice Getter for the address of the underlying token of the ibt
* @return the address of the underlying token of the ibt
*/
function getUnderlyingOfIBTAddress() external view returns (address);
/**
* @notice Getter for the fyt address
* @return the fyt address
*/
function getFYTAddress() external view returns (address);
function getIBTAddress() external view returns (address);
/**
* @notice Getter for the PT weight in the first pair (0)
* @return the weight of the pt
*/
function getPTWeightInPair() external view returns (uint256);
function getPairWithID(uint256 _pairID) external view returns (Pair memory);
function getLPTokenId(
uint256 _ammId,
uint256 _periodIndex,
uint256 _pairID
) external pure returns (uint256);
function ammId() external view returns (uint64);
function currentPeriodIndex() external view returns (uint256);
function getTotalSupplyWithTokenId(uint256 _tokenId)
external
view
returns (uint256);
function getAMMState() external view returns (AMMGlobalState);
}// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.11;
pragma experimental ABIEncoderV2;
/**
* @title AMM Registry interface
* @notice Keeps a record of all Future / Pool pairs
*/
interface IAMMRegistry {
/**
* @notice Initializer of the contract
* @param _admin the address of the admin of the contract
*/
function initialize(address _admin) external;
/* Setters */
/**
* @notice Setter for the AMM pools
* @param _futureVaultAddress the future vault address
* @param _ammPool the AMM pool address
*/
function setAMMPoolByFuture(address _futureVaultAddress, address _ammPool)
external;
/**
* @notice Register the AMM pools
* @param _ammPool the AMM pool address
*/
function setAMMPool(address _ammPool) external;
/**
* @notice Remove an AMM Pool from the registry
* @param _ammPool the address of the pool to remove from the registry
*/
function removeAMMPool(address _ammPool) external;
/* Getters */
/**
* @notice Getter for the controller address
* @return the address of the controller
*/
function getFutureAMMPool(address _futureVaultAddress)
external
view
returns (address);
function isRegisteredAMM(address _ammAddress) external view returns (bool);
}{
"optimizer": {
"enabled": true,
"runs": 1000
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"metadata": {
"useLiteralContent": true
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_underlying","type":"address"},{"indexed":true,"internalType":"address","name":"_pool","type":"address"}],"name":"IBTOfUnderlyingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_token","type":"address"}],"name":"TokenAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_token","type":"address"}],"name":"TokenRemoved","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"IBTOfUnderlying","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ST_ETH","outputs":[{"internalType":"contract ILidoSTETH","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"addToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_underlyingAmount","type":"uint256"}],"name":"depositInProtocol","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_underlyingAmount","type":"uint256"},{"internalType":"address","name":"_from","type":"address"}],"name":"depositInProtocolFrom","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositorRegistry","outputs":[{"internalType":"contract IDepositorRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getTokensAt","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokensLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IDepositorRegistry","name":"_depositorRegistry","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"removeToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_underlying","type":"address"},{"internalType":"address","name":"_ibt","type":"address"}],"name":"setIBTOfUnderlying","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weth9","outputs":[{"internalType":"contract IWETH9","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b50611871806100206000396000f3fe6080604052600436106100df5760003560e01c80639282e47b11610084578063d48bfca711610056578063d48bfca71461027a578063edae10da1461029a578063f2fde38b146102ba578063fee8c620146102da57005b80639282e47b146101ef578063a0fc92871461020f578063b0c26ecf14610245578063c4d66de81461025a57005b806350879c1c116100bd57806350879c1c146101745780635fa7b5841461019c578063715018a6146101bc5780638da5cb5b146101d157005b8063338346d2146100e157806344fb9b2614610126578063472d3e4114610154575b005b3480156100ed57600080fd5b5061010973ae7ab96520de3a18e5e111b5eaab095312d7fe8481565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561013257600080fd5b5061014661014136600461164d565b6102fa565b60405190815260200161011d565b34801561016057600080fd5b5061014661016f36600461168f565b610714565b34801561018057600080fd5b5061010973c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b3480156101a857600080fd5b506100df6101b73660046116bb565b610acc565b3480156101c857600080fd5b506100df610bc9565b3480156101dd57600080fd5b506033546001600160a01b0316610109565b3480156101fb57600080fd5b506100df61020a3660046116d8565b610c2f565b34801561021b57600080fd5b5061010961022a3660046116bb565b6068602052600090815260409020546001600160a01b031681565b34801561025157600080fd5b50610146610d90565b34801561026657600080fd5b506100df6102753660046116bb565b610da1565b34801561028657600080fd5b506100df6102953660046116bb565b610e9a565b3480156102a657600080fd5b506101096102b5366004611711565b610faa565b3480156102c657600080fd5b506100df6102d53660046116bb565b610fbd565b3480156102e657600080fd5b50606554610109906001600160a01b031681565b6065546040516383146b1d60e01b81523360048201526000916001600160a01b0316906383146b1d90602401602060405180830381865afa158015610343573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610367919061172a565b6103b85760405162461bcd60e51b815260206004820152601c60248201527f5a61704465706f7369746f723a20496e76616c69642063616c6c65720000000060448201526064015b60405180910390fd5b836103c460668261109f565b61041c5760405162461bcd60e51b815260206004820152602360248201527f5a61704465706f7369746f723a20696e76616c696420746f6b656e206164647260448201526265737360e81b60648201526084016103af565b6040516323b872dd60e01b81526001600160a01b038481166004830152306024830152604482018690528616906323b872dd906064016020604051808303816000875af1158015610471573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610495919061172a565b506040516370a0823160e01b81523060048201526000906001600160a01b038716906370a0823190602401602060405180830381865afa1580156104dd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610501919061174c565b604051632e1a7d4d60e01b81526004810182905290915073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc290632e1a7d4d90602401600060405180830381600087803b15801561055157600080fd5b505af1158015610565573d6000803e3d6000fd5b50506040517f192084510000000000000000000000000000000000000000000000000000000081524760048201526000925073ae7ab96520de3a18e5e111b5eaab095312d7fe849150631920845190602401602060405180830381865afa1580156105d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f8919061174c565b60405163a1903eab60e01b81526000600482015290915073ae7ab96520de3a18e5e111b5eaab095312d7fe849063a1903eab90479060240160206040518083038185885af115801561064e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610673919061174c565b506040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810182905273ae7ab96520de3a18e5e111b5eaab095312d7fe849063a9059cbb906044016020604051808303816000875af11580156106e5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610709919061172a565b509695505050505050565b6065546040516383146b1d60e01b81523360048201526000916001600160a01b0316906383146b1d90602401602060405180830381865afa15801561075d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610781919061172a565b6107cd5760405162461bcd60e51b815260206004820152601c60248201527f5a61704465706f7369746f723a20496e76616c69642063616c6c65720000000060448201526064016103af565b826107d960668261109f565b6108315760405162461bcd60e51b815260206004820152602360248201527f5a61704465706f7369746f723a20696e76616c696420746f6b656e206164647260448201526265737360e81b60648201526084016103af565b6001600160a01b038416156108885760405162461bcd60e51b815260206004820152601d60248201527f4c69646f3a20546f6b656e2061646472657373206e6f742076616c696400000060448201526064016103af565b6040516323b872dd60e01b8152336004820152306024820152604481018490526001600160a01b038516906323b872dd906064016020604051808303816000875af11580156108db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ff919061172a565b506040516370a0823160e01b81523060048201526000906001600160a01b038616906370a0823190602401602060405180830381865afa158015610947573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096b919061174c565b604051632e1a7d4d60e01b81526004810182905290915073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc290632e1a7d4d90602401600060405180830381600087803b1580156109bb57600080fd5b505af11580156109cf573d6000803e3d6000fd5b505060405163a1903eab60e01b81526000600482015273ae7ab96520de3a18e5e111b5eaab095312d7fe84925063a1903eab9150479060240160206040518083038185885af1158015610a26573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610a4b919061174c565b506040516370a0823160e01b815230600482015260009073ae7ab96520de3a18e5e111b5eaab095312d7fe84906370a0823190602401602060405180830381865afa158015610a9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac2919061174c565b9695505050505050565b6033546001600160a01b03163314610b265760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103af565b610b316066826110c4565b610b895760405162461bcd60e51b815260206004820152602360248201527f5a61704465706f7369746f723a20696e76616c696420746f6b656e206164647260448201526265737360e81b60648201526084016103af565b6040516001600160a01b03821681527f4c910b69fe65a61f7531b9c5042b2329ca7179c77290aa7e2eb3afa3c8511fd3906020015b60405180910390a150565b6033546001600160a01b03163314610c235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103af565b610c2d60006110d9565b565b6033546001600160a01b03163314610c895760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103af565b6001600160a01b0382811660008181526068602052604090819020805473ffffffffffffffffffffffffffffffffffffffff1916938516938417905551636eb1769f60e11b81523060048201526024810192909252610d4c9183919063dd62ed3e90604401602060405180830381865afa158015610d0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2f919061174c565b610d3b9060001961177b565b6001600160a01b0385169190611138565b806001600160a01b0316826001600160a01b03167f2515a7e6054eff28f86c17a8bb7a2bc44c2111f763a0ce00e531639e7320f65a60405160405180910390a35050565b6000610d9c6066611240565b905090565b600054610100900460ff16610dbc5760005460ff1615610dc0565b303b155b610e325760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a656400000000000000000000000000000000000060648201526084016103af565b600054610100900460ff16158015610e54576000805461ffff19166101011790555b610e5c61124a565b6065805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384161790558015610e96576000805461ff00191690555b5050565b6033546001600160a01b03163314610ef45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103af565b610eff6066826110c4565b610f715760405162461bcd60e51b815260206004820152602160248201527f5a61704465706f7369746f723a20746f6b656e20616c7265616479206164646560448201527f640000000000000000000000000000000000000000000000000000000000000060648201526084016103af565b6040516001600160a01b03821681527f784c8f4dbf0ffedd6e72c76501c545a70f8b203b30a26ce542bf92ba87c248a490602001610bbe565b6000610fb76066836112bd565b92915050565b6033546001600160a01b031633146110175760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103af565b6001600160a01b0381166110935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016103af565b61109c816110d9565b50565b6001600160a01b038116600090815260018301602052604081205415155b9392505050565b60006110bd836001600160a01b0384166112c9565b603380546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051636eb1769f60e11b81523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e90604401602060405180830381865afa158015611189573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ad919061174c565b6111b79190611792565b604080516001600160a01b038616602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b30000000000000000000000000000000000000000000000000000000017905290915061123a908590611318565b50505050565b6000610fb7825490565b600054610100900460ff166112b55760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016103af565b610c2d611402565b60006110bd8383611476565b600081815260018301602052604081205461131057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610fb7565b506000610fb7565b600061136d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166114a09092919063ffffffff16565b8051909150156113fd578080602001905181019061138b919061172a565b6113fd5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016103af565b505050565b600054610100900460ff1661146d5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016103af565b610c2d336110d9565b600082600001828154811061148d5761148d6117aa565b9060005260206000200154905092915050565b60606114af84846000856114b7565b949350505050565b60608247101561152f5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016103af565b6001600160a01b0385163b6115865760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016103af565b600080866001600160a01b031685876040516115a291906117ec565b60006040518083038185875af1925050503d80600081146115df576040519150601f19603f3d011682016040523d82523d6000602084013e6115e4565b606091505b50915091506115f48282866115ff565b979650505050505050565b6060831561160e5750816110bd565b82511561161e5782518084602001fd5b8160405162461bcd60e51b81526004016103af9190611808565b6001600160a01b038116811461109c57600080fd5b60008060006060848603121561166257600080fd5b833561166d81611638565b925060208401359150604084013561168481611638565b809150509250925092565b600080604083850312156116a257600080fd5b82356116ad81611638565b946020939093013593505050565b6000602082840312156116cd57600080fd5b81356110bd81611638565b600080604083850312156116eb57600080fd5b82356116f681611638565b9150602083013561170681611638565b809150509250929050565b60006020828403121561172357600080fd5b5035919050565b60006020828403121561173c57600080fd5b815180151581146110bd57600080fd5b60006020828403121561175e57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561178d5761178d611765565b500390565b600082198211156117a5576117a5611765565b500190565b634e487b7160e01b600052603260045260246000fd5b60005b838110156117db5781810151838201526020016117c3565b8381111561123a5750506000910152565b600082516117fe8184602087016117c0565b9190910192915050565b60208152600082518060208401526118278160408501602087016117c0565b601f01601f1916919091016040019291505056fea26469706673582212201fbe58d98056330e0d51a6b2475997c9687bf3b2d8ff8306b0be2b14a55a7a1764736f6c634300080b0033
Deployed Bytecode
0x6080604052600436106100df5760003560e01c80639282e47b11610084578063d48bfca711610056578063d48bfca71461027a578063edae10da1461029a578063f2fde38b146102ba578063fee8c620146102da57005b80639282e47b146101ef578063a0fc92871461020f578063b0c26ecf14610245578063c4d66de81461025a57005b806350879c1c116100bd57806350879c1c146101745780635fa7b5841461019c578063715018a6146101bc5780638da5cb5b146101d157005b8063338346d2146100e157806344fb9b2614610126578063472d3e4114610154575b005b3480156100ed57600080fd5b5061010973ae7ab96520de3a18e5e111b5eaab095312d7fe8481565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561013257600080fd5b5061014661014136600461164d565b6102fa565b60405190815260200161011d565b34801561016057600080fd5b5061014661016f36600461168f565b610714565b34801561018057600080fd5b5061010973c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b3480156101a857600080fd5b506100df6101b73660046116bb565b610acc565b3480156101c857600080fd5b506100df610bc9565b3480156101dd57600080fd5b506033546001600160a01b0316610109565b3480156101fb57600080fd5b506100df61020a3660046116d8565b610c2f565b34801561021b57600080fd5b5061010961022a3660046116bb565b6068602052600090815260409020546001600160a01b031681565b34801561025157600080fd5b50610146610d90565b34801561026657600080fd5b506100df6102753660046116bb565b610da1565b34801561028657600080fd5b506100df6102953660046116bb565b610e9a565b3480156102a657600080fd5b506101096102b5366004611711565b610faa565b3480156102c657600080fd5b506100df6102d53660046116bb565b610fbd565b3480156102e657600080fd5b50606554610109906001600160a01b031681565b6065546040516383146b1d60e01b81523360048201526000916001600160a01b0316906383146b1d90602401602060405180830381865afa158015610343573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610367919061172a565b6103b85760405162461bcd60e51b815260206004820152601c60248201527f5a61704465706f7369746f723a20496e76616c69642063616c6c65720000000060448201526064015b60405180910390fd5b836103c460668261109f565b61041c5760405162461bcd60e51b815260206004820152602360248201527f5a61704465706f7369746f723a20696e76616c696420746f6b656e206164647260448201526265737360e81b60648201526084016103af565b6040516323b872dd60e01b81526001600160a01b038481166004830152306024830152604482018690528616906323b872dd906064016020604051808303816000875af1158015610471573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610495919061172a565b506040516370a0823160e01b81523060048201526000906001600160a01b038716906370a0823190602401602060405180830381865afa1580156104dd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610501919061174c565b604051632e1a7d4d60e01b81526004810182905290915073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc290632e1a7d4d90602401600060405180830381600087803b15801561055157600080fd5b505af1158015610565573d6000803e3d6000fd5b50506040517f192084510000000000000000000000000000000000000000000000000000000081524760048201526000925073ae7ab96520de3a18e5e111b5eaab095312d7fe849150631920845190602401602060405180830381865afa1580156105d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f8919061174c565b60405163a1903eab60e01b81526000600482015290915073ae7ab96520de3a18e5e111b5eaab095312d7fe849063a1903eab90479060240160206040518083038185885af115801561064e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610673919061174c565b506040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810182905273ae7ab96520de3a18e5e111b5eaab095312d7fe849063a9059cbb906044016020604051808303816000875af11580156106e5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610709919061172a565b509695505050505050565b6065546040516383146b1d60e01b81523360048201526000916001600160a01b0316906383146b1d90602401602060405180830381865afa15801561075d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610781919061172a565b6107cd5760405162461bcd60e51b815260206004820152601c60248201527f5a61704465706f7369746f723a20496e76616c69642063616c6c65720000000060448201526064016103af565b826107d960668261109f565b6108315760405162461bcd60e51b815260206004820152602360248201527f5a61704465706f7369746f723a20696e76616c696420746f6b656e206164647260448201526265737360e81b60648201526084016103af565b6001600160a01b038416156108885760405162461bcd60e51b815260206004820152601d60248201527f4c69646f3a20546f6b656e2061646472657373206e6f742076616c696400000060448201526064016103af565b6040516323b872dd60e01b8152336004820152306024820152604481018490526001600160a01b038516906323b872dd906064016020604051808303816000875af11580156108db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ff919061172a565b506040516370a0823160e01b81523060048201526000906001600160a01b038616906370a0823190602401602060405180830381865afa158015610947573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061096b919061174c565b604051632e1a7d4d60e01b81526004810182905290915073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc290632e1a7d4d90602401600060405180830381600087803b1580156109bb57600080fd5b505af11580156109cf573d6000803e3d6000fd5b505060405163a1903eab60e01b81526000600482015273ae7ab96520de3a18e5e111b5eaab095312d7fe84925063a1903eab9150479060240160206040518083038185885af1158015610a26573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610a4b919061174c565b506040516370a0823160e01b815230600482015260009073ae7ab96520de3a18e5e111b5eaab095312d7fe84906370a0823190602401602060405180830381865afa158015610a9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac2919061174c565b9695505050505050565b6033546001600160a01b03163314610b265760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103af565b610b316066826110c4565b610b895760405162461bcd60e51b815260206004820152602360248201527f5a61704465706f7369746f723a20696e76616c696420746f6b656e206164647260448201526265737360e81b60648201526084016103af565b6040516001600160a01b03821681527f4c910b69fe65a61f7531b9c5042b2329ca7179c77290aa7e2eb3afa3c8511fd3906020015b60405180910390a150565b6033546001600160a01b03163314610c235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103af565b610c2d60006110d9565b565b6033546001600160a01b03163314610c895760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103af565b6001600160a01b0382811660008181526068602052604090819020805473ffffffffffffffffffffffffffffffffffffffff1916938516938417905551636eb1769f60e11b81523060048201526024810192909252610d4c9183919063dd62ed3e90604401602060405180830381865afa158015610d0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d2f919061174c565b610d3b9060001961177b565b6001600160a01b0385169190611138565b806001600160a01b0316826001600160a01b03167f2515a7e6054eff28f86c17a8bb7a2bc44c2111f763a0ce00e531639e7320f65a60405160405180910390a35050565b6000610d9c6066611240565b905090565b600054610100900460ff16610dbc5760005460ff1615610dc0565b303b155b610e325760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a656400000000000000000000000000000000000060648201526084016103af565b600054610100900460ff16158015610e54576000805461ffff19166101011790555b610e5c61124a565b6065805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384161790558015610e96576000805461ff00191690555b5050565b6033546001600160a01b03163314610ef45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103af565b610eff6066826110c4565b610f715760405162461bcd60e51b815260206004820152602160248201527f5a61704465706f7369746f723a20746f6b656e20616c7265616479206164646560448201527f640000000000000000000000000000000000000000000000000000000000000060648201526084016103af565b6040516001600160a01b03821681527f784c8f4dbf0ffedd6e72c76501c545a70f8b203b30a26ce542bf92ba87c248a490602001610bbe565b6000610fb76066836112bd565b92915050565b6033546001600160a01b031633146110175760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103af565b6001600160a01b0381166110935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016103af565b61109c816110d9565b50565b6001600160a01b038116600090815260018301602052604081205415155b9392505050565b60006110bd836001600160a01b0384166112c9565b603380546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051636eb1769f60e11b81523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e90604401602060405180830381865afa158015611189573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ad919061174c565b6111b79190611792565b604080516001600160a01b038616602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f095ea7b30000000000000000000000000000000000000000000000000000000017905290915061123a908590611318565b50505050565b6000610fb7825490565b600054610100900460ff166112b55760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016103af565b610c2d611402565b60006110bd8383611476565b600081815260018301602052604081205461131057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610fb7565b506000610fb7565b600061136d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166114a09092919063ffffffff16565b8051909150156113fd578080602001905181019061138b919061172a565b6113fd5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016103af565b505050565b600054610100900460ff1661146d5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b60648201526084016103af565b610c2d336110d9565b600082600001828154811061148d5761148d6117aa565b9060005260206000200154905092915050565b60606114af84846000856114b7565b949350505050565b60608247101561152f5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016103af565b6001600160a01b0385163b6115865760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016103af565b600080866001600160a01b031685876040516115a291906117ec565b60006040518083038185875af1925050503d80600081146115df576040519150601f19603f3d011682016040523d82523d6000602084013e6115e4565b606091505b50915091506115f48282866115ff565b979650505050505050565b6060831561160e5750816110bd565b82511561161e5782518084602001fd5b8160405162461bcd60e51b81526004016103af9190611808565b6001600160a01b038116811461109c57600080fd5b60008060006060848603121561166257600080fd5b833561166d81611638565b925060208401359150604084013561168481611638565b809150509250925092565b600080604083850312156116a257600080fd5b82356116ad81611638565b946020939093013593505050565b6000602082840312156116cd57600080fd5b81356110bd81611638565b600080604083850312156116eb57600080fd5b82356116f681611638565b9150602083013561170681611638565b809150509250929050565b60006020828403121561172357600080fd5b5035919050565b60006020828403121561173c57600080fd5b815180151581146110bd57600080fd5b60006020828403121561175e57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b60008282101561178d5761178d611765565b500390565b600082198211156117a5576117a5611765565b500190565b634e487b7160e01b600052603260045260246000fd5b60005b838110156117db5781810151838201526020016117c3565b8381111561123a5750506000910152565b600082516117fe8184602087016117c0565b9190910192915050565b60208152600082518060208401526118278160408501602087016117c0565b601f01601f1916919091016040019291505056fea26469706673582212201fbe58d98056330e0d51a6b2475997c9687bf3b2d8ff8306b0be2b14a55a7a1764736f6c634300080b0033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.