Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| 0x60806040 | 22164290 | 333 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
SolvBTCYieldTokenV3_1
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 "./SolvBTCYieldTokenV3.sol";
import "./SolvBTCV3_1.sol";
contract SolvBTCYieldTokenV3_1 is SolvBTCYieldTokenV3, SolvBTCV3_1 {
event SetAlias(string name, string symbol);
struct AliasStorage {
string _name;
string _symbol;
}
// keccak256(abi.encode(uint256(keccak256("solv.storage.SolvBTCYieldTokenV3_1")) - 1)) & ~bytes32(uint256(0xff))
bytes32 private constant ALIAS_STORAGE_POSITION = 0xda2596346793476faa39ef2fc6f6928de90d835de448231a9734d2e32c5b1400;
function _getAliasStorage() private pure returns (AliasStorage storage $) {
assembly {
$.slot := ALIAS_STORAGE_POSITION
}
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
AliasStorage storage $ = _getAliasStorage();
if (bytes($._name).length == 0) {
return super.name();
}
return $._name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
AliasStorage storage $ = _getAliasStorage();
if (bytes($._symbol).length == 0) {
return super.symbol();
}
return $._symbol;
}
/**
* @dev Sets the alias name and symbol of the SolvBTC yield token.
*/
function setAlias(string calldata name_, string calldata symbol_) external virtual onlyOwner {
AliasStorage storage $ = _getAliasStorage();
$._name = name_;
$._symbol = symbol_;
emit SetAlias(name_, symbol_);
}
function _approve(address owner, address spender, uint256 value, bool emitEvent)
internal
virtual
override(SolvBTCYieldTokenV3, SolvBTCV3)
{
SolvBTCV3._approve(owner, spender, value, emitEvent);
}
function _update(address from, address to, uint256 value)
internal
virtual
override(SolvBTCYieldTokenV3, SolvBTCV3_1)
{
SolvBTCV3_1._update(from, to, value);
}
}// 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/Pausable.sol)
pragma solidity ^0.8.20;
import {ContextUpgradeable} from "../utils/ContextUpgradeable.sol";
import {Initializable} from "../proxy/utils/Initializable.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract PausableUpgradeable is Initializable, ContextUpgradeable {
/// @custom:storage-location erc7201:openzeppelin.storage.Pausable
struct PausableStorage {
bool _paused;
}
// keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Pausable")) - 1)) & ~bytes32(uint256(0xff))
bytes32 private constant PausableStorageLocation = 0xcd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f03300;
function _getPausableStorage() private pure returns (PausableStorage storage $) {
assembly {
$.slot := PausableStorageLocation
}
}
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
/**
* @dev The operation failed because the contract is paused.
*/
error EnforcedPause();
/**
* @dev The operation failed because the contract is not paused.
*/
error ExpectedPause();
/**
* @dev Initializes the contract in unpaused state.
*/
function __Pausable_init() internal onlyInitializing {
__Pausable_init_unchained();
}
function __Pausable_init_unchained() internal onlyInitializing {
PausableStorage storage $ = _getPausableStorage();
$._paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
PausableStorage storage $ = _getPausableStorage();
return $._paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
if (paused()) {
revert EnforcedPause();
}
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
if (!paused()) {
revert ExpectedPause();
}
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
PausableStorage storage $ = _getPausableStorage();
$._paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
PausableStorage storage $ = _getPausableStorage();
$._paused = false;
emit Unpaused(_msgSender());
}
}// 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 {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";
import {IERC721Receiver} from "./external/IERC721Receiver.sol";
import {IERC3525Receiver} from "./external/IERC3525Receiver.sol";
/**
* @title Interface for SolvBTC.
* @custom:security-contact [email protected]
*/
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 burn(uint256 value_) external;
}// 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 "./SolvBTC.sol";
interface ISolvBTCYieldToken is ISolvBTC {
function getValueByShares(uint256 shares) external view returns (uint256 value);
function getSharesByValue(uint256 value) external view returns (uint256 shares);
function getOracleDecimals() external view returns (uint8);
function getOracle() external view returns (address);
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
interface ISolvBTCYieldTokenOracle {
function getNav(address erc20) external view returns (uint256);
function navDecimals(address erc20) external view returns (uint8);
}// 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"));
bytes32 public constant SOLVBTC_POOL_BURNER_ROLE = keccak256(abi.encodePacked("SOLVBTC_POOL_BURNER"));
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(uint256 value_) external virtual nonReentrant onlyRole(SOLVBTC_MINTER_ROLE) {
require(value_ > 0, "SolvBTC: burn value cannot be 0");
_burn(msg.sender, value_);
}
function burn(address account_, uint256 value_) external virtual nonReentrant onlyRole(SOLVBTC_POOL_BURNER_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
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 {ERC20Upgradeable} from "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol";
import {ReentrancyGuardUpgradeable} from "@openzeppelin/contracts-upgradeable/utils/ReentrancyGuardUpgradeable.sol";
import {Ownable2StepUpgradeable} from "@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol";
import {AccessControlUpgradeable} from "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol";
import {ISolvBTC, IERC721Receiver, IERC3525Receiver, IERC165} from "./ISolvBTC.sol";
/**
* @title Implementation for SolvBTC V2.1, which is inherited from SolvBTC V2.
* @dev This version is upgraded from SolvBTC V2 with the removal of deprecated variables and functions.
* @custom:security-contact [email protected]
*/
contract SolvBTCV2_1 is ISolvBTC, ERC20Upgradeable, ReentrancyGuardUpgradeable, Ownable2StepUpgradeable, AccessControlUpgradeable {
/// @custom:storage-location erc7201:solv.storage.SolvBTC
// struct SolvBTCStorage {
// address _solvBTCMultiAssetPool;
// }
/**
* @dev Deprecated variables inherited from SolvBTC V1, the values of which have been cleared in V2.
* Thus the declaration of these variables would be removed from V2.1.
*/
// 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;
/// @notice `SOLVBTC_MINTER` role is allowed to mint SolvBTC tokens, as well as to burn SolvBTC tokens held by itself.
bytes32 public constant SOLVBTC_MINTER_ROLE = keccak256(abi.encodePacked("SOLVBTC_MINTER"));
/// @notice `SOLVBTC_POOL_BURNER` role is allowed to burn SolvBTC tokens from other accounts only when necessary.
bytes32 public constant SOLVBTC_POOL_BURNER_ROLE = keccak256(abi.encodePacked("SOLVBTC_POOL_BURNER"));
// event SetSolvBTCMultiAssetPool(address indexed solvBTCMultiAssetPool);
/**
* @dev Mint or burn zero value is not allowed.
*/
error SolvBTCZeroValueNotAllowed();
/// @custom:oz-upgrades-unsafe-allow constructor
constructor() {
_disableInitializers();
}
function initialize(string memory name_, string memory symbol_, address owner_) external virtual initializer {
ERC20Upgradeable.__ERC20_init(name_, symbol_);
ReentrancyGuardUpgradeable.__ReentrancyGuard_init();
_transferOwnership(owner_);
_grantRole(DEFAULT_ADMIN_ROLE, owner_);
}
/**
* @dev Deprecated function inherited from SolvBTC V2, since the values of deprecated variables have been
* cleared, this function would be deleted from V2.1.
*/
// 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 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) {
if (value_ == 0) {
revert SolvBTCZeroValueNotAllowed();
}
_mint(account_, value_);
}
function burn(uint256 value_) external virtual nonReentrant onlyRole(SOLVBTC_MINTER_ROLE) {
if (value_ == 0) {
revert SolvBTCZeroValueNotAllowed();
}
_burn(msg.sender, value_);
}
function burn(address account_, uint256 value_) external virtual nonReentrant onlyRole(SOLVBTC_POOL_BURNER_ROLE) {
if (value_ == 0) {
revert SolvBTCZeroValueNotAllowed();
}
_burn(account_, value_);
}
function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControlUpgradeable, IERC165) returns (bool) {
return
interfaceId == type(IERC3525Receiver).interfaceId ||
interfaceId == type(IERC721Receiver).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev Deprecated function inherited from SolvBTC V2, since the empty sft ids would be removed
* before upgrading to V2.1.
*/
// 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;
// }
// }
/**
* @dev The following functions are deprecated in SolvBTC V2.1, since the value of `solvBTCMultiAssetPool`
* will not be used in V2.1.
*/
// 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_) external virtual onlyOwner {
// _setSolvBTCMultiAssetPool(solvBTCMultiAssetPool_);
// }
// function _setSolvBTCMultiAssetPool(address solvBTCMultiAssetPool_) internal virtual {
// SolvBTCStorage storage $ = _getSolvBTCStorage();
// $._solvBTCMultiAssetPool = solvBTCMultiAssetPool_;
// emit SetSolvBTCMultiAssetPool(solvBTCMultiAssetPool_);
// }
/** @dev Use EIP-7201 for storage management instead. */
// uint256[45] private __gap;
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
import {SolvBTCV2_1} from "./SolvBTCV2_1.sol";
import {BlacklistableUpgradeable} from "./access/BlacklistableUpgradeable.sol";
/**
* @title Implementation for SolvBTC V3, which is inherited from SolvBTC V2.1 and expanded with
* blacklist functionality.
* @custom:security-contact [email protected]
*/
contract SolvBTCV3 is SolvBTCV2_1, BlacklistableUpgradeable {
/**
* @dev Account is not blacklisted.
*/
error SolvBTCNotBlacklisted(address account);
/// @notice Emitted when black funds are destroyed.
event DestroyBlackFunds(address indexed account, uint256 amount);
/// @notice Destroys black funds from the specified blacklist account.
function destroyBlackFunds(address account, uint256 amount) external virtual onlyOwner {
if (!isBlacklisted(account)) {
revert SolvBTCNotBlacklisted(account);
}
super._update(account, address(0), amount);
emit DestroyBlackFunds(account, amount);
}
function _approve(address owner, address spender, uint256 value, bool emitEvent)
internal
virtual
override
notBlacklisted(spender)
notBlacklisted(owner)
{
super._approve(owner, spender, value, emitEvent);
}
function _update(address from, address to, uint256 value)
internal
virtual
override
notBlacklisted(from)
notBlacklisted(to)
notBlacklisted(msg.sender)
{
super._update(from, to, value);
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
import {SolvBTCV3} from "./SolvBTCV3.sol";
import {PausableUpgradeable} from "@openzeppelin/contracts-upgradeable/utils/PausableUpgradeable.sol";
/**
* @title Implementation for SolvBTC V3_1, which is inherited from SolvBTC V3 and expanded with
* openzeppelin pausable functionality.
* @custom:security-contact [email protected]
*/
contract SolvBTCV3_1 is SolvBTCV3, PausableUpgradeable {
struct SolvBTCV3_1Storage {
address _pauser;
}
// keccak256(abi.encode(uint256(keccak256("solv.storage.SolvBTCV3_1")) - 1)) & ~bytes32(uint256(0xff))
bytes32 private constant SolvBTCV3_1StorageLocation =
0x502a85c8d631e3586414f9cb06ca4d27c03b5f40bf43ea12a9183dd747be5900;
/**
* @dev Operates by non pauser.
*/
error PausablePauser(address account);
function _getSolvBTCV3_1Storage() private pure returns (SolvBTCV3_1Storage storage $) {
assembly {
$.slot := SolvBTCV3_1StorageLocation
}
}
/**
* @dev throws if called by any account other than the pauser
*/
modifier onlyPauser() {
SolvBTCV3_1Storage storage $ = _getSolvBTCV3_1Storage();
if (msg.sender != $._pauser) {
revert PausablePauser(msg.sender);
}
_;
}
function setPauser(address pauser) external onlyOwner {
SolvBTCV3_1Storage storage $ = _getSolvBTCV3_1Storage();
$._pauser = pauser;
}
function pause() external onlyPauser whenNotPaused {
_pause();
}
function unpause() external onlyPauser whenPaused {
_unpause();
}
function _update(address from, address to, uint256 value) internal virtual override whenNotPaused {
super._update(from, to, value);
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
import "./SolvBTCV2_1.sol";
import "./ISolvBTCYieldToken.sol";
import "./ISolvBTCYieldTokenOracle.sol";
contract SolvBTCYieldTokenV2_1 is SolvBTCV2_1, ISolvBTCYieldToken {
struct SolvBTCYieldTokenStorage {
address _oracle;
}
// keccak256(abi.encode(uint256(keccak256("solv.storage.SolvBTCYieldToken")) - 1)) & ~bytes32(uint256(0xff))
bytes32 private constant SolvBTCYieldTokenStorageLocation = 0xf05073905b1e64f5ceda3673d2f3281ec4d80a5b81532923554d532211661500;
event SetOracle(address indexed oracle);
/// @custom:oz-upgrades-unsafe-allow constructor
constructor() {
_disableInitializers();
}
/**
* @notice Get amount of underlying asset for a given amount of shares.
*/
function getValueByShares(uint256 shares) external view virtual override returns (uint256 value) {
uint256 currentNav = ISolvBTCYieldTokenOracle(getOracle()).getNav(address(this));
return shares * currentNav / (10 ** decimals());
}
/**
* @notice Get amount of shares for a given amount of underlying asset.
*/
function getSharesByValue(uint256 value) external view virtual override returns (uint256 shares) {
uint256 currentNav = ISolvBTCYieldTokenOracle(getOracle()).getNav(address(this));
return currentNav == 0 ? 0 : (value * (10 ** decimals()) / currentNav);
}
function _getSolvBTCLYTStorage() private pure returns (SolvBTCYieldTokenStorage storage $) {
assembly {
$.slot := SolvBTCYieldTokenStorageLocation
}
}
function getOracle() public view virtual override returns (address) {
SolvBTCYieldTokenStorage storage $ = _getSolvBTCLYTStorage();
return $._oracle;
}
function setOracle(address oracle_) external virtual onlyOwner {
require(oracle_ != address(0), "SolvBTCYieldToken: invalid oracle address");
SolvBTCYieldTokenStorage storage $ = _getSolvBTCLYTStorage();
$._oracle = oracle_;
emit SetOracle(oracle_);
}
function getOracleDecimals() external view returns (uint8) {
return ISolvBTCYieldTokenOracle(getOracle()).navDecimals(address(this));
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
import "./SolvBTCYieldTokenV2_1.sol";
import "./SolvBTCV3.sol";
contract SolvBTCYieldTokenV3 is SolvBTCYieldTokenV2_1, SolvBTCV3 {
function _approve(address owner, address spender, uint256 value, bool emitEvent)
internal
virtual
override(ERC20Upgradeable, SolvBTCV3)
{
SolvBTCV3._approve(owner, spender, value, emitEvent);
}
function _update(address from, address to, uint256 value)
internal
virtual
override(ERC20Upgradeable, SolvBTCV3)
{
SolvBTCV3._update(from, to, value);
}
}// 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 {Ownable2StepUpgradeable} from "@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol";
/**
* @title Blacklistable
* @dev Allows accounts to be blacklisted by a "blacklist manager" role
* @custom:security-contact [email protected]
*/
abstract contract BlacklistableUpgradeable is Ownable2StepUpgradeable {
/// @custom:storage-location erc7201:solv.storage.Blacklistable
struct BlacklistableStorage {
mapping(address => bool) _blacklisted;
address _blacklistManager;
}
// keccak256(abi.encode(uint256(keccak256("solv.storage.Blacklistable")) - 1)) & ~bytes32(uint256(0xff))
bytes32 private constant SolvBTCStorageLocation = 0x37055a6a5ad221b3685065a6f80bdaf8b5de26b2f60e82c3fbc16e3374b00c00;
/**
* @dev Operates by non blacklist manager.
*/
error BlacklistableNotManager(address account);
/**
* @dev Account is blacklisted.
*/
error BlacklistableBlacklistedAccount(address account);
/**
* @dev Zero address is not allowed.
*/
error BlacklistableZeroAddressNotAllowed();
event BlacklistAdded(address indexed account_);
event BlacklistRemoved(address indexed account_);
event BlacklistManagerChanged(address indexed newBlacklistManager);
/**
* @dev Throws if called by any account other than the blacklist manager.
*/
modifier onlyBlacklistManager() {
if (msg.sender != blacklistManager()) {
revert BlacklistableNotManager(msg.sender);
}
_;
}
/**
* @dev Throws if argument account is blacklisted.
* @param account_ The address to check.
*/
modifier notBlacklisted(address account_) {
if (isBlacklisted(account_)) {
revert BlacklistableBlacklistedAccount(account_);
}
_;
}
/**
* @notice Adds account to blacklist.
* @param account_ The address to blacklist.
*/
function addBlacklist(address account_) external onlyBlacklistManager {
_addBlacklist(account_);
}
/**
* @notice Adds multiple accounts to the blacklist.
* @param accounts_ The addresses to blacklist.
*/
function addBlacklistBatch(address[] calldata accounts_) external onlyBlacklistManager {
for (uint256 i; i < accounts_.length; ) {
_addBlacklist(accounts_[i]);
unchecked { ++i; }
}
}
/**
* @notice Removes account from blacklist.
* @param account_ The address to remove from the blacklist.
*/
function removeBlacklist(address account_) external onlyBlacklistManager {
_removeBlacklist(account_);
}
/**
* @notice Removes multiple accounts from the blacklist.
* @param accounts_ The addresses to remove from the blacklist.
*/
function removeBlacklistBatch(address[] calldata accounts_) external onlyBlacklistManager {
for (uint256 i; i < accounts_.length; ) {
_removeBlacklist(accounts_[i]);
unchecked { ++i; }
}
}
/**
* @notice Updates the blacklist manager address.
* @param newBlacklistManager_ The address of the new blacklist manager.
*/
function updateBlacklistManager(address newBlacklistManager_) external onlyOwner {
if (newBlacklistManager_ == address(0)) {
revert BlacklistableZeroAddressNotAllowed();
}
BlacklistableStorage storage $ = _getBlacklistableStorage();
$._blacklistManager = newBlacklistManager_;
emit BlacklistManagerChanged(newBlacklistManager_);
}
/**
* @notice Checks if account is blacklisted.
* @param account_ The address to check.
* @return True if the account is blacklisted, false if the account is not blacklisted.
*/
function isBlacklisted(address account_) public view returns (bool) {
BlacklistableStorage storage $ = _getBlacklistableStorage();
return $._blacklisted[account_];
}
/**
* @notice Get the address of the blacklist manager.
*/
function blacklistManager() public view returns (address) {
BlacklistableStorage storage $ = _getBlacklistableStorage();
return $._blacklistManager;
}
function _getBlacklistableStorage() private pure returns (BlacklistableStorage storage $) {
assembly {
$.slot := SolvBTCStorageLocation
}
}
/**
* @dev Helper method that blacklists an account.
* @param account_ The address to blacklist.
*/
function _addBlacklist(address account_) private {
if (account_ == address(0)) {
revert BlacklistableZeroAddressNotAllowed();
}
BlacklistableStorage storage $ = _getBlacklistableStorage();
$._blacklisted[account_] = true;
emit BlacklistAdded(account_);
}
/**
* @dev Helper method that unblacklists an account.
* @param account_ The address to unblacklist.
*/
function _removeBlacklist(address account_) private {
BlacklistableStorage storage $ = _getBlacklistableStorage();
$._blacklisted[account_] = false;
emit BlacklistRemoved(account_);
}
}// 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
Contract ABI
API[{"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":"account","type":"address"}],"name":"BlacklistableBlacklistedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"BlacklistableNotManager","type":"error"},{"inputs":[],"name":"BlacklistableZeroAddressNotAllowed","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":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","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":[{"internalType":"address","name":"account","type":"address"}],"name":"PausablePauser","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"SolvBTCNotBlacklisted","type":"error"},{"inputs":[],"name":"SolvBTCZeroValueNotAllowed","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":true,"internalType":"address","name":"account_","type":"address"}],"name":"BlacklistAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newBlacklistManager","type":"address"}],"name":"BlacklistManagerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account_","type":"address"}],"name":"BlacklistRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DestroyBlackFunds","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"string","name":"symbol","type":"string"}],"name":"SetAlias","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oracle","type":"address"}],"name":"SetOracle","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SOLVBTC_MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SOLVBTC_POOL_BURNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"}],"name":"addBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts_","type":"address[]"}],"name":"addBlacklistBatch","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":[],"name":"blacklistManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value_","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"destroyBlackFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOracleDecimals","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":"uint256","name":"value","type":"uint256"}],"name":"getSharesByValue","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"getValueByShares","outputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"owner_","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"}],"name":"removeBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts_","type":"address[]"}],"name":"removeBlacklistBatch","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"name":"setAlias","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"oracle_","type":"address"}],"name":"setOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pauser","type":"address"}],"name":"setPauser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newBlacklistManager_","type":"address"}],"name":"updateBlacklistManager","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b506200001c6200002c565b620000266200002c565b620000e0565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff16156200007d5760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620000dd5780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6126f080620000f06000396000f3fe608060405234801561001057600080fd5b50600436106102245760003560e01c80629ce20b1461022957806301ffc9a71461025a57806306fdde031461027d578063077f224a14610292578063095ea7b3146102a7578063150b7a02146102ba57806318160ddd146102cd5780631a026b81146102e357806323b872dd146102fd578063248a9ca3146103105780632d88af4a146103235780632f2ff15d14610336578063313ce5671461034957806336568abe1461035057806338b20518146103635780633f4ba83a1461037657806340c10f191461037e57806342966c681461039157806353d51e64146103a45780635c975abb146103b7578063677f8ac0146103bf57806370a08231146103d2578063715018a6146103e557806371e26e00146103ed57806379ba5097146104005780637adbf97314610408578063833b1fce1461041b5780638456cb59146104305780638da5cb5b1461043857806391d148541461044057806395d89b411461045357806396c495971461045b5780639999416f146104635780639cfe42da146104765780639dc29fac14610489578063a217fddf1461049c578063a49630b2146104a4578063a9059cbb146104ac578063d547741f146104bf578063d9dbf657146104d2578063dd62ed3e146104da578063e30c3978146104ed578063e31c3a90146104f5578063eb91e65114610508578063ef2af9221461051b578063f2fde38b1461052e578063fe575a8714610541575b600080fd5b61023c610237366004611e09565b610554565b6040516001600160e01b031990911681526020015b60405180910390f35b61026d610268366004611e79565b61057a565b6040519015158152602001610251565b6102856105bf565b6040516102519190611ea3565b6102a56102a0366004611f93565b610684565b005b61026d6102b5366004612006565b61079d565b61023c6102c8366004612030565b6107b5565b6102d56107d2565b604051908152602001610251565b6102eb6107e7565b60405160ff9091168152602001610251565b61026d61030b36600461209e565b610862565b6102d561031e3660046120da565b610886565b6102a56103313660046120f3565b6108a6565b6102a561034436600461210e565b6108da565b60126102eb565b6102a561035e36600461210e565b6108fc565b6102a56103713660046120f3565b610934565b6102a56109be565b6102a561038c366004612006565b610a0a565b6102a561039f3660046120da565b610a78565b6102a56103b2366004612006565b610ae2565b61026d610b65565b6102a56103cd36600461213a565b610b7a565b6102d56103e03660046120f3565b610bef565b6102a5610c1a565b6102d56103fb3660046120da565b610c2e565b6102a5610cce565b6102a56104163660046120f3565b610d0a565b610423610dd0565b60405161025191906121a5565b6102a5610deb565b610423610e34565b61026d61044e36600461210e565b610e3f565b610285610e75565b6102d5610eb2565b6102a56104713660046121b9565b610eda565b6102a56104843660046120f3565b610f56565b6102a5610497366004612006565b610f99565b6102d5600081565b6102d5610ffa565b61026d6104ba366004612006565b611009565b6102a56104cd36600461210e565b611017565b610423611033565b6102d56104e836600461222d565b611051565b61042361108d565b6102d56105033660046120da565b611098565b6102a56105163660046120f3565b611146565b6102a56105293660046121b9565b611189565b6102a561053c3660046120f3565b611205565b61026d61054f3660046120f3565b611276565b60003360405163578f385f60e11b815260040161057191906121a5565b60405180910390fd5b60006001600160e01b03198216629ce20b60e01b14806105aa57506001600160e01b03198216630a85bd0160e11b145b806105b957506105b9826112a4565b92915050565b606060006105cb6112d9565b90508060000180546105dc90612257565b90506000036105f3576105ed6112fd565b91505090565b8054819061060090612257565b80601f016020809104026020016040519081016040528092919081815260200182805461062c90612257565b80156106795780601f1061064e57610100808354040283529160200191610679565b820191906000526020600020905b81548152906001019060200180831161065c57829003601f168201915b505050505091505090565b600061068e61131a565b805490915060ff600160401b82041615906001600160401b03166000811580156106b55750825b90506000826001600160401b031660011480156106d15750303b155b9050811580156106df575080155b156106fd5760405163f92ee8a960e01b815260040160405180910390fd5b84546001600160401b0319166001178555831561072657845460ff60401b1916600160401b1785555b610730888861133e565b610738611350565b61074186611360565b61074c600087611383565b50831561079357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b6000336107ab818585611424565b5060019392505050565b600033604051637992d8e360e11b815260040161057191906121a5565b6000806107dd611431565b6002015492915050565b60006107f1610dd0565b6001600160a01b031663ff554afa306040518263ffffffff1660e01b815260040161081c91906121a5565b602060405180830381865afa158015610839573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085d9190612291565b905090565b600033610870858285611455565b61087b8585856114a2565b506001949350505050565b600080610891611501565b60009384526020525050604090206001015490565b6108ae611525565b60006108b8611557565b80546001600160a01b0319166001600160a01b03939093169290921790915550565b6108e382610886565b6108ec8161157b565b6108f68383611383565b50505050565b6001600160a01b03811633146109255760405163334bd91960e11b815260040160405180910390fd5b61092f8282611585565b505050565b61093c611525565b6001600160a01b038116610963576040516349fe757360e01b815260040160405180910390fd5b600061096d6115fd565b6001810180546001600160a01b0319166001600160a01b038516908117909155604051919250907f5baec8c712a7efe1ef755579f2a5b46fe2ffb57d5d216b746e7130605ee9e97690600090a25050565b60006109c8611557565b80549091506001600160a01b031633146109f7573360405163b2a2046960e01b815260040161057191906121a5565b6109ff611621565b610a07611646565b50565b610a1261169d565b604051602001610a21906122b4565b60405160208183030381529060405280519060200120610a408161157b565b81600003610a615760405163015a4ac960e51b815260040160405180910390fd5b610a6b83836116d3565b50610a74611709565b5050565b610a8061169d565b604051602001610a8f906122b4565b60405160208183030381529060405280519060200120610aae8161157b565b81600003610acf5760405163015a4ac960e51b815260040160405180910390fd5b610ad9338361171a565b50610a07611709565b610aea611525565b610af382611276565b610b12578160405163451aa33d60e01b815260040161057191906121a5565b610b1e82600083611750565b816001600160a01b03167f11d33c4bdbad6892d3d8fe9b29fca9d1701c823ddea540b942b102366a4a47e282604051610b5991815260200190565b60405180910390a25050565b600080610b70611878565b5460ff1692915050565b610b82611525565b6000610b8c6112d9565b905080610b9a858783612329565b5060018101610baa838583612329565b507f841f96fea9cdc9cd8d9e403b87390322f34ff38914b7840853d1f1c9e7d5465085858585604051610be0949392919061240b565b60405180910390a15050505050565b600080610bfa611431565b6001600160a01b0390931660009081526020939093525050604090205490565b610c22611525565b610c2c6000611360565b565b600080610c39610dd0565b6001600160a01b031663fb596008306040518263ffffffff1660e01b8152600401610c6491906121a5565b602060405180830381865afa158015610c81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca5919061243d565b9050610cb36012600a612550565b610cbd828561255f565b610cc79190612576565b9392505050565b3380610cd861108d565b6001600160a01b031614610d01578060405163118cdaa760e01b815260040161057191906121a5565b610a0781611360565b610d12611525565b6001600160a01b038116610d7a5760405162461bcd60e51b815260206004820152602960248201527f536f6c764254435969656c64546f6b656e3a20696e76616c6964206f7261636c60448201526865206164647265737360b81b6064820152608401610571565b6000610d8461189c565b80546001600160a01b0319166001600160a01b0384169081178255604051919250907fd3b5d1e0ffaeff528910f3663f0adace7694ab8241d58e17a91351ced2e0803190600090a25050565b600080610ddb61189c565b546001600160a01b031692915050565b6000610df5611557565b80549091506001600160a01b03163314610e24573360405163b2a2046960e01b815260040161057191906121a5565b610e2c6118c0565b610a076118e6565b600080610ddb61192d565b600080610e4a611501565b6000948552602090815260408086206001600160a01b03959095168652939052505090205460ff1690565b60606000610e816112d9565b9050806001018054610e9290612257565b9050600003610ea3576105ed611951565b80600101805461060090612257565b604051602001610ec1906122b4565b6040516020818303038152906040528051906020012081565b610ee2611033565b6001600160a01b0316336001600160a01b031614610f145733604051626c2eb760e01b815260040161057191906121a5565b60005b8181101561092f57610f4e838383818110610f3457610f34612598565b9050602002016020810190610f4991906120f3565b61196e565b600101610f17565b610f5e611033565b6001600160a01b0316336001600160a01b031614610f905733604051626c2eb760e01b815260040161057191906121a5565b610a078161196e565b610fa161169d565b604051602001610fb0906125ae565b60405160208183030381529060405280519060200120610fcf8161157b565b81600003610ff05760405163015a4ac960e51b815260040160405180910390fd5b610a6b838361171a565b604051602001610ec1906125ae565b6000336107ab8185856114a2565b61102082610886565b6110298161157b565b6108f68383611585565b60008061103e6115fd565b600101546001600160a01b031692915050565b60008061105c611431565b6001600160a01b03948516600090815260019190910160209081526040808320959096168252939093525050205490565b600080610ddb6119f1565b6000806110a3610dd0565b6001600160a01b031663fb596008306040518263ffffffff1660e01b81526004016110ce91906121a5565b602060405180830381865afa1580156110eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061110f919061243d565b9050801561113d57806111246012600a612550565b61112e908561255f565b6111389190612576565b610cc7565b60009392505050565b61114e611033565b6001600160a01b0316336001600160a01b0316146111805733604051626c2eb760e01b815260040161057191906121a5565b610a0781611a15565b611191611033565b6001600160a01b0316336001600160a01b0316146111c35733604051626c2eb760e01b815260040161057191906121a5565b60005b8181101561092f576111fd8383838181106111e3576111e3612598565b90506020020160208101906111f891906120f3565b611a15565b6001016111c6565b61120d611525565b60006112176119f1565b80546001600160a01b0319166001600160a01b038416908117825590915061123d610e34565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a35050565b6000806112816115fd565b6001600160a01b0390931660009081526020939093525050604090205460ff1690565b60006001600160e01b03198216637965db0b60e01b14806105b957506301ffc9a760e01b6001600160e01b03198316146105b9565b7fda2596346793476faa39ef2fc6f6928de90d835de448231a9734d2e32c5b140090565b60606000611309611431565b905080600301805461060090612257565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0090565b611346611a6e565b610a748282611a93565b611358611a6e565b610c2c611ac4565b600061136a6119f1565b80546001600160a01b03191681559050610a7482611acc565b60008061138e611501565b905061139a8484610e3f565b61141a576000848152602082815260408083206001600160a01b03871684529091529020805460ff191660011790556113d03390565b6001600160a01b0316836001600160a01b0316857f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019150506105b9565b60009150506105b9565b61092f8383836001611b28565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0090565b60006114618484611051565b905060001981146108f6578181101561149357828183604051637dc7a0d960e11b8152600401610571939291906125cd565b6108f684848484036000611b28565b6001600160a01b0383166114cc576000604051634b637e8f60e11b815260040161057191906121a5565b6001600160a01b0382166114f657600060405163ec442f0560e01b815260040161057191906121a5565b61092f838383611b34565b7f02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b62680090565b3361152e610e34565b6001600160a01b031614610c2c573360405163118cdaa760e01b815260040161057191906121a5565b7f502a85c8d631e3586414f9cb06ca4d27c03b5f40bf43ea12a9183dd747be590090565b610a078133611b3f565b600080611590611501565b905061159c8484610e3f565b1561141a576000848152602082815260408083206001600160a01b0387168085529252808320805460ff1916905551339287917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a460019150506105b9565b7f37055a6a5ad221b3685065a6f80bdaf8b5de26b2f60e82c3fbc16e3374b00c0090565b611629610b65565b610c2c57604051638dfc202b60e01b815260040160405180910390fd5b61164e611621565b6000611658611878565b805460ff1916815590507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405161169291906121a5565b60405180910390a150565b60006116a7611b78565b8054909150600119016116cd57604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b6001600160a01b0382166116fd57600060405163ec442f0560e01b815260040161057191906121a5565b610a7460008383611b34565b6000611713611b78565b6001905550565b6001600160a01b038216611744576000604051634b637e8f60e11b815260040161057191906121a5565b610a7482600083611b34565b600061175a611431565b90506001600160a01b038416611789578181600201600082825461177e91906125ee565b909155506117e89050565b6001600160a01b038416600090815260208290526040902054828110156117c95784818460405163391434e360e21b8152600401610571939291906125cd565b6001600160a01b03851660009081526020839052604090209083900390555b6001600160a01b038316611806576002810180548390039055611825565b6001600160a01b03831660009081526020829052604090208054830190555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161186a91815260200190565b60405180910390a350505050565b7fcd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f0330090565b7ff05073905b1e64f5ceda3673d2f3281ec4d80a5b81532923554d53221166150090565b6118c8610b65565b15610c2c5760405163d93c066560e01b815260040160405180910390fd5b6118ee6118c0565b60006118f8611878565b805460ff1916600117815590507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586116853390565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930090565b6060600061195d611431565b905080600401805461060090612257565b6001600160a01b038116611995576040516349fe757360e01b815260040160405180910390fd5b600061199f6115fd565b6001600160a01b038316600081815260208390526040808220805460ff191660011790555192935090917f44d5fe68b00f68950fb9c1ff0a61ef7f747b1a36359a7e3a7f3324db4b8789679190a25050565b7f237e158222e3e6968b72b9db0d8043aacf074ad9f650f0d1606b4d82ee432c0090565b6000611a1f6115fd565b6001600160a01b038316600081815260208390526040808220805460ff191690555192935090917f1747ca720b1a174a464b6513ace29b1d3190b5f632b9f34147017c81425bfde89190a25050565b611a76611b9c565b610c2c57604051631afcd79f60e31b815260040160405180910390fd5b611a9b611a6e565b6000611aa5611431565b905060038101611ab58482612601565b50600481016108f68382612601565b611709611a6e565b6000611ad661192d565b80546001600160a01b038481166001600160a01b031983168117845560405193945091169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b6108f684848484611bb6565b61092f838383611c1e565b611b498282610e3f565b610a745760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610571565b7f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0090565b6000611ba661131a565b54600160401b900460ff16919050565b82611bc081611276565b15611be0578060405163bb70159d60e01b815260040161057191906121a5565b84611bea81611276565b15611c0a578060405163bb70159d60e01b815260040161057191906121a5565b611c1686868686611c31565b505050505050565b611c266118c0565b61092f838383611d16565b6000611c3b611431565b90506001600160a01b038516611c6757600060405163e602df0560e01b815260040161057191906121a5565b6001600160a01b038416611c91576000604051634a1406b160e11b815260040161057191906121a5565b6001600160a01b03808616600090815260018301602090815260408083209388168352929052208390558115611d0f57836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92585604051611d0691815260200190565b60405180910390a35b5050505050565b61092f83838382611d2681611276565b15611d46578060405163bb70159d60e01b815260040161057191906121a5565b82611d5081611276565b15611d70578060405163bb70159d60e01b815260040161057191906121a5565b33611d7a81611276565b15611d9a578060405163bb70159d60e01b815260040161057191906121a5565b611c16868686611750565b80356001600160a01b0381168114611dbc57600080fd5b919050565b60008083601f840112611dd357600080fd5b5081356001600160401b03811115611dea57600080fd5b602083019150836020828501011115611e0257600080fd5b9250929050565b60008060008060008060a08789031215611e2257600080fd5b611e2b87611da5565b955060208701359450604087013593506060870135925060808701356001600160401b03811115611e5b57600080fd5b611e6789828a01611dc1565b979a9699509497509295939492505050565b600060208284031215611e8b57600080fd5b81356001600160e01b031981168114610cc757600080fd5b600060208083528351808285015260005b81811015611ed057858101830151858201604001528201611eb4565b506000604082860101526040601f19601f8301168501019250505092915050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112611f1857600080fd5b81356001600160401b0380821115611f3257611f32611ef1565b604051601f8301601f19908116603f01168101908282118183101715611f5a57611f5a611ef1565b81604052838152866020858801011115611f7357600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600060608486031215611fa857600080fd5b83356001600160401b0380821115611fbf57600080fd5b611fcb87838801611f07565b94506020860135915080821115611fe157600080fd5b50611fee86828701611f07565b925050611ffd60408501611da5565b90509250925092565b6000806040838503121561201957600080fd5b61202283611da5565b946020939093013593505050565b60008060008060006080868803121561204857600080fd5b61205186611da5565b945061205f60208701611da5565b93506040860135925060608601356001600160401b0381111561208157600080fd5b61208d88828901611dc1565b969995985093965092949392505050565b6000806000606084860312156120b357600080fd5b6120bc84611da5565b92506120ca60208501611da5565b9150604084013590509250925092565b6000602082840312156120ec57600080fd5b5035919050565b60006020828403121561210557600080fd5b610cc782611da5565b6000806040838503121561212157600080fd5b8235915061213160208401611da5565b90509250929050565b6000806000806040858703121561215057600080fd5b84356001600160401b038082111561216757600080fd5b61217388838901611dc1565b9096509450602087013591508082111561218c57600080fd5b5061219987828801611dc1565b95989497509550505050565b6001600160a01b0391909116815260200190565b600080602083850312156121cc57600080fd5b82356001600160401b03808211156121e357600080fd5b818501915085601f8301126121f757600080fd5b81358181111561220657600080fd5b8660208260051b850101111561221b57600080fd5b60209290920196919550909350505050565b6000806040838503121561224057600080fd5b61224983611da5565b915061213160208401611da5565b600181811c9082168061226b57607f821691505b60208210810361228b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156122a357600080fd5b815160ff81168114610cc757600080fd5b6d29a7a62b212a21afa6a4a72a22a960911b8152600e0190565b601f82111561092f57600081815260208120601f850160051c810160208610156122f55750805b601f850160051c820191505b81811015611c1657828155600101612301565b600019600383901b1c191660019190911b1790565b6001600160401b0383111561234057612340611ef1565b6123548361234e8354612257565b836122ce565b6000601f84116001811461238257600085156123705750838201355b61237a8682612314565b845550611d0f565b600083815260209020601f19861690835b828110156123b35786850135825560209485019460019092019101612393565b50868210156123d05760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60408152600061241f6040830186886123e2565b82810360208401526124328185876123e2565b979650505050505050565b60006020828403121561244f57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156124a757816000190482111561248d5761248d612456565b8085161561249a57918102915b93841c9390800290612471565b509250929050565b6000826124be575060016105b9565b816124cb575060006105b9565b81600181146124e157600281146124eb57612507565b60019150506105b9565b60ff8411156124fc576124fc612456565b50506001821b6105b9565b5060208310610133831016604e8410600b841016171561252a575081810a6105b9565b612534838361246c565b806000190482111561254857612548612456565b029392505050565b6000610cc760ff8416836124af565b80820281158282048414176105b9576105b9612456565b60008261259357634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b7229a7a62b212a21afa827a7a62fa12aa92722a960691b815260130190565b6001600160a01b039390931683526020830191909152604082015260600190565b808201808211156105b9576105b9612456565b81516001600160401b0381111561261a5761261a611ef1565b61262e816126288454612257565b846122ce565b602080601f83116001811461265d576000841561264b5750858301515b6126558582612314565b865550611c16565b600085815260208120601f198616915b8281101561268c5788860151825594840194600190910190840161266d565b50858210156126aa5787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fea26469706673582212201603589dbe112607ec74988201b4e366e9def3b60af01b00c8ca80f4b9abbba564736f6c63430008140033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102245760003560e01c80629ce20b1461022957806301ffc9a71461025a57806306fdde031461027d578063077f224a14610292578063095ea7b3146102a7578063150b7a02146102ba57806318160ddd146102cd5780631a026b81146102e357806323b872dd146102fd578063248a9ca3146103105780632d88af4a146103235780632f2ff15d14610336578063313ce5671461034957806336568abe1461035057806338b20518146103635780633f4ba83a1461037657806340c10f191461037e57806342966c681461039157806353d51e64146103a45780635c975abb146103b7578063677f8ac0146103bf57806370a08231146103d2578063715018a6146103e557806371e26e00146103ed57806379ba5097146104005780637adbf97314610408578063833b1fce1461041b5780638456cb59146104305780638da5cb5b1461043857806391d148541461044057806395d89b411461045357806396c495971461045b5780639999416f146104635780639cfe42da146104765780639dc29fac14610489578063a217fddf1461049c578063a49630b2146104a4578063a9059cbb146104ac578063d547741f146104bf578063d9dbf657146104d2578063dd62ed3e146104da578063e30c3978146104ed578063e31c3a90146104f5578063eb91e65114610508578063ef2af9221461051b578063f2fde38b1461052e578063fe575a8714610541575b600080fd5b61023c610237366004611e09565b610554565b6040516001600160e01b031990911681526020015b60405180910390f35b61026d610268366004611e79565b61057a565b6040519015158152602001610251565b6102856105bf565b6040516102519190611ea3565b6102a56102a0366004611f93565b610684565b005b61026d6102b5366004612006565b61079d565b61023c6102c8366004612030565b6107b5565b6102d56107d2565b604051908152602001610251565b6102eb6107e7565b60405160ff9091168152602001610251565b61026d61030b36600461209e565b610862565b6102d561031e3660046120da565b610886565b6102a56103313660046120f3565b6108a6565b6102a561034436600461210e565b6108da565b60126102eb565b6102a561035e36600461210e565b6108fc565b6102a56103713660046120f3565b610934565b6102a56109be565b6102a561038c366004612006565b610a0a565b6102a561039f3660046120da565b610a78565b6102a56103b2366004612006565b610ae2565b61026d610b65565b6102a56103cd36600461213a565b610b7a565b6102d56103e03660046120f3565b610bef565b6102a5610c1a565b6102d56103fb3660046120da565b610c2e565b6102a5610cce565b6102a56104163660046120f3565b610d0a565b610423610dd0565b60405161025191906121a5565b6102a5610deb565b610423610e34565b61026d61044e36600461210e565b610e3f565b610285610e75565b6102d5610eb2565b6102a56104713660046121b9565b610eda565b6102a56104843660046120f3565b610f56565b6102a5610497366004612006565b610f99565b6102d5600081565b6102d5610ffa565b61026d6104ba366004612006565b611009565b6102a56104cd36600461210e565b611017565b610423611033565b6102d56104e836600461222d565b611051565b61042361108d565b6102d56105033660046120da565b611098565b6102a56105163660046120f3565b611146565b6102a56105293660046121b9565b611189565b6102a561053c3660046120f3565b611205565b61026d61054f3660046120f3565b611276565b60003360405163578f385f60e11b815260040161057191906121a5565b60405180910390fd5b60006001600160e01b03198216629ce20b60e01b14806105aa57506001600160e01b03198216630a85bd0160e11b145b806105b957506105b9826112a4565b92915050565b606060006105cb6112d9565b90508060000180546105dc90612257565b90506000036105f3576105ed6112fd565b91505090565b8054819061060090612257565b80601f016020809104026020016040519081016040528092919081815260200182805461062c90612257565b80156106795780601f1061064e57610100808354040283529160200191610679565b820191906000526020600020905b81548152906001019060200180831161065c57829003601f168201915b505050505091505090565b600061068e61131a565b805490915060ff600160401b82041615906001600160401b03166000811580156106b55750825b90506000826001600160401b031660011480156106d15750303b155b9050811580156106df575080155b156106fd5760405163f92ee8a960e01b815260040160405180910390fd5b84546001600160401b0319166001178555831561072657845460ff60401b1916600160401b1785555b610730888861133e565b610738611350565b61074186611360565b61074c600087611383565b50831561079357845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b6000336107ab818585611424565b5060019392505050565b600033604051637992d8e360e11b815260040161057191906121a5565b6000806107dd611431565b6002015492915050565b60006107f1610dd0565b6001600160a01b031663ff554afa306040518263ffffffff1660e01b815260040161081c91906121a5565b602060405180830381865afa158015610839573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085d9190612291565b905090565b600033610870858285611455565b61087b8585856114a2565b506001949350505050565b600080610891611501565b60009384526020525050604090206001015490565b6108ae611525565b60006108b8611557565b80546001600160a01b0319166001600160a01b03939093169290921790915550565b6108e382610886565b6108ec8161157b565b6108f68383611383565b50505050565b6001600160a01b03811633146109255760405163334bd91960e11b815260040160405180910390fd5b61092f8282611585565b505050565b61093c611525565b6001600160a01b038116610963576040516349fe757360e01b815260040160405180910390fd5b600061096d6115fd565b6001810180546001600160a01b0319166001600160a01b038516908117909155604051919250907f5baec8c712a7efe1ef755579f2a5b46fe2ffb57d5d216b746e7130605ee9e97690600090a25050565b60006109c8611557565b80549091506001600160a01b031633146109f7573360405163b2a2046960e01b815260040161057191906121a5565b6109ff611621565b610a07611646565b50565b610a1261169d565b604051602001610a21906122b4565b60405160208183030381529060405280519060200120610a408161157b565b81600003610a615760405163015a4ac960e51b815260040160405180910390fd5b610a6b83836116d3565b50610a74611709565b5050565b610a8061169d565b604051602001610a8f906122b4565b60405160208183030381529060405280519060200120610aae8161157b565b81600003610acf5760405163015a4ac960e51b815260040160405180910390fd5b610ad9338361171a565b50610a07611709565b610aea611525565b610af382611276565b610b12578160405163451aa33d60e01b815260040161057191906121a5565b610b1e82600083611750565b816001600160a01b03167f11d33c4bdbad6892d3d8fe9b29fca9d1701c823ddea540b942b102366a4a47e282604051610b5991815260200190565b60405180910390a25050565b600080610b70611878565b5460ff1692915050565b610b82611525565b6000610b8c6112d9565b905080610b9a858783612329565b5060018101610baa838583612329565b507f841f96fea9cdc9cd8d9e403b87390322f34ff38914b7840853d1f1c9e7d5465085858585604051610be0949392919061240b565b60405180910390a15050505050565b600080610bfa611431565b6001600160a01b0390931660009081526020939093525050604090205490565b610c22611525565b610c2c6000611360565b565b600080610c39610dd0565b6001600160a01b031663fb596008306040518263ffffffff1660e01b8152600401610c6491906121a5565b602060405180830381865afa158015610c81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca5919061243d565b9050610cb36012600a612550565b610cbd828561255f565b610cc79190612576565b9392505050565b3380610cd861108d565b6001600160a01b031614610d01578060405163118cdaa760e01b815260040161057191906121a5565b610a0781611360565b610d12611525565b6001600160a01b038116610d7a5760405162461bcd60e51b815260206004820152602960248201527f536f6c764254435969656c64546f6b656e3a20696e76616c6964206f7261636c60448201526865206164647265737360b81b6064820152608401610571565b6000610d8461189c565b80546001600160a01b0319166001600160a01b0384169081178255604051919250907fd3b5d1e0ffaeff528910f3663f0adace7694ab8241d58e17a91351ced2e0803190600090a25050565b600080610ddb61189c565b546001600160a01b031692915050565b6000610df5611557565b80549091506001600160a01b03163314610e24573360405163b2a2046960e01b815260040161057191906121a5565b610e2c6118c0565b610a076118e6565b600080610ddb61192d565b600080610e4a611501565b6000948552602090815260408086206001600160a01b03959095168652939052505090205460ff1690565b60606000610e816112d9565b9050806001018054610e9290612257565b9050600003610ea3576105ed611951565b80600101805461060090612257565b604051602001610ec1906122b4565b6040516020818303038152906040528051906020012081565b610ee2611033565b6001600160a01b0316336001600160a01b031614610f145733604051626c2eb760e01b815260040161057191906121a5565b60005b8181101561092f57610f4e838383818110610f3457610f34612598565b9050602002016020810190610f4991906120f3565b61196e565b600101610f17565b610f5e611033565b6001600160a01b0316336001600160a01b031614610f905733604051626c2eb760e01b815260040161057191906121a5565b610a078161196e565b610fa161169d565b604051602001610fb0906125ae565b60405160208183030381529060405280519060200120610fcf8161157b565b81600003610ff05760405163015a4ac960e51b815260040160405180910390fd5b610a6b838361171a565b604051602001610ec1906125ae565b6000336107ab8185856114a2565b61102082610886565b6110298161157b565b6108f68383611585565b60008061103e6115fd565b600101546001600160a01b031692915050565b60008061105c611431565b6001600160a01b03948516600090815260019190910160209081526040808320959096168252939093525050205490565b600080610ddb6119f1565b6000806110a3610dd0565b6001600160a01b031663fb596008306040518263ffffffff1660e01b81526004016110ce91906121a5565b602060405180830381865afa1580156110eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061110f919061243d565b9050801561113d57806111246012600a612550565b61112e908561255f565b6111389190612576565b610cc7565b60009392505050565b61114e611033565b6001600160a01b0316336001600160a01b0316146111805733604051626c2eb760e01b815260040161057191906121a5565b610a0781611a15565b611191611033565b6001600160a01b0316336001600160a01b0316146111c35733604051626c2eb760e01b815260040161057191906121a5565b60005b8181101561092f576111fd8383838181106111e3576111e3612598565b90506020020160208101906111f891906120f3565b611a15565b6001016111c6565b61120d611525565b60006112176119f1565b80546001600160a01b0319166001600160a01b038416908117825590915061123d610e34565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a35050565b6000806112816115fd565b6001600160a01b0390931660009081526020939093525050604090205460ff1690565b60006001600160e01b03198216637965db0b60e01b14806105b957506301ffc9a760e01b6001600160e01b03198316146105b9565b7fda2596346793476faa39ef2fc6f6928de90d835de448231a9734d2e32c5b140090565b60606000611309611431565b905080600301805461060090612257565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0090565b611346611a6e565b610a748282611a93565b611358611a6e565b610c2c611ac4565b600061136a6119f1565b80546001600160a01b03191681559050610a7482611acc565b60008061138e611501565b905061139a8484610e3f565b61141a576000848152602082815260408083206001600160a01b03871684529091529020805460ff191660011790556113d03390565b6001600160a01b0316836001600160a01b0316857f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019150506105b9565b60009150506105b9565b61092f8383836001611b28565b7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace0090565b60006114618484611051565b905060001981146108f6578181101561149357828183604051637dc7a0d960e11b8152600401610571939291906125cd565b6108f684848484036000611b28565b6001600160a01b0383166114cc576000604051634b637e8f60e11b815260040161057191906121a5565b6001600160a01b0382166114f657600060405163ec442f0560e01b815260040161057191906121a5565b61092f838383611b34565b7f02dd7bc7dec4dceedda775e58dd541e08a116c6c53815c0bd028192f7b62680090565b3361152e610e34565b6001600160a01b031614610c2c573360405163118cdaa760e01b815260040161057191906121a5565b7f502a85c8d631e3586414f9cb06ca4d27c03b5f40bf43ea12a9183dd747be590090565b610a078133611b3f565b600080611590611501565b905061159c8484610e3f565b1561141a576000848152602082815260408083206001600160a01b0387168085529252808320805460ff1916905551339287917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a460019150506105b9565b7f37055a6a5ad221b3685065a6f80bdaf8b5de26b2f60e82c3fbc16e3374b00c0090565b611629610b65565b610c2c57604051638dfc202b60e01b815260040160405180910390fd5b61164e611621565b6000611658611878565b805460ff1916815590507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405161169291906121a5565b60405180910390a150565b60006116a7611b78565b8054909150600119016116cd57604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b6001600160a01b0382166116fd57600060405163ec442f0560e01b815260040161057191906121a5565b610a7460008383611b34565b6000611713611b78565b6001905550565b6001600160a01b038216611744576000604051634b637e8f60e11b815260040161057191906121a5565b610a7482600083611b34565b600061175a611431565b90506001600160a01b038416611789578181600201600082825461177e91906125ee565b909155506117e89050565b6001600160a01b038416600090815260208290526040902054828110156117c95784818460405163391434e360e21b8152600401610571939291906125cd565b6001600160a01b03851660009081526020839052604090209083900390555b6001600160a01b038316611806576002810180548390039055611825565b6001600160a01b03831660009081526020829052604090208054830190555b826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161186a91815260200190565b60405180910390a350505050565b7fcd5ed15c6e187e77e9aee88184c21f4f2182ab5827cb3b7e07fbedcd63f0330090565b7ff05073905b1e64f5ceda3673d2f3281ec4d80a5b81532923554d53221166150090565b6118c8610b65565b15610c2c5760405163d93c066560e01b815260040160405180910390fd5b6118ee6118c0565b60006118f8611878565b805460ff1916600117815590507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586116853390565b7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c19930090565b6060600061195d611431565b905080600401805461060090612257565b6001600160a01b038116611995576040516349fe757360e01b815260040160405180910390fd5b600061199f6115fd565b6001600160a01b038316600081815260208390526040808220805460ff191660011790555192935090917f44d5fe68b00f68950fb9c1ff0a61ef7f747b1a36359a7e3a7f3324db4b8789679190a25050565b7f237e158222e3e6968b72b9db0d8043aacf074ad9f650f0d1606b4d82ee432c0090565b6000611a1f6115fd565b6001600160a01b038316600081815260208390526040808220805460ff191690555192935090917f1747ca720b1a174a464b6513ace29b1d3190b5f632b9f34147017c81425bfde89190a25050565b611a76611b9c565b610c2c57604051631afcd79f60e31b815260040160405180910390fd5b611a9b611a6e565b6000611aa5611431565b905060038101611ab58482612601565b50600481016108f68382612601565b611709611a6e565b6000611ad661192d565b80546001600160a01b038481166001600160a01b031983168117845560405193945091169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b6108f684848484611bb6565b61092f838383611c1e565b611b498282610e3f565b610a745760405163e2517d3f60e01b81526001600160a01b038216600482015260248101839052604401610571565b7f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0090565b6000611ba661131a565b54600160401b900460ff16919050565b82611bc081611276565b15611be0578060405163bb70159d60e01b815260040161057191906121a5565b84611bea81611276565b15611c0a578060405163bb70159d60e01b815260040161057191906121a5565b611c1686868686611c31565b505050505050565b611c266118c0565b61092f838383611d16565b6000611c3b611431565b90506001600160a01b038516611c6757600060405163e602df0560e01b815260040161057191906121a5565b6001600160a01b038416611c91576000604051634a1406b160e11b815260040161057191906121a5565b6001600160a01b03808616600090815260018301602090815260408083209388168352929052208390558115611d0f57836001600160a01b0316856001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92585604051611d0691815260200190565b60405180910390a35b5050505050565b61092f83838382611d2681611276565b15611d46578060405163bb70159d60e01b815260040161057191906121a5565b82611d5081611276565b15611d70578060405163bb70159d60e01b815260040161057191906121a5565b33611d7a81611276565b15611d9a578060405163bb70159d60e01b815260040161057191906121a5565b611c16868686611750565b80356001600160a01b0381168114611dbc57600080fd5b919050565b60008083601f840112611dd357600080fd5b5081356001600160401b03811115611dea57600080fd5b602083019150836020828501011115611e0257600080fd5b9250929050565b60008060008060008060a08789031215611e2257600080fd5b611e2b87611da5565b955060208701359450604087013593506060870135925060808701356001600160401b03811115611e5b57600080fd5b611e6789828a01611dc1565b979a9699509497509295939492505050565b600060208284031215611e8b57600080fd5b81356001600160e01b031981168114610cc757600080fd5b600060208083528351808285015260005b81811015611ed057858101830151858201604001528201611eb4565b506000604082860101526040601f19601f8301168501019250505092915050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112611f1857600080fd5b81356001600160401b0380821115611f3257611f32611ef1565b604051601f8301601f19908116603f01168101908282118183101715611f5a57611f5a611ef1565b81604052838152866020858801011115611f7357600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600060608486031215611fa857600080fd5b83356001600160401b0380821115611fbf57600080fd5b611fcb87838801611f07565b94506020860135915080821115611fe157600080fd5b50611fee86828701611f07565b925050611ffd60408501611da5565b90509250925092565b6000806040838503121561201957600080fd5b61202283611da5565b946020939093013593505050565b60008060008060006080868803121561204857600080fd5b61205186611da5565b945061205f60208701611da5565b93506040860135925060608601356001600160401b0381111561208157600080fd5b61208d88828901611dc1565b969995985093965092949392505050565b6000806000606084860312156120b357600080fd5b6120bc84611da5565b92506120ca60208501611da5565b9150604084013590509250925092565b6000602082840312156120ec57600080fd5b5035919050565b60006020828403121561210557600080fd5b610cc782611da5565b6000806040838503121561212157600080fd5b8235915061213160208401611da5565b90509250929050565b6000806000806040858703121561215057600080fd5b84356001600160401b038082111561216757600080fd5b61217388838901611dc1565b9096509450602087013591508082111561218c57600080fd5b5061219987828801611dc1565b95989497509550505050565b6001600160a01b0391909116815260200190565b600080602083850312156121cc57600080fd5b82356001600160401b03808211156121e357600080fd5b818501915085601f8301126121f757600080fd5b81358181111561220657600080fd5b8660208260051b850101111561221b57600080fd5b60209290920196919550909350505050565b6000806040838503121561224057600080fd5b61224983611da5565b915061213160208401611da5565b600181811c9082168061226b57607f821691505b60208210810361228b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156122a357600080fd5b815160ff81168114610cc757600080fd5b6d29a7a62b212a21afa6a4a72a22a960911b8152600e0190565b601f82111561092f57600081815260208120601f850160051c810160208610156122f55750805b601f850160051c820191505b81811015611c1657828155600101612301565b600019600383901b1c191660019190911b1790565b6001600160401b0383111561234057612340611ef1565b6123548361234e8354612257565b836122ce565b6000601f84116001811461238257600085156123705750838201355b61237a8682612314565b845550611d0f565b600083815260209020601f19861690835b828110156123b35786850135825560209485019460019092019101612393565b50868210156123d05760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b60408152600061241f6040830186886123e2565b82810360208401526124328185876123e2565b979650505050505050565b60006020828403121561244f57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156124a757816000190482111561248d5761248d612456565b8085161561249a57918102915b93841c9390800290612471565b509250929050565b6000826124be575060016105b9565b816124cb575060006105b9565b81600181146124e157600281146124eb57612507565b60019150506105b9565b60ff8411156124fc576124fc612456565b50506001821b6105b9565b5060208310610133831016604e8410600b841016171561252a575081810a6105b9565b612534838361246c565b806000190482111561254857612548612456565b029392505050565b6000610cc760ff8416836124af565b80820281158282048414176105b9576105b9612456565b60008261259357634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b7229a7a62b212a21afa827a7a62fa12aa92722a960691b815260130190565b6001600160a01b039390931683526020830191909152604082015260600190565b808201808211156105b9576105b9612456565b81516001600160401b0381111561261a5761261a611ef1565b61262e816126288454612257565b846122ce565b602080601f83116001811461265d576000841561264b5750858301515b6126558582612314565b865550611c16565b600085815260208120601f198616915b8281101561268c5788860151825594840194600190910190840161266d565b50858210156126aa5787850151600019600388901b60f8161c191681555b5050505050600190811b0190555056fea26469706673582212201603589dbe112607ec74988201b4e366e9def3b60af01b00c8ca80f4b9abbba564736f6c63430008140033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.