Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
20516440 | 111 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Name:
SolvBTC
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; import "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol"; import "./utils/ERC3525TransferHelper.sol"; import "./ISolvBTC.sol"; import "./SolvBTCMultiAssetPool.sol"; contract SolvBTC is ISolvBTC, ERC20Upgradeable, ReentrancyGuardUpgradeable, Ownable2StepUpgradeable, AccessControlUpgradeable { /// @custom:storage-location erc7201:solv.storage.SolvBTC struct SolvBTCStorage { address _solvBTCMultiAssetPool; } address public wrappedSftAddress; uint256 public wrappedSftSlot; address public navOracle; uint256 public holdingValueSftId; uint256[] internal _holdingEmptySftIds; // keccak256(abi.encode(uint256(keccak256("solv.storage.SolvBTC")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant SolvBTCStorageLocation = 0x25351088c72db31d4a47cbdabb12f8d9c124b300211236164ae2941317058400; bytes32 public constant SOLVBTC_MINTER_ROLE = keccak256(abi.encodePacked("SOLVBTC_MINTER")); event SetSolvBTCMultiAssetPool(address indexed solvBTCMultiAssetPool); /// @custom:oz-upgrades-unsafe-allow constructor constructor() { _disableInitializers(); } function initialize(string memory name_, string memory symbol_) external virtual initializer { ERC20Upgradeable.__ERC20_init(name_, symbol_); ReentrancyGuardUpgradeable.__ReentrancyGuard_init(); } function initializeV2(address solvBTCMultiAssetPool_) external virtual reinitializer(2) { require(msg.sender == 0x55C09707Fd7aFD670e82A62FaeE312903940013E, "SolvBTC: only owner"); _transferOwnership(msg.sender); _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _setSolvBTCMultiAssetPool(solvBTCMultiAssetPool_); if (holdingValueSftId != 0) { ERC3525TransferHelper.doTransferOut(wrappedSftAddress, solvBTCMultiAssetPool(), holdingValueSftId); } wrappedSftAddress = address(0); wrappedSftSlot = 0; navOracle = address(0); holdingValueSftId = 0; } function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControlUpgradeable, IERC165) returns (bool) { return interfaceId == type(IERC3525Receiver).interfaceId || interfaceId == type(IERC721Receiver).interfaceId || interfaceId == type(IERC165).interfaceId || super.supportsInterface(interfaceId); } function onERC3525Received( address, /* operator_ */ uint256 /* fromSftId_ */, uint256 /* sftId_ */, uint256 /* value_ */, bytes calldata /* data_ */ ) external virtual override returns (bytes4) { revert ERC3525NotReceivable(msg.sender); } function onERC721Received( address /* operator_ */, address /* from_ */, uint256 /* sftId_ */, bytes calldata /* data_ */ ) external virtual override returns (bytes4) { revert ERC721NotReceivable(msg.sender); } function mint(address account_, uint256 value_) external virtual nonReentrant onlyRole(SOLVBTC_MINTER_ROLE) { require(value_ > 0, "SolvBTC: mint value cannot be 0"); _mint(account_, value_); } function burn(address account_, uint256 value_) external virtual nonReentrant onlyRole(SOLVBTC_MINTER_ROLE) { require(value_ > 0, "SolvBTC: burn value cannot be 0"); _burn(account_, value_); } function sweepEmptySftIds(address sft_, uint256 sweepAmount_) external virtual { uint256 length = _holdingEmptySftIds.length; for (uint256 i = 0; i < length && i < sweepAmount_; i++) { uint256 lastSftId = _holdingEmptySftIds[_holdingEmptySftIds.length - 1]; ERC3525TransferHelper.doTransferOut(sft_, 0x000000000000000000000000000000000000dEaD, lastSftId); _holdingEmptySftIds.pop(); } if (_holdingEmptySftIds.length == 0) { delete _holdingEmptySftIds; } } function _getSolvBTCStorage() private pure returns (SolvBTCStorage storage $) { assembly { $.slot := SolvBTCStorageLocation } } function solvBTCMultiAssetPool() public view virtual returns (address) { SolvBTCStorage storage $ = _getSolvBTCStorage(); return $._solvBTCMultiAssetPool; } function _setSolvBTCMultiAssetPool(address solvBTCMultiAssetPool_) internal virtual { require(solvBTCMultiAssetPool_ != address(0), "SolvBTC: invalid solvBTCMultiAssetPool address"); SolvBTCStorage storage $ = _getSolvBTCStorage(); require($._solvBTCMultiAssetPool == address(0), "SolvBTC: solvBTCMultiAssetPool already set"); $._solvBTCMultiAssetPool = solvBTCMultiAssetPool_; emit SetSolvBTCMultiAssetPool(solvBTCMultiAssetPool_); } uint256[45] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol) pragma solidity ^0.8.20; import {IAccessControl} from "@openzeppelin/contracts/access/IAccessControl.sol"; import {ContextUpgradeable} from "../utils/ContextUpgradeable.sol"; import {ERC165Upgradeable} from "../utils/introspection/ERC165Upgradeable.sol"; import {Initializable} from "../proxy/utils/Initializable.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ```solidity * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ```solidity * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules} * to enforce additional security measures for this role. */ abstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControl, ERC165Upgradeable { struct RoleData { mapping(address account => bool) hasRole; bytes32 adminRole; } bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /// @custom:storage-location erc7201:openzeppelin.storage.AccessControl struct AccessControlStorage { mapping(bytes32 role => RoleData) _roles; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.AccessControl")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant AccessControlStorageLocation = 0x02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b626800; function _getAccessControlStorage() private pure returns (AccessControlStorage storage $) { assembly { $.slot := AccessControlStorageLocation } } /** * @dev Modifier that checks that an account has a specific role. Reverts * with an {AccessControlUnauthorizedAccount} error including the required role. */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } function __AccessControl_init() internal onlyInitializing { } function __AccessControl_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual returns (bool) { AccessControlStorage storage $ = _getAccessControlStorage(); return $._roles[role].hasRole[account]; } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()` * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier. */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account` * is missing `role`. */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert AccessControlUnauthorizedAccount(account, role); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) { AccessControlStorage storage $ = _getAccessControlStorage(); return $._roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address callerConfirmation) public virtual { if (callerConfirmation != _msgSender()) { revert AccessControlBadConfirmation(); } _revokeRole(role, callerConfirmation); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { AccessControlStorage storage $ = _getAccessControlStorage(); bytes32 previousAdminRole = getRoleAdmin(role); $._roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual returns (bool) { AccessControlStorage storage $ = _getAccessControlStorage(); if (!hasRole(role, account)) { $._roles[role].hasRole[account] = true; emit RoleGranted(role, account, _msgSender()); return true; } else { return false; } } /** * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual returns (bool) { AccessControlStorage storage $ = _getAccessControlStorage(); if (hasRole(role, account)) { $._roles[role].hasRole[account] = false; emit RoleRevoked(role, account, _msgSender()); return true; } else { return false; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable2Step.sol) pragma solidity ^0.8.20; import {OwnableUpgradeable} from "./OwnableUpgradeable.sol"; import {Initializable} from "../proxy/utils/Initializable.sol"; /** * @dev Contract module which provides access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is specified at deployment time in the constructor for `Ownable`. This * can later be changed with {transferOwnership} and {acceptOwnership}. * * This module is used through inheritance. It will make available all functions * from parent (Ownable). */ abstract contract Ownable2StepUpgradeable is Initializable, OwnableUpgradeable { /// @custom:storage-location erc7201:openzeppelin.storage.Ownable2Step struct Ownable2StepStorage { address _pendingOwner; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Ownable2Step")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant Ownable2StepStorageLocation = 0x237e158222e3e6968b72b9db0d8043aacf074ad9f650f0d1606b4d82ee432c00; function _getOwnable2StepStorage() private pure returns (Ownable2StepStorage storage $) { assembly { $.slot := Ownable2StepStorageLocation } } event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner); function __Ownable2Step_init() internal onlyInitializing { } function __Ownable2Step_init_unchained() internal onlyInitializing { } /** * @dev Returns the address of the pending owner. */ function pendingOwner() public view virtual returns (address) { Ownable2StepStorage storage $ = _getOwnable2StepStorage(); return $._pendingOwner; } /** * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual override onlyOwner { Ownable2StepStorage storage $ = _getOwnable2StepStorage(); $._pendingOwner = newOwner; emit OwnershipTransferStarted(owner(), newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner. * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual override { Ownable2StepStorage storage $ = _getOwnable2StepStorage(); delete $._pendingOwner; super._transferOwnership(newOwner); } /** * @dev The new owner accepts the ownership transfer. */ function acceptOwnership() public virtual { address sender = _msgSender(); if (pendingOwner() != sender) { revert OwnableUnauthorizedAccount(sender); } _transferOwnership(sender); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {ContextUpgradeable} from "../utils/ContextUpgradeable.sol"; import {Initializable} from "../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. * * 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 OwnableUpgradeable is Initializable, ContextUpgradeable { /// @custom:storage-location erc7201:openzeppelin.storage.Ownable struct OwnableStorage { address _owner; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Ownable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant OwnableStorageLocation = 0x9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300; function _getOwnableStorage() private pure returns (OwnableStorage storage $) { assembly { $.slot := OwnableStorageLocation } } /** * @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. */ function __Ownable_init(address initialOwner) internal onlyInitializing { __Ownable_init_unchained(initialOwner); } function __Ownable_init_unchained(address initialOwner) internal onlyInitializing { 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) { OwnableStorage storage $ = _getOwnableStorage(); 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 { OwnableStorage storage $ = _getOwnableStorage(); address oldOwner = $._owner; $._owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.20; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ```solidity * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Storage of the initializable contract. * * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions * when using with upgradeable contracts. * * @custom:storage-location erc7201:openzeppelin.storage.Initializable */ struct InitializableStorage { /** * @dev Indicates that the contract has been initialized. */ uint64 _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool _initializing; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Initializable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00; /** * @dev The contract is already initialized. */ error InvalidInitialization(); /** * @dev The contract is not initializing. */ error NotInitializing(); /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint64 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in * production. * * Emits an {Initialized} event. */ modifier initializer() { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); // Cache values to avoid duplicated sloads bool isTopLevelCall = !$._initializing; uint64 initialized = $._initialized; // Allowed calls: // - initialSetup: the contract is not in the initializing state and no previous version was // initialized // - construction: the contract is initialized at version 1 (no reininitialization) and the // current contract is just being deployed bool initialSetup = initialized == 0 && isTopLevelCall; bool construction = initialized == 1 && address(this).code.length == 0; if (!initialSetup && !construction) { revert InvalidInitialization(); } $._initialized = 1; if (isTopLevelCall) { $._initializing = true; } _; if (isTopLevelCall) { $._initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint64 version) { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing || $._initialized >= version) { revert InvalidInitialization(); } $._initialized = version; $._initializing = true; _; $._initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { _checkInitializing(); _; } /** * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}. */ function _checkInitializing() internal view virtual { if (!_isInitializing()) { revert NotInitializing(); } } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing) { revert InvalidInitialization(); } if ($._initialized != type(uint64).max) { $._initialized = type(uint64).max; emit Initialized(type(uint64).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint64) { return _getInitializableStorage()._initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _getInitializableStorage()._initializing; } /** * @dev Returns a pointer to the storage namespace. */ // solhint-disable-next-line var-name-mixedcase function _getInitializableStorage() private pure returns (InitializableStorage storage $) { assembly { $.slot := INITIALIZABLE_STORAGE } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import {ContextUpgradeable} from "../../utils/ContextUpgradeable.sol"; import {IERC20Errors} from "@openzeppelin/contracts/interfaces/draft-IERC6093.sol"; import {Initializable} from "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20, IERC20Metadata, IERC20Errors { /// @custom:storage-location erc7201:openzeppelin.storage.ERC20 struct ERC20Storage { mapping(address account => uint256) _balances; mapping(address account => mapping(address spender => uint256)) _allowances; uint256 _totalSupply; string _name; string _symbol; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.ERC20")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant ERC20StorageLocation = 0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00; function _getERC20Storage() private pure returns (ERC20Storage storage $) { assembly { $.slot := ERC20StorageLocation } } /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ function __ERC20_init(string memory name_, string memory symbol_) internal onlyInitializing { __ERC20_init_unchained(name_, symbol_); } function __ERC20_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { ERC20Storage storage $ = _getERC20Storage(); $._name = name_; $._symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { ERC20Storage storage $ = _getERC20Storage(); return $._name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { ERC20Storage storage $ = _getERC20Storage(); return $._symbol; } /** * @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 default value returned by this function, unless * it's overridden. * * 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() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { ERC20Storage storage $ = _getERC20Storage(); return $._totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { ERC20Storage storage $ = _getERC20Storage(); return $._balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { ERC20Storage storage $ = _getERC20Storage(); return $._allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { ERC20Storage storage $ = _getERC20Storage(); if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows $._totalSupply += value; } else { uint256 fromBalance = $._balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. $._balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. $._totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. $._balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { ERC20Storage storage $ = _getERC20Storage(); if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } $._allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; import {Initializable} from "../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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.20; import {Initializable} from "../proxy/utils/Initializable.sol"; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuardUpgradeable is Initializable { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant NOT_ENTERED = 1; uint256 private constant ENTERED = 2; /// @custom:storage-location erc7201:openzeppelin.storage.ReentrancyGuard struct ReentrancyGuardStorage { uint256 _status; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.ReentrancyGuard")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant ReentrancyGuardStorageLocation = 0x9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00; function _getReentrancyGuardStorage() private pure returns (ReentrancyGuardStorage storage $) { assembly { $.slot := ReentrancyGuardStorageLocation } } /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); function __ReentrancyGuard_init() internal onlyInitializing { __ReentrancyGuard_init_unchained(); } function __ReentrancyGuard_init_unchained() internal onlyInitializing { ReentrancyGuardStorage storage $ = _getReentrancyGuardStorage(); $._status = NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { ReentrancyGuardStorage storage $ = _getReentrancyGuardStorage(); // On the first call to nonReentrant, _status will be NOT_ENTERED if ($._status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // Any calls to nonReentrant after this point will fail $._status = ENTERED; } function _nonReentrantAfter() private { ReentrancyGuardStorage storage $ = _getReentrancyGuardStorage(); // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) $._status = NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { ReentrancyGuardStorage storage $ = _getReentrancyGuardStorage(); return $._status == ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol"; import {Initializable} from "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` */ abstract contract ERC165Upgradeable is Initializable, IERC165 { function __ERC165_init() internal onlyInitializing { } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/IAccessControl.sol) pragma solidity ^0.8.20; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev The `account` is missing a role. */ error AccessControlUnauthorizedAccount(address account, bytes32 neededRole); /** * @dev The caller of a function is not the expected one. * * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}. */ error AccessControlBadConfirmation(); /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. */ function renounceRole(bytes32 role, address callerConfirmation) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; import "./external/IERC721Receiver.sol"; import "./external/IERC3525Receiver.sol"; interface ISolvBTC is IERC20, IERC721Receiver, IERC3525Receiver, IERC165 { error ERC721NotReceivable(address token); error ERC3525NotReceivable(address token); function mint(address account, uint256 value) external; function burn(address account, uint256 value) external; function solvBTCMultiAssetPool() external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface ISolvBTCMultiAssetPool { function deposit(address sft_, uint256 sftId_, uint256 value_) external; function withdraw(address sft, uint256 slot, uint256 sftId, uint256 value) external returns (uint256 toSftId_); function isSftSlotDepositAllowed(address sft_, uint256 slot_) external view returns (bool); function isSftSlotWithdrawAllowed(address sft_, uint256 slot_) external view returns (bool); function getERC20(address sft_, uint256 slot_) external view returns (address); function getHoldingValueSftId(address sft_, uint256 slot_) external view returns (uint256); function getSftSlotBalance(address sft_, uint256 slot_) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; import "@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "./access/AdminControlUpgradeable.sol"; import "./utils/ERC3525TransferHelper.sol"; import "./external/IERC3525.sol"; import "./ISolvBTCMultiAssetPool.sol"; import "./ISolvBTC.sol"; contract SolvBTCMultiAssetPool is ISolvBTCMultiAssetPool, ReentrancyGuardUpgradeable, AdminControlUpgradeable { struct SftSlotInfo { uint256 holdingValueSftId; address erc20; bool depositAllowed; bool withdrawAllowed; } mapping(address => mapping(uint256 => SftSlotInfo)) internal _sftSlotInfos; event AddSftSlot(address indexed sft, uint256 indexed slot, address indexed erc20, uint256 holdingValueSftId); event SftSlotAllowedChanged(address indexed sft, uint256 indexed slot, bool depositAllowed, bool withdrawAllowed); event Deposit( address indexed owner, address indexed sft, uint256 indexed slot, address erc20, uint256 sftId, uint256 value ); event Withdraw( address indexed owner, address indexed sft, uint256 indexed slot, address erc20, uint256 sftId, uint256 value ); /// @custom:oz-upgrades-unsafe-allow constructor constructor() { _disableInitializers(); } function initialize() external virtual initializer { AdminControlUpgradeable.__AdminControl_init(msg.sender); ReentrancyGuardUpgradeable.__ReentrancyGuard_init(); } function deposit(address sft_, uint256 sftId_, uint256 value_) external virtual override nonReentrant { require(value_ > 0, "SolvBTCMultiAssetPool: deposit amount cannot be 0"); require(msg.sender == IERC3525(sft_).ownerOf(sftId_), "SolvBTCMultiAssetPool: caller is not sft owner"); uint256 slot = IERC3525(sft_).slotOf(sftId_); SftSlotInfo storage sftSlotInfo = _sftSlotInfos[sft_][slot]; require(sftSlotInfo.depositAllowed, "SolvBTCMultiAssetPool: sft slot deposit not allowed"); uint256 sftBalance = IERC3525(sft_).balanceOf(sftId_); if (value_ == sftBalance) { ERC3525TransferHelper.doTransferIn(sft_, msg.sender, sftId_); if (sftSlotInfo.holdingValueSftId == 0) { sftSlotInfo.holdingValueSftId = sftId_; } else { ERC3525TransferHelper.doTransfer(sft_, sftId_, sftSlotInfo.holdingValueSftId, value_); ERC3525TransferHelper.doTransferOut(sft_, 0x000000000000000000000000000000000000dEaD, sftId_); } } else if (value_ < sftBalance) { if (sftSlotInfo.holdingValueSftId == 0) { sftSlotInfo.holdingValueSftId = ERC3525TransferHelper.doTransferIn(sft_, sftId_, value_); } else { ERC3525TransferHelper.doTransfer(sft_, sftId_, sftSlotInfo.holdingValueSftId, value_); } } else { revert("SolvBTCMultiAssetPool: deposit amount exceeds sft balance"); } ISolvBTC(sftSlotInfo.erc20).mint(msg.sender, value_); emit Deposit(msg.sender, sft_, slot, sftSlotInfo.erc20, sftId_, value_); } function withdraw(address sft_, uint256 slot_, uint256 sftId_, uint256 value_) external virtual override nonReentrant returns (uint256 toSftId_) { require(value_ > 0, "SolvBTCMultiAssetPool: withdraw amount cannot be 0"); SftSlotInfo storage sftSlotInfo = _sftSlotInfos[sft_][slot_]; require(sftSlotInfo.withdrawAllowed, "SolvBTCMultiAssetPool: sft slot not allowed"); uint256 sftSlotBalance = getSftSlotBalance(sft_, slot_); require(value_ <= sftSlotBalance, "SolvBTCMultiAssetPool: insufficient balance"); ISolvBTC(sftSlotInfo.erc20).burn(msg.sender, value_); if (sftId_ == 0) { toSftId_ = ERC3525TransferHelper.doTransferOut(sft_, sftSlotInfo.holdingValueSftId, msg.sender, value_); } else { require(slot_ == IERC3525(sft_).slotOf(sftId_), "SolvBTCMultiAssetPool: slot not matched"); require(msg.sender == IERC3525(sft_).ownerOf(sftId_), "SolvBTCMultiAssetPool: caller is not sft owner"); ERC3525TransferHelper.doTransfer(sft_, sftSlotInfo.holdingValueSftId, sftId_, value_); toSftId_ = sftId_; } emit Withdraw(msg.sender, sft_, slot_, sftSlotInfo.erc20, toSftId_, value_); } function addSftSlotOnlyAdmin(address sft_, uint256 slot_, address erc20_, uint256 holdingValueSftId_) external virtual onlyAdmin { SftSlotInfo storage sftSlotInfo = _sftSlotInfos[sft_][slot_]; require(sftSlotInfo.erc20 == address(0), "SolvBTCMultiAssetPool: sft slot already existed"); require( IERC3525(sft_).valueDecimals() == IERC20Metadata(erc20_).decimals(), "SolvBTCMultiAssetPool: decimals not matched" ); if (holdingValueSftId_ > 0) { require(IERC3525(sft_).slotOf(holdingValueSftId_) == slot_, "SolvBTCMultiAssetPool: slot not matched"); require( IERC3525(sft_).ownerOf(holdingValueSftId_) == address(this), "SolvBTCMultiAssetPool: sftId not owned" ); } sftSlotInfo.holdingValueSftId = holdingValueSftId_; sftSlotInfo.erc20 = erc20_; sftSlotInfo.depositAllowed = true; sftSlotInfo.withdrawAllowed = true; emit AddSftSlot(sft_, slot_, erc20_, holdingValueSftId_); } function changeSftSlotAllowedOnlyAdmin(address sft_, uint256 slot_, bool depositAllowed_, bool withdrawAllowed_) external virtual onlyAdmin { SftSlotInfo storage sftSlotInfo = _sftSlotInfos[sft_][slot_]; require(sftSlotInfo.erc20 != address(0), "SolvBTCMultiAssetPool: sft slot not existed"); sftSlotInfo.depositAllowed = depositAllowed_; sftSlotInfo.withdrawAllowed = withdrawAllowed_; emit SftSlotAllowedChanged(sft_, slot_, depositAllowed_, withdrawAllowed_); } function isSftSlotDepositAllowed(address sft_, uint256 slot_) public view virtual override returns (bool) { return _sftSlotInfos[sft_][slot_].depositAllowed; } function isSftSlotWithdrawAllowed(address sft_, uint256 slot_) public view virtual override returns (bool) { return _sftSlotInfos[sft_][slot_].withdrawAllowed; } function getERC20(address sft_, uint256 slot_) public view virtual override returns (address) { return _sftSlotInfos[sft_][slot_].erc20; } function getHoldingValueSftId(address sft_, uint256 slot_) public view virtual override returns (uint256) { return _sftSlotInfos[sft_][slot_].holdingValueSftId; } function getSftSlotBalance(address sft_, uint256 slot_) public view virtual override returns (uint256) { SftSlotInfo storage sftSlotInfo = _sftSlotInfos[sft_][slot_]; return sftSlotInfo.holdingValueSftId == 0 ? 0 : IERC3525(sft_).balanceOf(sftSlotInfo.holdingValueSftId); } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; abstract contract AdminControlUpgradeable is Initializable { event NewAdmin(address oldAdmin, address newAdmin); event NewPendingAdmin(address oldPendingAdmin, address newPendingAdmin); address public admin; address public pendingAdmin; modifier onlyAdmin() { require(msg.sender == admin, "only admin"); _; } modifier onlyPendingAdmin() { require(msg.sender == pendingAdmin, "only pending admin"); _; } function __AdminControl_init(address admin_) internal onlyInitializing { __AdminControl_init_unchained(admin_); } function __AdminControl_init_unchained(address admin_) internal onlyInitializing { admin = admin_; emit NewAdmin(address(0), admin_); } function transferAdmin(address newPendingAdmin_) external virtual onlyAdmin { emit NewPendingAdmin(pendingAdmin, newPendingAdmin_); pendingAdmin = newPendingAdmin_; } function acceptAdmin() external virtual onlyPendingAdmin { emit NewAdmin(admin, pendingAdmin); admin = pendingAdmin; delete pendingAdmin; } uint256[48] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; import "./IERC721.sol"; interface IERC3525 is IERC721 { function valueDecimals() external view returns (uint8); function balanceOf(uint256 tokenId) external view returns (uint256); function slotOf(uint256 tokenId) external view returns (uint256); function allowance(uint256 tokenId, address operator) external view returns (uint256); function approve(address operator, uint256 tokenId) external payable; function approve(uint256 tokenId, address operator, uint256 value) external payable; function transferFrom(uint256 fromTokenId, uint256 toTokenId, uint256 value) external payable; function transferFrom(uint256 fromTokenId, address to, uint256 value) external payable returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface IERC3525Receiver { function onERC3525Received(address operator, uint256 fromTokenId, uint256 toTokenId, uint256 value, bytes calldata data) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface IERC721 { function balanceOf(address owner) external view returns (uint256); function ownerOf(uint256 tokenId) external view returns (address); function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); function getApproved(uint256 tokenId) external view returns (address); function isApprovedForAll(address owner, address operator) external view returns (bool); function approve(address approved, uint256 tokenId) external payable; function setApprovalForAll(address operator, bool approved) external; function transferFrom(address from, address to, uint256 tokenId) external payable; function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external payable; function safeTransferFrom(address from, address to, uint256 tokenId) external payable; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface IERC721Receiver { function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; interface ERC721Interface { function approve(address to, uint256 tokenId) external; function transferFrom(address from, address to, uint256 tokenId) external; function safeTransferFrom(address from, address to, uint256 tokenId) external; } interface ERC3525Interface { function approve(uint256 tokenId, address to, uint256 allowance) external payable; function transferFrom(uint256 fromTokenId, uint256 toTokenId, uint256 value) external payable; function transferFrom(uint256 fromTokenId, address to, uint256 value) external payable returns (uint256); } library ERC3525TransferHelper { function doApproveId(address underlying, address to, uint256 tokenId) internal { ERC721Interface token = ERC721Interface(underlying); token.approve(to, tokenId); } function doApproveValue(address underlying, uint256 tokenId, address to, uint256 allowance) internal { ERC3525Interface token = ERC3525Interface(underlying); token.approve(tokenId, to, allowance); } function doTransferIn(address underlying, address from, uint256 tokenId) internal { ERC721Interface token = ERC721Interface(underlying); token.transferFrom(from, address(this), tokenId); } function doSafeTransferIn(address underlying, address from, uint256 tokenId) internal { ERC721Interface token = ERC721Interface(underlying); token.safeTransferFrom(from, address(this), tokenId); } function doSafeTransferOut(address underlying, address to, uint256 tokenId) internal { ERC721Interface token = ERC721Interface(underlying); token.safeTransferFrom(address(this), to, tokenId); } function doTransferOut(address underlying, address to, uint256 tokenId) internal { ERC721Interface token = ERC721Interface(underlying); token.transferFrom(address(this), to, tokenId); } function doTransferIn(address underlying, uint256 fromTokenId, uint256 value) internal returns (uint256 newTokenId) { ERC3525Interface token = ERC3525Interface(underlying); return token.transferFrom(fromTokenId, address(this), value); } function doTransferOut(address underlying, uint256 fromTokenId, address to, uint256 value) internal returns (uint256 newTokenId) { ERC3525Interface token = ERC3525Interface(underlying); newTokenId = token.transferFrom(fromTokenId, to, value); } function doTransfer(address underlying, address from, address to, uint256 tokenId) internal { ERC721Interface token = ERC721Interface(underlying); token.transferFrom(from, to, tokenId); } function doTransfer(address underlying, uint256 fromTokenId, uint256 toTokenId, uint256 value) internal { ERC3525Interface token = ERC3525Interface(underlying); token.transferFrom(fromTokenId, toTokenId, value); } }
{ "evmVersion": "paris", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 1 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"ERC3525NotReceivable","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"ERC721NotReceivable","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","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":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"solvBTCMultiAssetPool","type":"address"}],"name":"SetSolvBTCMultiAssetPool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SOLVBTC_MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"},{"internalType":"uint256","name":"value_","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holdingValueSftId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"solvBTCMultiAssetPool_","type":"address"}],"name":"initializeV2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"},{"internalType":"uint256","name":"value_","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"navOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC3525Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"solvBTCMultiAssetPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sft_","type":"address"},{"internalType":"uint256","name":"sweepAmount_","type":"uint256"}],"name":"sweepEmptySftIds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wrappedSftAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wrappedSftSlot","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5061001961001e565b6100d0565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161561006e5760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b03908116146100cd5780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b611b8e806100df6000396000f3fe608060405234801561001057600080fd5b50600436106101955760003560e01c80629ce20b1461019a57806301ffc9a7146101cb57806306fdde03146101ee578063095ea7b314610203578063150b7a021461021657806318160ddd1461022957806323b872dd1461023f578063248a9ca31461025257806329b6eca9146102655780632f2ff15d1461027a578063313ce5671461028d57806336568abe1461029c57806340c10f19146102af57806344b32bd1146102c257806349d4640d146102cb5780634cd88b76146102eb5780634eb07981146102fe57806370a0823114610307578063715018a61461031a57806379ba5097146103225780638da5cb5b1461032a57806391d148541461033257806395d89b411461034557806396c495971461034d5780639dc29fac14610355578063a217fddf14610368578063a9059cbb14610370578063baecd32614610383578063d547741f14610396578063dd62ed3e146103a9578063e30c3978146103bc578063f2fde38b146103c4578063f443a35b146103d7578063fd94715b146103df575b600080fd5b6101ad6101a83660046115bb565b6103f2565b6040516001600160e01b031990911681526020015b60405180910390f35b6101de6101d936600461162b565b610418565b60405190151581526020016101c2565b6101f6610478565b6040516101c2919061165c565b6101de6102113660046116aa565b610519565b6101ad6102243660046116d4565b610531565b61023161054e565b6040519081526020016101c2565b6101de61024d366004611742565b610563565b61023161026036600461177e565b610587565b610278610273366004611797565b6105a7565b005b6102786102883660046117b2565b61070f565b604051601281526020016101c2565b6102786102aa3660046117b2565b610731565b6102786102bd3660046116aa565b610769565b61023160035481565b6002546102de906001600160a01b031681565b6040516101c291906117de565b6102786102f9366004611894565b610806565b61023160015481565b610231610315366004611797565b6108fc565b610278610927565b61027861093b565b6102de61097a565b6101de6103403660046117b2565b610995565b6101f66109cb565b6102316109e8565b6102786103633660046116aa565b610a10565b610231600081565b6101de61037e3660046116aa565b610aa0565b6000546102de906001600160a01b031681565b6102786103a43660046117b2565b610aae565b6102316103b73660046118f7565b610aca565b6102de610b06565b6102786103d2366004611797565b610b11565b6102de610b82565b6102786103ed3660046116aa565b610b8d565b60003360405163578f385f60e11b815260040161040f91906117de565b60405180910390fd5b60006001600160e01b03198216629ce20b60e01b148061044857506001600160e01b03198216630a85bd0160e11b145b8061046357506001600160e01b031982166301ffc9a760e01b145b80610472575061047282610c36565b92915050565b60606000610484610c6b565b905080600301805461049590611921565b80601f01602080910402602001604051908101604052809291908181526020018280546104c190611921565b801561050e5780601f106104e35761010080835404028352916020019161050e565b820191906000526020600020905b8154815290600101906020018083116104f157829003601f168201915b505050505091505090565b600033610527818585610c8f565b5060019392505050565b600033604051637992d8e360e11b815260040161040f91906117de565b600080610559610c6b565b6002015492915050565b600033610571858285610c9c565b61057c858585610ce9565b506001949350505050565b600080610592610d48565b60009384526020525050604090206001015490565b600260006105b3610d6c565b8054909150600160401b900460ff16806105da575080546001600160401b03808416911610155b156105f85760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160481b0319166001600160401b03831617600160401b1781557355c09707fd7afd670e82a62faee312903940013e33146106705760405162461bcd60e51b815260206004820152601360248201527229b7b63b212a219d1037b7363c9037bbb732b960691b604482015260640161040f565b61067933610d90565b610684600033610db3565b5061068e83610e54565b600354156106b6576000546106b6906001600160a01b03166106ae610b82565b600354610f81565b600080546001600160a01b031990811682556001829055600280549091169055600355805460ff60401b19168155604051600080516020611b398339815191529061070290849061195b565b60405180910390a1505050565b61071882610587565b61072181610ff2565b61072b8383610db3565b50505050565b6001600160a01b038116331461075a5760405163334bd91960e11b815260040160405180910390fd5b6107648282610ffc565b505050565b610771611074565b6040516020016107809061196f565b6040516020818303038152906040528051906020012061079f81610ff2565b600082116107ef5760405162461bcd60e51b815260206004820152601f60248201527f536f6c764254433a206d696e742076616c75652063616e6e6f74206265203000604482015260640161040f565b6107f983836110aa565b506108026110e0565b5050565b6000610810610d6c565b805490915060ff600160401b82041615906001600160401b03166000811580156108375750825b90506000826001600160401b031660011480156108535750303b155b905081158015610861575080155b1561087f5760405163f92ee8a960e01b815260040160405180910390fd5b84546001600160401b031916600117855583156108a857845460ff60401b1916600160401b1785555b6108b287876110f1565b6108ba611103565b83156108f357845460ff60401b19168555604051600080516020611b39833981519152906108ea9060019061195b565b60405180910390a15b50505050505050565b600080610907610c6b565b6001600160a01b0390931660009081526020939093525050604090205490565b61092f611113565b6109396000610d90565b565b3380610945610b06565b6001600160a01b03161461096e578060405163118cdaa760e01b815260040161040f91906117de565b61097781610d90565b50565b600080610985611145565b546001600160a01b031692915050565b6000806109a0610d48565b6000948552602090815260408086206001600160a01b03959095168652939052505090205460ff1690565b606060006109d7610c6b565b905080600401805461049590611921565b6040516020016109f79061196f565b6040516020818303038152906040528051906020012081565b610a18611074565b604051602001610a279061196f565b60405160208183030381529060405280519060200120610a4681610ff2565b60008211610a965760405162461bcd60e51b815260206004820152601f60248201527f536f6c764254433a206275726e2076616c75652063616e6e6f74206265203000604482015260640161040f565b6107f98383611169565b600033610527818585610ce9565b610ab782610587565b610ac081610ff2565b61072b8383610ffc565b600080610ad5610c6b565b6001600160a01b03948516600090815260019190910160209081526040808320959096168252939093525050205490565b60008061098561119f565b610b19611113565b6000610b2361119f565b80546001600160a01b0319166001600160a01b0384169081178255909150610b4961097a565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a35050565b6000806109856111c3565b60045460005b8181108015610ba157508281105b15610c1f576004805460009190610bba9060019061199f565b81548110610bca57610bca6119b2565b90600052602060002001549050610be48561dead83610f81565b6004805480610bf557610bf56119c8565b60019003818190600052602060002001600090559055508080610c17906119de565b915050610b93565b506004546000036107645761076460046000611525565b60006001600160e01b03198216637965db0b60e01b148061047257506301ffc9a760e01b6001600160e01b0319831614610472565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0090565b61076483838360016111e7565b6000610ca88484610aca565b9050600019811461072b5781811015610cda57828183604051637dc7a0d960e11b815260040161040f939291906119f7565b61072b848484840360006111e7565b6001600160a01b038316610d13576000604051634b637e8f60e11b815260040161040f91906117de565b6001600160a01b038216610d3d57600060405163ec442f0560e01b815260040161040f91906117de565b6107648383836112cc565b7f02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b62680090565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0090565b6000610d9a61119f565b80546001600160a01b03191681559050610802826113f4565b600080610dbe610d48565b9050610dca8484610995565b610e4a576000848152602082815260408083206001600160a01b03871684529091529020805460ff19166001179055610e003390565b6001600160a01b0316836001600160a01b0316857f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a46001915050610472565b6000915050610472565b6001600160a01b038116610ec15760405162461bcd60e51b815260206004820152602e60248201527f536f6c764254433a20696e76616c696420736f6c764254434d756c746941737360448201526d6574506f6f6c206164647265737360901b606482015260840161040f565b6000610ecb6111c3565b80549091506001600160a01b031615610f395760405162461bcd60e51b815260206004820152602a60248201527f536f6c764254433a20736f6c764254434d756c74694173736574506f6f6c20616044820152691b1c9958591e481cd95d60b21b606482015260840161040f565b80546001600160a01b0319166001600160a01b03831690811782556040517fca50bd63f1ed14f8c03423aede72ac3139bde9189ea4b717d0e62ee0f4e7a89590600090a25050565b6040516323b872dd60e01b81523060048201526001600160a01b038381166024830152604482018390528491908216906323b872dd90606401600060405180830381600087803b158015610fd457600080fd5b505af1158015610fe8573d6000803e3d6000fd5b5050505050505050565b6109778133611450565b600080611007610d48565b90506110138484610995565b15610e4a576000848152602082815260408083206001600160a01b0387168085529252808320805460ff1916905551339287917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a46001915050610472565b600061107e611489565b8054909150600119016110a457604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b6001600160a01b0382166110d457600060405163ec442f0560e01b815260040161040f91906117de565b610802600083836112cc565b60006110ea611489565b6001905550565b6110f96114ad565b61080282826114d2565b61110b6114ad565b610939611503565b3361111c61097a565b6001600160a01b031614610939573360405163118cdaa760e01b815260040161040f91906117de565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930090565b6001600160a01b038216611193576000604051634b637e8f60e11b815260040161040f91906117de565b610802826000836112cc565b7f237e158222e3e6968b72b9db0d8043aacf074ad9f650f0d1606b4d82ee432c0090565b7f25351088c72db31d4a47cbdabb12f8d9c124b300211236164ae294131705840090565b60006111f1610c6b565b90506001600160a01b03851661121d57600060405163e602df0560e01b815260040161040f91906117de565b6001600160a01b038416611247576000604051634a1406b160e11b815260040161040f91906117de565b6001600160a01b038086166000908152600183016020908152604080832093881683529290522083905581156112c557836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516112bc91815260200190565b60405180910390a35b5050505050565b60006112d6610c6b565b90506001600160a01b03841661130557818160020160008282546112fa9190611a18565b909155506113649050565b6001600160a01b038416600090815260208290526040902054828110156113455784818460405163391434e360e21b815260040161040f939291906119f7565b6001600160a01b03851660009081526020839052604090209083900390555b6001600160a01b0383166113825760028101805483900390556113a1565b6001600160a01b03831660009081526020829052604090208054830190555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113e691815260200190565b60405180910390a350505050565b60006113fe611145565b80546001600160a01b038481166001600160a01b031983168117845560405193945091169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b61145a8282610995565b6108025760405163e2517d3f60e01b81526001600160a01b03821660048201526024810183905260440161040f565b7f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0090565b6114b561150b565b61093957604051631afcd79f60e31b815260040160405180910390fd5b6114da6114ad565b60006114e4610c6b565b9050600381016114f48482611a79565b506004810161072b8382611a79565b6110e06114ad565b6000611515610d6c565b54600160401b900460ff16919050565b508054600082559060005260206000209081019061097791905b80821115611553576000815560010161153f565b5090565b80356001600160a01b038116811461156e57600080fd5b919050565b60008083601f84011261158557600080fd5b5081356001600160401b0381111561159c57600080fd5b6020830191508360208285010111156115b457600080fd5b9250929050565b60008060008060008060a087890312156115d457600080fd5b6115dd87611557565b955060208701359450604087013593506060870135925060808701356001600160401b0381111561160d57600080fd5b61161989828a01611573565b979a9699509497509295939492505050565b60006020828403121561163d57600080fd5b81356001600160e01b03198116811461165557600080fd5b9392505050565b600060208083528351808285015260005b818110156116895785810183015185820160400152820161166d565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156116bd57600080fd5b6116c683611557565b946020939093013593505050565b6000806000806000608086880312156116ec57600080fd5b6116f586611557565b945061170360208701611557565b93506040860135925060608601356001600160401b0381111561172557600080fd5b61173188828901611573565b969995985093965092949392505050565b60008060006060848603121561175757600080fd5b61176084611557565b925061176e60208501611557565b9150604084013590509250925092565b60006020828403121561179057600080fd5b5035919050565b6000602082840312156117a957600080fd5b61165582611557565b600080604083850312156117c557600080fd5b823591506117d560208401611557565b90509250929050565b6001600160a01b0391909116815260200190565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261181957600080fd5b81356001600160401b0380821115611833576118336117f2565b604051601f8301601f19908116603f0116810190828211818310171561185b5761185b6117f2565b8160405283815286602085880101111561187457600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080604083850312156118a757600080fd5b82356001600160401b03808211156118be57600080fd5b6118ca86838701611808565b935060208501359150808211156118e057600080fd5b506118ed85828601611808565b9150509250929050565b6000806040838503121561190a57600080fd5b61191383611557565b91506117d560208401611557565b600181811c9082168061193557607f821691505b60208210810361195557634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160401b0391909116815260200190565b6d29a7a62b212a21afa6a4a72a22a960911b8152600e0190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561047257610472611989565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b6000600182016119f0576119f0611989565b5060010190565b6001600160a01b039390931683526020830191909152604082015260600190565b8082018082111561047257610472611989565b601f82111561076457600081815260208120601f850160051c81016020861015611a525750805b601f850160051c820191505b81811015611a7157828155600101611a5e565b505050505050565b81516001600160401b03811115611a9257611a926117f2565b611aa681611aa08454611921565b84611a2b565b602080601f831160018114611adb5760008415611ac35750858301515b600019600386901b1c1916600185901b178555611a71565b600085815260208120601f198616915b82811015611b0a57888601518255948401946001909101908401611aeb565b5085821015611b285787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fec7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2a2646970667358221220ddf094345700522773c3c2df2f8dd76d7b4884a65fe093d11a5260c96679c1bf64736f6c63430008140033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101955760003560e01c80629ce20b1461019a57806301ffc9a7146101cb57806306fdde03146101ee578063095ea7b314610203578063150b7a021461021657806318160ddd1461022957806323b872dd1461023f578063248a9ca31461025257806329b6eca9146102655780632f2ff15d1461027a578063313ce5671461028d57806336568abe1461029c57806340c10f19146102af57806344b32bd1146102c257806349d4640d146102cb5780634cd88b76146102eb5780634eb07981146102fe57806370a0823114610307578063715018a61461031a57806379ba5097146103225780638da5cb5b1461032a57806391d148541461033257806395d89b411461034557806396c495971461034d5780639dc29fac14610355578063a217fddf14610368578063a9059cbb14610370578063baecd32614610383578063d547741f14610396578063dd62ed3e146103a9578063e30c3978146103bc578063f2fde38b146103c4578063f443a35b146103d7578063fd94715b146103df575b600080fd5b6101ad6101a83660046115bb565b6103f2565b6040516001600160e01b031990911681526020015b60405180910390f35b6101de6101d936600461162b565b610418565b60405190151581526020016101c2565b6101f6610478565b6040516101c2919061165c565b6101de6102113660046116aa565b610519565b6101ad6102243660046116d4565b610531565b61023161054e565b6040519081526020016101c2565b6101de61024d366004611742565b610563565b61023161026036600461177e565b610587565b610278610273366004611797565b6105a7565b005b6102786102883660046117b2565b61070f565b604051601281526020016101c2565b6102786102aa3660046117b2565b610731565b6102786102bd3660046116aa565b610769565b61023160035481565b6002546102de906001600160a01b031681565b6040516101c291906117de565b6102786102f9366004611894565b610806565b61023160015481565b610231610315366004611797565b6108fc565b610278610927565b61027861093b565b6102de61097a565b6101de6103403660046117b2565b610995565b6101f66109cb565b6102316109e8565b6102786103633660046116aa565b610a10565b610231600081565b6101de61037e3660046116aa565b610aa0565b6000546102de906001600160a01b031681565b6102786103a43660046117b2565b610aae565b6102316103b73660046118f7565b610aca565b6102de610b06565b6102786103d2366004611797565b610b11565b6102de610b82565b6102786103ed3660046116aa565b610b8d565b60003360405163578f385f60e11b815260040161040f91906117de565b60405180910390fd5b60006001600160e01b03198216629ce20b60e01b148061044857506001600160e01b03198216630a85bd0160e11b145b8061046357506001600160e01b031982166301ffc9a760e01b145b80610472575061047282610c36565b92915050565b60606000610484610c6b565b905080600301805461049590611921565b80601f01602080910402602001604051908101604052809291908181526020018280546104c190611921565b801561050e5780601f106104e35761010080835404028352916020019161050e565b820191906000526020600020905b8154815290600101906020018083116104f157829003601f168201915b505050505091505090565b600033610527818585610c8f565b5060019392505050565b600033604051637992d8e360e11b815260040161040f91906117de565b600080610559610c6b565b6002015492915050565b600033610571858285610c9c565b61057c858585610ce9565b506001949350505050565b600080610592610d48565b60009384526020525050604090206001015490565b600260006105b3610d6c565b8054909150600160401b900460ff16806105da575080546001600160401b03808416911610155b156105f85760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160481b0319166001600160401b03831617600160401b1781557355c09707fd7afd670e82a62faee312903940013e33146106705760405162461bcd60e51b815260206004820152601360248201527229b7b63b212a219d1037b7363c9037bbb732b960691b604482015260640161040f565b61067933610d90565b610684600033610db3565b5061068e83610e54565b600354156106b6576000546106b6906001600160a01b03166106ae610b82565b600354610f81565b600080546001600160a01b031990811682556001829055600280549091169055600355805460ff60401b19168155604051600080516020611b398339815191529061070290849061195b565b60405180910390a1505050565b61071882610587565b61072181610ff2565b61072b8383610db3565b50505050565b6001600160a01b038116331461075a5760405163334bd91960e11b815260040160405180910390fd5b6107648282610ffc565b505050565b610771611074565b6040516020016107809061196f565b6040516020818303038152906040528051906020012061079f81610ff2565b600082116107ef5760405162461bcd60e51b815260206004820152601f60248201527f536f6c764254433a206d696e742076616c75652063616e6e6f74206265203000604482015260640161040f565b6107f983836110aa565b506108026110e0565b5050565b6000610810610d6c565b805490915060ff600160401b82041615906001600160401b03166000811580156108375750825b90506000826001600160401b031660011480156108535750303b155b905081158015610861575080155b1561087f5760405163f92ee8a960e01b815260040160405180910390fd5b84546001600160401b031916600117855583156108a857845460ff60401b1916600160401b1785555b6108b287876110f1565b6108ba611103565b83156108f357845460ff60401b19168555604051600080516020611b39833981519152906108ea9060019061195b565b60405180910390a15b50505050505050565b600080610907610c6b565b6001600160a01b0390931660009081526020939093525050604090205490565b61092f611113565b6109396000610d90565b565b3380610945610b06565b6001600160a01b03161461096e578060405163118cdaa760e01b815260040161040f91906117de565b61097781610d90565b50565b600080610985611145565b546001600160a01b031692915050565b6000806109a0610d48565b6000948552602090815260408086206001600160a01b03959095168652939052505090205460ff1690565b606060006109d7610c6b565b905080600401805461049590611921565b6040516020016109f79061196f565b6040516020818303038152906040528051906020012081565b610a18611074565b604051602001610a279061196f565b60405160208183030381529060405280519060200120610a4681610ff2565b60008211610a965760405162461bcd60e51b815260206004820152601f60248201527f536f6c764254433a206275726e2076616c75652063616e6e6f74206265203000604482015260640161040f565b6107f98383611169565b600033610527818585610ce9565b610ab782610587565b610ac081610ff2565b61072b8383610ffc565b600080610ad5610c6b565b6001600160a01b03948516600090815260019190910160209081526040808320959096168252939093525050205490565b60008061098561119f565b610b19611113565b6000610b2361119f565b80546001600160a01b0319166001600160a01b0384169081178255909150610b4961097a565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a35050565b6000806109856111c3565b60045460005b8181108015610ba157508281105b15610c1f576004805460009190610bba9060019061199f565b81548110610bca57610bca6119b2565b90600052602060002001549050610be48561dead83610f81565b6004805480610bf557610bf56119c8565b60019003818190600052602060002001600090559055508080610c17906119de565b915050610b93565b506004546000036107645761076460046000611525565b60006001600160e01b03198216637965db0b60e01b148061047257506301ffc9a760e01b6001600160e01b0319831614610472565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0090565b61076483838360016111e7565b6000610ca88484610aca565b9050600019811461072b5781811015610cda57828183604051637dc7a0d960e11b815260040161040f939291906119f7565b61072b848484840360006111e7565b6001600160a01b038316610d13576000604051634b637e8f60e11b815260040161040f91906117de565b6001600160a01b038216610d3d57600060405163ec442f0560e01b815260040161040f91906117de565b6107648383836112cc565b7f02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b62680090565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0090565b6000610d9a61119f565b80546001600160a01b03191681559050610802826113f4565b600080610dbe610d48565b9050610dca8484610995565b610e4a576000848152602082815260408083206001600160a01b03871684529091529020805460ff19166001179055610e003390565b6001600160a01b0316836001600160a01b0316857f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a46001915050610472565b6000915050610472565b6001600160a01b038116610ec15760405162461bcd60e51b815260206004820152602e60248201527f536f6c764254433a20696e76616c696420736f6c764254434d756c746941737360448201526d6574506f6f6c206164647265737360901b606482015260840161040f565b6000610ecb6111c3565b80549091506001600160a01b031615610f395760405162461bcd60e51b815260206004820152602a60248201527f536f6c764254433a20736f6c764254434d756c74694173736574506f6f6c20616044820152691b1c9958591e481cd95d60b21b606482015260840161040f565b80546001600160a01b0319166001600160a01b03831690811782556040517fca50bd63f1ed14f8c03423aede72ac3139bde9189ea4b717d0e62ee0f4e7a89590600090a25050565b6040516323b872dd60e01b81523060048201526001600160a01b038381166024830152604482018390528491908216906323b872dd90606401600060405180830381600087803b158015610fd457600080fd5b505af1158015610fe8573d6000803e3d6000fd5b5050505050505050565b6109778133611450565b600080611007610d48565b90506110138484610995565b15610e4a576000848152602082815260408083206001600160a01b0387168085529252808320805460ff1916905551339287917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a46001915050610472565b600061107e611489565b8054909150600119016110a457604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b6001600160a01b0382166110d457600060405163ec442f0560e01b815260040161040f91906117de565b610802600083836112cc565b60006110ea611489565b6001905550565b6110f96114ad565b61080282826114d2565b61110b6114ad565b610939611503565b3361111c61097a565b6001600160a01b031614610939573360405163118cdaa760e01b815260040161040f91906117de565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930090565b6001600160a01b038216611193576000604051634b637e8f60e11b815260040161040f91906117de565b610802826000836112cc565b7f237e158222e3e6968b72b9db0d8043aacf074ad9f650f0d1606b4d82ee432c0090565b7f25351088c72db31d4a47cbdabb12f8d9c124b300211236164ae294131705840090565b60006111f1610c6b565b90506001600160a01b03851661121d57600060405163e602df0560e01b815260040161040f91906117de565b6001600160a01b038416611247576000604051634a1406b160e11b815260040161040f91906117de565b6001600160a01b038086166000908152600183016020908152604080832093881683529290522083905581156112c557836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516112bc91815260200190565b60405180910390a35b5050505050565b60006112d6610c6b565b90506001600160a01b03841661130557818160020160008282546112fa9190611a18565b909155506113649050565b6001600160a01b038416600090815260208290526040902054828110156113455784818460405163391434e360e21b815260040161040f939291906119f7565b6001600160a01b03851660009081526020839052604090209083900390555b6001600160a01b0383166113825760028101805483900390556113a1565b6001600160a01b03831660009081526020829052604090208054830190555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113e691815260200190565b60405180910390a350505050565b60006113fe611145565b80546001600160a01b038481166001600160a01b031983168117845560405193945091169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b61145a8282610995565b6108025760405163e2517d3f60e01b81526001600160a01b03821660048201526024810183905260440161040f565b7f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0090565b6114b561150b565b61093957604051631afcd79f60e31b815260040160405180910390fd5b6114da6114ad565b60006114e4610c6b565b9050600381016114f48482611a79565b506004810161072b8382611a79565b6110e06114ad565b6000611515610d6c565b54600160401b900460ff16919050565b508054600082559060005260206000209081019061097791905b80821115611553576000815560010161153f565b5090565b80356001600160a01b038116811461156e57600080fd5b919050565b60008083601f84011261158557600080fd5b5081356001600160401b0381111561159c57600080fd5b6020830191508360208285010111156115b457600080fd5b9250929050565b60008060008060008060a087890312156115d457600080fd5b6115dd87611557565b955060208701359450604087013593506060870135925060808701356001600160401b0381111561160d57600080fd5b61161989828a01611573565b979a9699509497509295939492505050565b60006020828403121561163d57600080fd5b81356001600160e01b03198116811461165557600080fd5b9392505050565b600060208083528351808285015260005b818110156116895785810183015185820160400152820161166d565b506000604082860101526040601f19601f8301168501019250505092915050565b600080604083850312156116bd57600080fd5b6116c683611557565b946020939093013593505050565b6000806000806000608086880312156116ec57600080fd5b6116f586611557565b945061170360208701611557565b93506040860135925060608601356001600160401b0381111561172557600080fd5b61173188828901611573565b969995985093965092949392505050565b60008060006060848603121561175757600080fd5b61176084611557565b925061176e60208501611557565b9150604084013590509250925092565b60006020828403121561179057600080fd5b5035919050565b6000602082840312156117a957600080fd5b61165582611557565b600080604083850312156117c557600080fd5b823591506117d560208401611557565b90509250929050565b6001600160a01b0391909116815260200190565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261181957600080fd5b81356001600160401b0380821115611833576118336117f2565b604051601f8301601f19908116603f0116810190828211818310171561185b5761185b6117f2565b8160405283815286602085880101111561187457600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080604083850312156118a757600080fd5b82356001600160401b03808211156118be57600080fd5b6118ca86838701611808565b935060208501359150808211156118e057600080fd5b506118ed85828601611808565b9150509250929050565b6000806040838503121561190a57600080fd5b61191383611557565b91506117d560208401611557565b600181811c9082168061193557607f821691505b60208210810361195557634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160401b0391909116815260200190565b6d29a7a62b212a21afa6a4a72a22a960911b8152600e0190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561047257610472611989565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b6000600182016119f0576119f0611989565b5060010190565b6001600160a01b039390931683526020830191909152604082015260600190565b8082018082111561047257610472611989565b601f82111561076457600081815260208120601f850160051c81016020861015611a525750805b601f850160051c820191505b81811015611a7157828155600101611a5e565b505050505050565b81516001600160401b03811115611a9257611a926117f2565b611aa681611aa08454611921565b84611a2b565b602080601f831160018114611adb5760008415611ac35750858301515b600019600386901b1c1916600185901b178555611a71565b600085815260208120601f198616915b82811015611b0a57888601518255948401946001909101908401611aeb565b5085821015611b285787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fec7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2a2646970667358221220ddf094345700522773c3c2df2f8dd76d7b4884a65fe093d11a5260c96679c1bf64736f6c63430008140033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 29 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.