| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Deposit | 24552250 | 13 mins ago | 0.09543084 ETH | ||||
| Transfer | 24552250 | 13 mins ago | 0.09543084 ETH | ||||
| Deposit | 24552058 | 52 mins ago | 0.04461298 ETH | ||||
| Transfer | 24552058 | 52 mins ago | 0.04461298 ETH | ||||
| Deposit | 24551495 | 2 hrs ago | 0.06543675 ETH | ||||
| Transfer | 24551495 | 2 hrs ago | 0.06543675 ETH | ||||
| Deposit | 24550658 | 5 hrs ago | 0.09789518 ETH | ||||
| Transfer | 24550658 | 5 hrs ago | 0.09789518 ETH | ||||
| Deposit | 24550454 | 6 hrs ago | 0.08405528 ETH | ||||
| Transfer | 24550454 | 6 hrs ago | 0.08405528 ETH | ||||
| Deposit | 24549624 | 9 hrs ago | 0.40999102 ETH | ||||
| Transfer | 24549624 | 9 hrs ago | 0.40999102 ETH | ||||
| Deposit | 24549399 | 9 hrs ago | 0.14586195 ETH | ||||
| Transfer | 24549399 | 9 hrs ago | 0.14586195 ETH | ||||
| Deposit | 24548917 | 11 hrs ago | 0.08644121 ETH | ||||
| Transfer | 24548917 | 11 hrs ago | 0.08644121 ETH | ||||
| Deposit | 24548496 | 12 hrs ago | 0.07884793 ETH | ||||
| Transfer | 24548496 | 12 hrs ago | 0.07884793 ETH | ||||
| Deposit | 24548085 | 14 hrs ago | 0.10272414 ETH | ||||
| Transfer | 24548085 | 14 hrs ago | 0.10272414 ETH | ||||
| Deposit | 24547687 | 15 hrs ago | 0.03980974 ETH | ||||
| Transfer | 24547687 | 15 hrs ago | 0.03980974 ETH | ||||
| Deposit | 24547287 | 16 hrs ago | 0.05987841 ETH | ||||
| Transfer | 24547287 | 16 hrs ago | 0.05987841 ETH | ||||
| Deposit | 24547075 | 17 hrs ago | 0.06938476 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Minimal Proxy Contract for 0xd23ae48269ca7c2b9d486b814b683eeb0a615ec8
Contract Name:
SmartVault
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 10000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-or-later
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol';
import '@mimic-fi/v3-authorizer/contracts/Authorized.sol';
import '@mimic-fi/v3-authorizer/contracts/interfaces/IAuthorizer.sol';
import '@mimic-fi/v3-fee-controller/contracts/interfaces/IFeeController.sol';
import '@mimic-fi/v3-helpers/contracts/math/FixedPoint.sol';
import '@mimic-fi/v3-helpers/contracts/utils/ERC20Helpers.sol';
import '@mimic-fi/v3-helpers/contracts/utils/IWrappedNativeToken.sol';
import '@mimic-fi/v3-price-oracle/contracts/interfaces/IPriceOracle.sol';
import '@mimic-fi/v3-registry/contracts/interfaces/IRegistry.sol';
import './interfaces/ISmartVault.sol';
/**
* @title Smart Vault
* @dev Core component where the interaction with the DeFi world occurs
*/
contract SmartVault is ISmartVault, Authorized, ReentrancyGuardUpgradeable {
using SafeERC20 for IERC20;
using FixedPoint for uint256;
// Whether the smart vault is paused or not
bool public override isPaused;
// Price oracle reference
address public override priceOracle;
// Mimic registry reference
address public immutable override registry;
// Mimic fee controller reference
address public immutable override feeController;
// Wrapped native token reference
address public immutable override wrappedNativeToken;
// Tells whether a connector check is ignored or not
mapping (address => bool) public override isConnectorCheckIgnored;
// Balance connectors are used to define separate tasks workflows, indexed from id and token address
mapping (bytes32 => mapping (address => uint256)) public override getBalanceConnector;
/**
* @dev Modifier to tag smart vault functions in order to check if it is paused
*/
modifier notPaused() {
if (isPaused) revert SmartVaultPaused();
_;
}
/**
* @dev Creates a new Smart Vault implementation with the references that should be shared among all implementations
* @param _registry Address of the Mimic registry to be referenced
* @param _feeController Address of the Mimic fee controller to be referenced
* @param _wrappedNativeToken Address of the wrapped native token to be used
*/
constructor(address _registry, address _feeController, address _wrappedNativeToken) {
registry = _registry;
feeController = _feeController;
wrappedNativeToken = _wrappedNativeToken;
}
/**
* @dev Initializes the smart vault
* @param _authorizer Address of the authorizer to be linked
* @param _priceOracle Address of the price oracle to be set, it is ignored in case it's zero
*/
function initialize(address _authorizer, address _priceOracle) external virtual initializer {
__SmartVault_init(_authorizer, _priceOracle);
}
/**
* @dev Initializes the smart vault. It does call upper contracts initializers.
* @param _authorizer Address of the authorizer to be linked
* @param _priceOracle Address of the price oracle to be set, it is ignored in case it's zero
*/
function __SmartVault_init(address _authorizer, address _priceOracle) internal onlyInitializing {
__ReentrancyGuard_init();
__Authorized_init(_authorizer);
__SmartVault_init_unchained(_authorizer, _priceOracle);
}
/**
* @dev Initializes the smart vault. It does not call upper contracts initializers.
* @param _priceOracle Address of the price oracle to be set, it is ignored in case it's zero
*/
function __SmartVault_init_unchained(address, address _priceOracle) internal onlyInitializing {
_setPriceOracle(_priceOracle);
}
/**
* @dev It allows receiving native token transfers
*/
receive() external payable {
// solhint-disable-previous-line no-empty-blocks
}
/**
* @dev Tells whether someone has any permission over the smart vault
*/
function hasPermissions(address who) external view override returns (bool) {
return _hasPermissions(who);
}
/**
* @dev Pauses a smart vault. Sender must be authorized.
*/
function pause() external override auth {
if (isPaused) revert SmartVaultPaused();
isPaused = true;
emit Paused();
}
/**
* @dev Unpauses a smart vault. Sender must be authorized.
*/
function unpause() external override auth {
if (!isPaused) revert SmartVaultUnpaused();
isPaused = false;
emit Unpaused();
}
/**
* @dev Sets the price oracle. Sender must be authorized. Smart vault must not be paused.
* @param newPriceOracle Address of the new price oracle to be set
*/
function setPriceOracle(address newPriceOracle)
external
override
nonReentrant
notPaused
authP(authParams(newPriceOracle))
{
_setPriceOracle(newPriceOracle);
}
/**
* @dev Overrides connector checks. Sender must be authorized. Smart vault must not be paused.
* @param connector Address of the connector to override its check
* @param ignored Whether the connector check should be ignored
*/
function overrideConnectorCheck(address connector, bool ignored)
external
override
nonReentrant
notPaused
authP(authParams(connector, ignored))
{
isConnectorCheckIgnored[connector] = ignored;
emit ConnectorCheckOverridden(connector, ignored);
}
/**
* @dev Updates a balance connector. Sender must be authorized. Smart vault must not be paused.
* @param id Balance connector identifier to be updated
* @param token Address of the token to update the balance connector for
* @param amount Amount to be updated to the balance connector
* @param add Whether the balance connector should be increased or decreased
*/
function updateBalanceConnector(bytes32 id, address token, uint256 amount, bool add)
external
override
nonReentrant
notPaused
authP(authParams(id, token, amount, add))
{
if (id == bytes32(0)) revert SmartVaultBalanceConnectorIdZero();
if (token == address(0)) revert SmartVaultTokenZero();
(add ? _increaseBalanceConnector : _decreaseBalanceConnector)(id, token, amount);
}
/**
* @dev Executes a connector inside of the Smart Vault context. Sender must be authorized. Smart vault must not be paused.
* @param connector Address of the connector that will be executed
* @param data Call data to be used for the delegate-call
* @return result Call response if it was successful, otherwise it reverts
*/
function execute(address connector, bytes memory data)
external
override
nonReentrant
notPaused
authP(authParams(connector))
returns (bytes memory result)
{
_validateConnector(connector);
result = Address.functionDelegateCall(connector, data, 'SMART_VAULT_EXECUTE_FAILED');
emit Executed(connector, data, result);
}
/**
* @dev Executes an arbitrary call from the Smart Vault. Sender must be authorized. Smart vault must not be paused.
* @param target Address where the call will be sent
* @param data Call data to be used for the call
* @param value Value in wei that will be attached to the call
* @return result Call response if it was successful, otherwise it reverts
*/
function call(address target, bytes memory data, uint256 value)
external
override
nonReentrant
notPaused
authP(authParams(target))
returns (bytes memory result)
{
result = Address.functionCallWithValue(target, data, value, 'SMART_VAULT_CALL_FAILED');
emit Called(target, data, value, result);
}
/**
* @dev Wrap an amount of native tokens to the wrapped ERC20 version of it. Sender must be authorized. Smart vault must not be paused.
* @param amount Amount of native tokens to be wrapped
*/
function wrap(uint256 amount) external override nonReentrant notPaused authP(authParams(amount)) {
if (amount == 0) revert SmartVaultAmountZero();
uint256 balance = address(this).balance;
if (balance < amount) revert SmartVaultInsufficientNativeTokenBalance(balance, amount);
IWrappedNativeToken(wrappedNativeToken).deposit{ value: amount }();
emit Wrapped(amount);
}
/**
* @dev Unwrap an amount of wrapped native tokens. Sender must be authorized. Smart vault must not be paused.
* @param amount Amount of wrapped native tokens to unwrapped
*/
function unwrap(uint256 amount) external override nonReentrant notPaused authP(authParams(amount)) {
if (amount == 0) revert SmartVaultAmountZero();
IWrappedNativeToken(wrappedNativeToken).withdraw(amount);
emit Unwrapped(amount);
}
/**
* @dev Collect tokens from an external account to the Smart Vault. Sender must be authorized. Smart vault must not be paused.
* @param token Address of the token to be collected
* @param from Address where the tokens will be transferred from
* @param amount Amount of tokens to be transferred
*/
function collect(address token, address from, uint256 amount)
external
override
nonReentrant
notPaused
authP(authParams(token, from, amount))
{
if (amount == 0) revert SmartVaultAmountZero();
IERC20(token).safeTransferFrom(from, address(this), amount);
emit Collected(token, from, amount);
}
/**
* @dev Withdraw tokens to an external account. Sender must be authorized. Smart vault must not be paused.
* @param token Address of the token to be withdrawn
* @param recipient Address where the tokens will be transferred to
* @param amount Amount of tokens to withdraw
*/
function withdraw(address token, address recipient, uint256 amount)
external
override
nonReentrant
notPaused
authP(authParams(token, recipient, amount))
{
if (amount == 0) revert SmartVaultAmountZero();
if (recipient == address(0)) revert SmartVaultRecipientZero();
(, uint256 pct, address collector) = IFeeController(feeController).getFee(address(this));
uint256 feeAmount = amount.mulDown(pct);
_safeTransfer(token, collector, feeAmount);
uint256 withdrawn = amount - feeAmount;
_safeTransfer(token, recipient, withdrawn);
emit Withdrawn(token, recipient, withdrawn, feeAmount);
}
/**
* @dev Transfers ERC20 or native tokens from the Smart Vault to an external account
* @param token Address of the ERC20 token to transfer
* @param to Address transferring the tokens to
* @param amount Amount of tokens to transfer
*/
function _safeTransfer(address token, address to, uint256 amount) internal {
if (amount == 0) return;
ERC20Helpers.transfer(token, to, amount);
}
/**
* @dev Sets the price oracle instance
* @param newPriceOracle Address of the new price oracle to be set
*/
function _setPriceOracle(address newPriceOracle) internal {
priceOracle = newPriceOracle;
emit PriceOracleSet(newPriceOracle);
}
/**
* @dev Increases a balance connector
* @param id Balance connector id to be increased
* @param token Address of the token to increase the balance connector for
* @param amount Amount to be added to the connector
*/
function _increaseBalanceConnector(bytes32 id, address token, uint256 amount) internal {
getBalanceConnector[id][token] += amount;
emit BalanceConnectorUpdated(id, token, amount, true);
}
/**
* @dev Decreases a balance connector
* @param id Balance connector id
* @param token Address of the token to decrease the balance connector for
* @param amount Amount to be added to the connector
*/
function _decreaseBalanceConnector(bytes32 id, address token, uint256 amount) internal {
uint256 value = getBalanceConnector[id][token];
if (value < amount) revert SmartVaultBalanceConnectorInsufficientBalance(id, token, value, amount);
getBalanceConnector[id][token] = value - amount;
emit BalanceConnectorUpdated(id, token, amount, false);
}
/**
* @dev Validates a connector against the Mimic Registry
* @param connector Address of the connector to validate
*/
function _validateConnector(address connector) private view {
if (isConnectorCheckIgnored[connector]) return;
if (!IRegistry(registry).isRegistered(connector)) revert SmartVaultConnectorNotRegistered(connector);
if (!IRegistry(registry).isStateless(connector)) revert SmartVaultConnectorNotStateless(connector);
if (IRegistry(registry).isDeprecated(connector)) revert SmartVaultConnectorDeprecated(connector);
}
}// SPDX-License-Identifier: GPL-3.0-or-later
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
pragma solidity ^0.8.17;
import '@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol';
import './AuthorizedHelpers.sol';
import './interfaces/IAuthorized.sol';
import './interfaces/IAuthorizer.sol';
/**
* @title Authorized
* @dev Implementation using an authorizer as its access-control mechanism. It offers `auth` and `authP` modifiers to
* tag its own functions in order to control who can access them against the authorizer referenced.
*/
contract Authorized is IAuthorized, Initializable, AuthorizedHelpers {
// Authorizer reference
address public override authorizer;
/**
* @dev Modifier that should be used to tag protected functions
*/
modifier auth() {
_authenticate(msg.sender, msg.sig);
_;
}
/**
* @dev Modifier that should be used to tag protected functions with params
*/
modifier authP(uint256[] memory params) {
_authenticate(msg.sender, msg.sig, params);
_;
}
/**
* @dev Creates a new authorized contract. Note that initializers are disabled at creation time.
*/
constructor() {
_disableInitializers();
}
/**
* @dev Initializes the authorized contract. It does call upper contracts initializers.
* @param _authorizer Address of the authorizer to be set
*/
function __Authorized_init(address _authorizer) internal onlyInitializing {
__Authorized_init_unchained(_authorizer);
}
/**
* @dev Initializes the authorized contract. It does not call upper contracts initializers.
* @param _authorizer Address of the authorizer to be set
*/
function __Authorized_init_unchained(address _authorizer) internal onlyInitializing {
authorizer = _authorizer;
}
/**
* @dev Reverts if `who` is not allowed to call `what`
* @param who Address to be authenticated
* @param what Function selector to be authenticated
*/
function _authenticate(address who, bytes4 what) internal view {
_authenticate(who, what, new uint256[](0));
}
/**
* @dev Reverts if `who` is not allowed to call `what` with `how`
* @param who Address to be authenticated
* @param what Function selector to be authenticated
* @param how Params to be authenticated
*/
function _authenticate(address who, bytes4 what, uint256[] memory how) internal view {
if (!_isAuthorized(who, what, how)) revert AuthSenderNotAllowed(who, what, how);
}
/**
* @dev Tells whether `who` has any permission on this contract
* @param who Address asking permissions for
*/
function _hasPermissions(address who) internal view returns (bool) {
return IAuthorizer(authorizer).hasPermissions(who, address(this));
}
/**
* @dev Tells whether `who` is allowed to call `what`
* @param who Address asking permission for
* @param what Function selector asking permission for
*/
function _isAuthorized(address who, bytes4 what) internal view returns (bool) {
return _isAuthorized(who, what, new uint256[](0));
}
/**
* @dev Tells whether `who` is allowed to call `what` with `how`
* @param who Address asking permission for
* @param what Function selector asking permission for
* @param how Params asking permission for
*/
function _isAuthorized(address who, bytes4 what, uint256[] memory how) internal view returns (bool) {
return IAuthorizer(authorizer).isAuthorized(who, address(this), what, how);
}
}// SPDX-License-Identifier: GPL-3.0-or-later
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
pragma solidity ^0.8.17;
/**
* @title AuthorizedHelpers
* @dev Syntax sugar methods to operate with authorizer params easily
*/
contract AuthorizedHelpers {
function authParams(address p1) internal pure returns (uint256[] memory r) {
return authParams(uint256(uint160(p1)));
}
function authParams(bytes32 p1) internal pure returns (uint256[] memory r) {
return authParams(uint256(p1));
}
function authParams(uint256 p1) internal pure returns (uint256[] memory r) {
r = new uint256[](1);
r[0] = p1;
}
function authParams(address p1, bool p2) internal pure returns (uint256[] memory r) {
r = new uint256[](2);
r[0] = uint256(uint160(p1));
r[1] = p2 ? 1 : 0;
}
function authParams(address p1, uint256 p2) internal pure returns (uint256[] memory r) {
r = new uint256[](2);
r[0] = uint256(uint160(p1));
r[1] = p2;
}
function authParams(address p1, address p2) internal pure returns (uint256[] memory r) {
r = new uint256[](2);
r[0] = uint256(uint160(p1));
r[1] = uint256(uint160(p2));
}
function authParams(bytes32 p1, bytes32 p2) internal pure returns (uint256[] memory r) {
r = new uint256[](2);
r[0] = uint256(p1);
r[1] = uint256(p2);
}
function authParams(address p1, address p2, uint256 p3) internal pure returns (uint256[] memory r) {
r = new uint256[](3);
r[0] = uint256(uint160(p1));
r[1] = uint256(uint160(p2));
r[2] = p3;
}
function authParams(address p1, address p2, address p3) internal pure returns (uint256[] memory r) {
r = new uint256[](3);
r[0] = uint256(uint160(p1));
r[1] = uint256(uint160(p2));
r[2] = uint256(uint160(p3));
}
function authParams(address p1, address p2, bytes4 p3) internal pure returns (uint256[] memory r) {
r = new uint256[](3);
r[0] = uint256(uint160(p1));
r[1] = uint256(uint160(p2));
r[2] = uint256(uint32(p3));
}
function authParams(address p1, uint256 p2, uint256 p3) internal pure returns (uint256[] memory r) {
r = new uint256[](3);
r[0] = uint256(uint160(p1));
r[1] = p2;
r[2] = p3;
}
function authParams(address p1, address p2, uint256 p3, uint256 p4) internal pure returns (uint256[] memory r) {
r = new uint256[](4);
r[0] = uint256(uint160(p1));
r[1] = uint256(uint160(p2));
r[2] = p3;
r[3] = p4;
}
function authParams(address p1, uint256 p2, uint256 p3, uint256 p4) internal pure returns (uint256[] memory r) {
r = new uint256[](4);
r[0] = uint256(uint160(p1));
r[1] = p2;
r[2] = p3;
r[3] = p4;
}
function authParams(bytes32 p1, address p2, uint256 p3, bool p4) internal pure returns (uint256[] memory r) {
r = new uint256[](4);
r[0] = uint256(p1);
r[1] = uint256(uint160(p2));
r[2] = p3;
r[3] = p4 ? 1 : 0;
}
function authParams(address p1, uint256 p2, uint256 p3, uint256 p4, uint256 p5)
internal
pure
returns (uint256[] memory r)
{
r = new uint256[](5);
r[0] = uint256(uint160(p1));
r[1] = p2;
r[2] = p3;
r[3] = p4;
r[4] = p5;
}
}// SPDX-License-Identifier: GPL-3.0-or-later
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
pragma solidity >=0.8.0;
/**
* @dev Authorized interface
*/
interface IAuthorized {
/**
* @dev Sender `who` is not allowed to call `what` with `how`
*/
error AuthSenderNotAllowed(address who, bytes4 what, uint256[] how);
/**
* @dev Tells the address of the authorizer reference
*/
function authorizer() external view returns (address);
}// SPDX-License-Identifier: GPL-3.0-or-later
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
pragma solidity >=0.8.0;
/**
* @dev Authorizer interface
*/
interface IAuthorizer {
/**
* @dev Permission change
* @param where Address of the contract to change a permission for
* @param changes List of permission changes to be executed
*/
struct PermissionChange {
address where;
GrantPermission[] grants;
RevokePermission[] revokes;
}
/**
* @dev Grant permission data
* @param who Address to be authorized
* @param what Function selector to be authorized
* @param params List of params to restrict the given permission
*/
struct GrantPermission {
address who;
bytes4 what;
Param[] params;
}
/**
* @dev Revoke permission data
* @param who Address to be unauthorized
* @param what Function selector to be unauthorized
*/
struct RevokePermission {
address who;
bytes4 what;
}
/**
* @dev Params used to validate permissions params against
* @param op ID of the operation to compute in order to validate a permission param
* @param value Comparison value
*/
struct Param {
uint8 op;
uint248 value;
}
/**
* @dev Sender is not authorized to call `what` on `where` with `how`
*/
error AuthorizerSenderNotAllowed(address who, address where, bytes4 what, uint256[] how);
/**
* @dev The operation param is invalid
*/
error AuthorizerInvalidParamOp(uint8 op);
/**
* @dev Emitted every time `who`'s permission to perform `what` on `where` is granted with `params`
*/
event Authorized(address indexed who, address indexed where, bytes4 indexed what, Param[] params);
/**
* @dev Emitted every time `who`'s permission to perform `what` on `where` is revoked
*/
event Unauthorized(address indexed who, address indexed where, bytes4 indexed what);
/**
* @dev Tells whether `who` has any permission on `where`
* @param who Address asking permission for
* @param where Target address asking permission for
*/
function hasPermissions(address who, address where) external view returns (bool);
/**
* @dev Tells the number of permissions `who` has on `where`
* @param who Address asking permission for
* @param where Target address asking permission for
*/
function getPermissionsLength(address who, address where) external view returns (uint256);
/**
* @dev Tells whether `who` is allowed to call `what` on `where` with `how`
* @param who Address asking permission for
* @param where Target address asking permission for
* @param what Function selector asking permission for
* @param how Params asking permission for
*/
function isAuthorized(address who, address where, bytes4 what, uint256[] memory how) external view returns (bool);
/**
* @dev Tells the params set for a given permission
* @param who Address asking permission params of
* @param where Target address asking permission params of
* @param what Function selector asking permission params of
*/
function getPermissionParams(address who, address where, bytes4 what) external view returns (Param[] memory);
/**
* @dev Executes a list of permission changes
* @param changes List of permission changes to be executed
*/
function changePermissions(PermissionChange[] memory changes) external;
/**
* @dev Authorizes `who` to call `what` on `where` restricted by `params`
* @param who Address to be authorized
* @param where Target address to be granted for
* @param what Function selector to be granted
* @param params Optional params to restrict a permission attempt
*/
function authorize(address who, address where, bytes4 what, Param[] memory params) external;
/**
* @dev Unauthorizes `who` to call `what` on `where`. Sender must be authorized.
* @param who Address to be authorized
* @param where Target address to be revoked for
* @param what Function selector to be revoked
*/
function unauthorize(address who, address where, bytes4 what) external;
}// SPDX-License-Identifier: GPL-3.0-or-later
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
pragma solidity >=0.8.0;
/**
* @dev Fee controller interface
*/
interface IFeeController {
/**
* @dev The collector to be set is zero
*/
error FeeControllerCollectorZero();
/**
* @dev The requested max percentage to be set is zero
*/
error FeeControllerMaxPctZero();
/**
* @dev The requested max percentage to be set is above one
*/
error FeeControllerMaxPctAboveOne();
/**
* @dev No max percentage has been set for the requested smart vault
*/
error FeeControllerMaxPctNotSet(address smartVault);
/**
* @dev The requested percentage to be set is above the smart vault's max percentage
*/
error FeeControllerPctAboveMax(address smartVault, uint256 pct, uint256 maxPct);
/**
* @dev The requested max percentage to be set is above the previous max percentage set
*/
error FeeControllerMaxPctAbovePrevious(address smartVault, uint256 requestedMaxPct, uint256 previousMaxPct);
/**
* @dev Emitted every time a default fee collector is set
*/
event DefaultFeeCollectorSet(address indexed collector);
/**
* @dev Emitted every time a max fee percentage is set for a smart vault
*/
event MaxFeePercentageSet(address indexed smartVault, uint256 maxPct);
/**
* @dev Emitted every time a custom fee percentage is set
*/
event FeePercentageSet(address indexed smartVault, uint256 pct);
/**
* @dev Emitted every time a custom fee collector is set
*/
event FeeCollectorSet(address indexed smartVault, address indexed collector);
/**
* @dev Tells the default fee collector
*/
function defaultFeeCollector() external view returns (address);
/**
* @dev Tells if there is a fee set for a smart vault
* @param smartVault Address of the smart vault being queried
*/
function hasFee(address smartVault) external view returns (bool);
/**
* @dev Tells the applicable fee information for a smart vault
* @param smartVault Address of the smart vault being queried
*/
function getFee(address smartVault) external view returns (uint256 max, uint256 pct, address collector);
/**
* @dev Sets the default fee collector
* @param collector Default fee collector to be set
*/
function setDefaultFeeCollector(address collector) external;
/**
* @dev Sets a max fee percentage for a smart vault
* @param smartVault Address of smart vault to set a fee percentage for
* @param maxPct Max fee percentage to be set
*/
function setMaxFeePercentage(address smartVault, uint256 maxPct) external;
/**
* @dev Sets a fee percentage for a smart vault
* @param smartVault Address of smart vault to set a fee percentage for
* @param pct Fee percentage to be set
*/
function setFeePercentage(address smartVault, uint256 pct) external;
/**
* @dev Sets a fee collector for a smart vault
* @param smartVault Address of smart vault to set a fee collector for
* @param collector Fee collector to be set
*/
function setFeeCollector(address smartVault, address collector) external;
}// SPDX-License-Identifier: GPL-3.0-or-later
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
pragma solidity ^0.8.0;
/**
* @title FixedPoint
* @dev Math library to operate with fixed point values with 18 decimals
*/
library FixedPoint {
// 1 in fixed point value: 18 decimal places
uint256 internal constant ONE = 1e18;
/**
* @dev Multiplication overflow
*/
error FixedPointMulOverflow(uint256 a, uint256 b);
/**
* @dev Division by zero
*/
error FixedPointZeroDivision();
/**
* @dev Division internal error
*/
error FixedPointDivInternal(uint256 a, uint256 aInflated);
/**
* @dev Multiplies two fixed point numbers rounding down
*/
function mulDown(uint256 a, uint256 b) internal pure returns (uint256) {
unchecked {
uint256 product = a * b;
if (a != 0 && product / a != b) revert FixedPointMulOverflow(a, b);
return product / ONE;
}
}
/**
* @dev Multiplies two fixed point numbers rounding up
*/
function mulUp(uint256 a, uint256 b) internal pure returns (uint256) {
unchecked {
uint256 product = a * b;
if (a != 0 && product / a != b) revert FixedPointMulOverflow(a, b);
return product == 0 ? 0 : (((product - 1) / ONE) + 1);
}
}
/**
* @dev Divides two fixed point numbers rounding down
*/
function divDown(uint256 a, uint256 b) internal pure returns (uint256) {
unchecked {
if (b == 0) revert FixedPointZeroDivision();
if (a == 0) return 0;
uint256 aInflated = a * ONE;
if (aInflated / a != ONE) revert FixedPointDivInternal(a, aInflated);
return aInflated / b;
}
}
/**
* @dev Divides two fixed point numbers rounding up
*/
function divUp(uint256 a, uint256 b) internal pure returns (uint256) {
unchecked {
if (b == 0) revert FixedPointZeroDivision();
if (a == 0) return 0;
uint256 aInflated = a * ONE;
if (aInflated / a != ONE) revert FixedPointDivInternal(a, aInflated);
return ((aInflated - 1) / b) + 1;
}
}
}// SPDX-License-Identifier: GPL-3.0-or-later
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
pragma solidity ^0.8.0;
/**
* @title Denominations
* @dev Provides a list of ground denominations for those tokens that cannot be represented by an ERC20.
* For now, the only needed is the native token that could be ETH, MATIC, or other depending on the layer being operated.
*/
library Denominations {
address internal constant NATIVE_TOKEN = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;
// Fiat currencies follow https://en.wikipedia.org/wiki/ISO_4217
address internal constant USD = address(840);
function isNativeToken(address token) internal pure returns (bool) {
return token == NATIVE_TOKEN;
}
}// SPDX-License-Identifier: GPL-3.0-or-later
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';
import './Denominations.sol';
/**
* @title ERC20Helpers
* @dev Provides a list of ERC20 helper methods
*/
library ERC20Helpers {
function approve(address token, address to, uint256 amount) internal {
SafeERC20.safeApprove(IERC20(token), to, 0);
SafeERC20.safeApprove(IERC20(token), to, amount);
}
function transfer(address token, address to, uint256 amount) internal {
if (Denominations.isNativeToken(token)) Address.sendValue(payable(to), amount);
else SafeERC20.safeTransfer(IERC20(token), to, amount);
}
function balanceOf(address token, address account) internal view returns (uint256) {
if (Denominations.isNativeToken(token)) return address(account).balance;
else return IERC20(token).balanceOf(address(account));
}
}// SPDX-License-Identifier: GPL-3.0-or-later
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
/**
* @title IWrappedNativeToken
*/
interface IWrappedNativeToken is IERC20 {
/**
* @dev Wraps msg.value into the wrapped-native token
*/
function deposit() external payable;
/**
* @dev Unwraps requested amount to the native token
*/
function withdraw(uint256 amount) external;
}// SPDX-License-Identifier: GPL-3.0-or-later
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
pragma solidity >=0.8.0;
import '@mimic-fi/v3-authorizer/contracts/interfaces/IAuthorized.sol';
/**
* @title IPriceOracle
* @dev Price oracle interface
*
* Tells the price of a token (base) in a given quote based the following rule: the response is expressed using the
* corresponding number of decimals so that when performing a fixed point product of it by a `base` amount it results
* in a value expressed in `quote` decimals. For example, if `base` is ETH and `quote` is USDC, then the returned
* value is expected to be expressed using 6 decimals:
*
* FixedPoint.mul(X[ETH], price[USDC/ETH]) = FixedPoint.mul(X[18], price[6]) = X * price [6]
*/
interface IPriceOracle is IAuthorized {
/**
* @dev Price data
* @param base Token to rate
* @param quote Token used for the price rate
* @param rate Price of a token (base) expressed in `quote`
* @param deadline Expiration timestamp until when the given quote is considered valid
*/
struct PriceData {
address base;
address quote;
uint256 rate;
uint256 deadline;
}
/**
* @dev The signer is not allowed
*/
error PriceOracleInvalidSigner(address signer);
/**
* @dev The feed for the given (base, quote) pair doesn't exist
*/
error PriceOracleMissingFeed(address base, address quote);
/**
* @dev The price deadline is in the past
*/
error PriceOracleOutdatedPrice(address base, address quote, uint256 deadline, uint256 currentTimestamp);
/**
* @dev The base decimals are bigger than the quote decimals plus the fixed point decimals
*/
error PriceOracleBaseDecimalsTooBig(address base, uint256 baseDecimals, address quote, uint256 quoteDecimals);
/**
* @dev The inverse feed decimals are bigger than the maximum inverse feed decimals
*/
error PriceOracleInverseFeedDecimalsTooBig(address inverseFeed, uint256 inverseFeedDecimals);
/**
* @dev The quote feed decimals are bigger than the base feed decimals plus the fixed point decimals
*/
error PriceOracleQuoteFeedDecimalsTooBig(uint256 quoteFeedDecimals, uint256 baseFeedDecimals);
/**
* @dev Emitted every time a signer is changed
*/
event SignerSet(address indexed signer, bool allowed);
/**
* @dev Emitted every time a feed is set for (base, quote) pair
*/
event FeedSet(address indexed base, address indexed quote, address feed);
/**
* @dev Tells whether an address is as an allowed signer or not
* @param signer Address of the signer being queried
*/
function isSignerAllowed(address signer) external view returns (bool);
/**
* @dev Tells the list of allowed signers
*/
function getAllowedSigners() external view returns (address[] memory);
/**
* @dev Tells the digest expected to be signed by the off-chain oracle signers for a list of prices
* @param prices List of prices to be signed
*/
function getPricesDigest(PriceData[] memory prices) external view returns (bytes32);
/**
* @dev Tells the price of a token `base` expressed in a token `quote`
* @param base Token to rate
* @param quote Token used for the price rate
*/
function getPrice(address base, address quote) external view returns (uint256);
/**
* @dev Tells the price of a token `base` expressed in a token `quote`
* @param base Token to rate
* @param quote Token used for the price rate
* @param data Encoded data to validate in order to compute the requested rate
*/
function getPrice(address base, address quote, bytes memory data) external view returns (uint256);
/**
* @dev Tells the feed address for (base, quote) pair. It returns the zero address if there is no one set.
* @param base Token to be rated
* @param quote Token used for the price rate
*/
function getFeed(address base, address quote) external view returns (address);
/**
* @dev Sets a signer condition
* @param signer Address of the signer to be set
* @param allowed Whether the requested signer is allowed
*/
function setSigner(address signer, bool allowed) external;
/**
* @dev Sets a feed for a (base, quote) pair
* @param base Token base to be set
* @param quote Token quote to be set
* @param feed Feed to be set
*/
function setFeed(address base, address quote, address feed) external;
}// SPDX-License-Identifier: GPL-3.0-or-later
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
pragma solidity ^0.8.0;
import './IRegistry.sol';
/**
* @dev Registry interface
*/
interface IRegistry {
/**
* @dev The implementation address is zero
*/
error RegistryImplementationAddressZero();
/**
* @dev The implementation is already registered
*/
error RegistryImplementationRegistered(address implementation);
/**
* @dev The implementation is not registered
*/
error RegistryImplementationNotRegistered(address implementation);
/**
* @dev The implementation is already deprecated
*/
error RegistryImplementationDeprecated(address implementation);
/**
* @dev Emitted every time an implementation is registered
*/
event Registered(address indexed implementation, string name, bool stateless);
/**
* @dev Emitted every time an implementation is deprecated
*/
event Deprecated(address indexed implementation);
/**
* @dev Tells whether an implementation is registered
* @param implementation Address of the implementation being queried
*/
function isRegistered(address implementation) external view returns (bool);
/**
* @dev Tells whether an implementation is stateless or not
* @param implementation Address of the implementation being queried
*/
function isStateless(address implementation) external view returns (bool);
/**
* @dev Tells whether an implementation is deprecated
* @param implementation Address of the implementation being queried
*/
function isDeprecated(address implementation) external view returns (bool);
/**
* @dev Creates and registers an implementation
* @param name Name of the implementation
* @param code Code of the implementation to create and register
* @param stateless Whether the new implementation is considered stateless or not
*/
function create(string memory name, bytes memory code, bool stateless) external;
/**
* @dev Registers an implementation
* @param name Name of the implementation
* @param implementation Address of the implementation to be registered
* @param stateless Whether the given implementation is considered stateless or not
*/
function register(string memory name, address implementation, bool stateless) external;
/**
* @dev Deprecates an implementation
* @param implementation Address of the implementation to be deprecated
*/
function deprecate(address implementation) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.2;
import "../../utils/AddressUpgradeable.sol";
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
* case an upgrade adds a module that needs to be initialized.
*
* For example:
*
* [.hljs-theme-light.nopadding]
* ```
* contract MyToken is ERC20Upgradeable {
* function initialize() initializer public {
* __ERC20_init("MyToken", "MTK");
* }
* }
* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
* function initializeV2() reinitializer(2) public {
* __ERC20Permit_init("MyToken");
* }
* }
* ```
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
* the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() {
* _disableInitializers();
* }
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
* @custom:oz-retyped-from bool
*/
uint8 private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint8 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`.
*/
modifier initializer() {
bool isTopLevelCall = !_initializing;
require(
(isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
"Initializable: contract is already initialized"
);
_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.
*
* `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original
* initialization step. This is essential to configure modules that are added through upgrades and that require
* initialization.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*/
modifier reinitializer(uint8 version) {
require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
_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() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*/
function _disableInitializers() internal virtual {
require(!_initializing, "Initializable: contract is initializing");
if (_initialized < type(uint8).max) {
_initialized = type(uint8).max;
emit Initialized(type(uint8).max);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
import "../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;
uint256 private _status;
function __ReentrancyGuard_init() internal onlyInitializing {
__ReentrancyGuard_init_unchained();
}
function __ReentrancyGuard_init_unchained() internal onlyInitializing {
_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() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @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 amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: GPL-3.0-or-later
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
pragma solidity >=0.8.0;
import '@mimic-fi/v3-authorizer/contracts/interfaces/IAuthorized.sol';
/**
* @dev Smart Vault interface
*/
interface ISmartVault is IAuthorized {
/**
* @dev The smart vault is paused
*/
error SmartVaultPaused();
/**
* @dev The smart vault is unpaused
*/
error SmartVaultUnpaused();
/**
* @dev The token is zero
*/
error SmartVaultTokenZero();
/**
* @dev The amount is zero
*/
error SmartVaultAmountZero();
/**
* @dev The recipient is zero
*/
error SmartVaultRecipientZero();
/**
* @dev The connector is deprecated
*/
error SmartVaultConnectorDeprecated(address connector);
/**
* @dev The connector is not registered
*/
error SmartVaultConnectorNotRegistered(address connector);
/**
* @dev The connector is not stateless
*/
error SmartVaultConnectorNotStateless(address connector);
/**
* @dev The connector ID is zero
*/
error SmartVaultBalanceConnectorIdZero();
/**
* @dev The balance connector's balance is lower than the requested amount to be deducted
*/
error SmartVaultBalanceConnectorInsufficientBalance(bytes32 id, address token, uint256 balance, uint256 amount);
/**
* @dev The smart vault's native token balance is lower than the requested amount to be deducted
*/
error SmartVaultInsufficientNativeTokenBalance(uint256 balance, uint256 amount);
/**
* @dev Emitted every time a smart vault is paused
*/
event Paused();
/**
* @dev Emitted every time a smart vault is unpaused
*/
event Unpaused();
/**
* @dev Emitted every time the price oracle is set
*/
event PriceOracleSet(address indexed priceOracle);
/**
* @dev Emitted every time a connector check is overridden
*/
event ConnectorCheckOverridden(address indexed connector, bool ignored);
/**
* @dev Emitted every time a balance connector is updated
*/
event BalanceConnectorUpdated(bytes32 indexed id, address indexed token, uint256 amount, bool added);
/**
* @dev Emitted every time `execute` is called
*/
event Executed(address indexed connector, bytes data, bytes result);
/**
* @dev Emitted every time `call` is called
*/
event Called(address indexed target, bytes data, uint256 value, bytes result);
/**
* @dev Emitted every time `wrap` is called
*/
event Wrapped(uint256 amount);
/**
* @dev Emitted every time `unwrap` is called
*/
event Unwrapped(uint256 amount);
/**
* @dev Emitted every time `collect` is called
*/
event Collected(address indexed token, address indexed from, uint256 amount);
/**
* @dev Emitted every time `withdraw` is called
*/
event Withdrawn(address indexed token, address indexed recipient, uint256 amount, uint256 fee);
/**
* @dev Tells if the smart vault is paused or not
*/
function isPaused() external view returns (bool);
/**
* @dev Tells the address of the price oracle
*/
function priceOracle() external view returns (address);
/**
* @dev Tells the address of the Mimic's registry
*/
function registry() external view returns (address);
/**
* @dev Tells the address of the Mimic's fee controller
*/
function feeController() external view returns (address);
/**
* @dev Tells the address of the wrapped native token
*/
function wrappedNativeToken() external view returns (address);
/**
* @dev Tells if a connector check is ignored
* @param connector Address of the connector being queried
*/
function isConnectorCheckIgnored(address connector) external view returns (bool);
/**
* @dev Tells the balance to a balance connector for a token
* @param id Balance connector identifier
* @param token Address of the token querying the balance connector for
*/
function getBalanceConnector(bytes32 id, address token) external view returns (uint256);
/**
* @dev Tells whether someone has any permission over the smart vault
*/
function hasPermissions(address who) external view returns (bool);
/**
* @dev Pauses a smart vault
*/
function pause() external;
/**
* @dev Unpauses a smart vault
*/
function unpause() external;
/**
* @dev Sets the price oracle
* @param newPriceOracle Address of the new price oracle to be set
*/
function setPriceOracle(address newPriceOracle) external;
/**
* @dev Overrides connector checks
* @param connector Address of the connector to override its check
* @param ignored Whether the connector check should be ignored
*/
function overrideConnectorCheck(address connector, bool ignored) external;
/**
* @dev Updates a balance connector
* @param id Balance connector identifier to be updated
* @param token Address of the token to update the balance connector for
* @param amount Amount to be updated to the balance connector
* @param add Whether the balance connector should be increased or decreased
*/
function updateBalanceConnector(bytes32 id, address token, uint256 amount, bool add) external;
/**
* @dev Executes a connector inside of the Smart Vault context
* @param connector Address of the connector that will be executed
* @param data Call data to be used for the delegate-call
* @return result Call response if it was successful, otherwise it reverts
*/
function execute(address connector, bytes memory data) external returns (bytes memory result);
/**
* @dev Executes an arbitrary call from the Smart Vault
* @param target Address where the call will be sent
* @param data Call data to be used for the call
* @param value Value in wei that will be attached to the call
* @return result Call response if it was successful, otherwise it reverts
*/
function call(address target, bytes memory data, uint256 value) external returns (bytes memory result);
/**
* @dev Wrap an amount of native tokens to the wrapped ERC20 version of it
* @param amount Amount of native tokens to be wrapped
*/
function wrap(uint256 amount) external;
/**
* @dev Unwrap an amount of wrapped native tokens
* @param amount Amount of wrapped native tokens to unwrapped
*/
function unwrap(uint256 amount) external;
/**
* @dev Collect tokens from an external account to the Smart Vault
* @param token Address of the token to be collected
* @param from Address where the tokens will be transferred from
* @param amount Amount of tokens to be transferred
*/
function collect(address token, address from, uint256 amount) external;
/**
* @dev Withdraw tokens to an external account
* @param token Address of the token to be withdrawn
* @param recipient Address where the tokens will be transferred to
* @param amount Amount of tokens to withdraw
*/
function withdraw(address token, address recipient, uint256 amount) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import './ContractMock.sol';
contract ConnectorMock {
ContractMock public immutable mock;
constructor() {
mock = new ContractMock();
}
function call() external payable {
// solhint-disable-next-line avoid-low-level-calls
mock.call();
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract ContractMock {
event Received(address indexed sender, uint256 value);
function call() external payable {
emit Received(msg.sender, msg.value);
}
}{
"optimizer": {
"enabled": true,
"runs": 10000
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract ABI
API[{"inputs":[{"internalType":"address","name":"_registry","type":"address"},{"internalType":"address","name":"_feeController","type":"address"},{"internalType":"address","name":"_wrappedNativeToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"who","type":"address"},{"internalType":"bytes4","name":"what","type":"bytes4"},{"internalType":"uint256[]","name":"how","type":"uint256[]"}],"name":"AuthSenderNotAllowed","type":"error"},{"inputs":[{"internalType":"uint256","name":"a","type":"uint256"},{"internalType":"uint256","name":"b","type":"uint256"}],"name":"FixedPointMulOverflow","type":"error"},{"inputs":[],"name":"SmartVaultAmountZero","type":"error"},{"inputs":[],"name":"SmartVaultBalanceConnectorIdZero","type":"error"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SmartVaultBalanceConnectorInsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"connector","type":"address"}],"name":"SmartVaultConnectorDeprecated","type":"error"},{"inputs":[{"internalType":"address","name":"connector","type":"address"}],"name":"SmartVaultConnectorNotRegistered","type":"error"},{"inputs":[{"internalType":"address","name":"connector","type":"address"}],"name":"SmartVaultConnectorNotStateless","type":"error"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SmartVaultInsufficientNativeTokenBalance","type":"error"},{"inputs":[],"name":"SmartVaultPaused","type":"error"},{"inputs":[],"name":"SmartVaultRecipientZero","type":"error"},{"inputs":[],"name":"SmartVaultTokenZero","type":"error"},{"inputs":[],"name":"SmartVaultUnpaused","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"},{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bool","name":"added","type":"bool"}],"name":"BalanceConnectorUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"result","type":"bytes"}],"name":"Called","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Collected","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"connector","type":"address"},{"indexed":false,"internalType":"bool","name":"ignored","type":"bool"}],"name":"ConnectorCheckOverridden","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"connector","type":"address"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"result","type":"bytes"}],"name":"Executed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"priceOracle","type":"address"}],"name":"PriceOracleSet","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Unwrapped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"}],"name":"Withdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Wrapped","type":"event"},{"inputs":[],"name":"authorizer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"call","outputs":[{"internalType":"bytes","name":"result","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"collect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"connector","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"execute","outputs":[{"internalType":"bytes","name":"result","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeController","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"address","name":"","type":"address"}],"name":"getBalanceConnector","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"hasPermissions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_authorizer","type":"address"},{"internalType":"address","name":"_priceOracle","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isConnectorCheckIgnored","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"connector","type":"address"},{"internalType":"bool","name":"ignored","type":"bool"}],"name":"overrideConnectorCheck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"priceOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"registry","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newPriceOracle","type":"address"}],"name":"setPriceOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unwrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"add","type":"bool"}],"name":"updateBalanceConnector","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"wrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wrappedNativeToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Loading...
Loading
Loading...
Loading
Net Worth in USD
$210,778.21
Net Worth in ETH
109.542609
Token Allocations
USDC
99.07%
LAYER
0.07%
JUSD
0.06%
Others
0.81%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 95.79% | $0.999906 | 201,930.3378 | $201,911.36 | |
| ETH | 0.07% | $0.095893 | 1,441.8535 | $138.26 | |
| ETH | 0.02% | $0.000183 | 249,376.8633 | $45.52 | |
| ETH | 0.02% | $0.000008 | 5,684,409.3592 | $44.79 | |
| ETH | 0.02% | $0.067201 | 604.4857 | $40.62 | |
| ETH | 0.02% | $0.999802 | 38.6921 | $38.68 | |
| ETH | 0.02% | $2.15 | 17.4653 | $37.55 | |
| ETH | 0.02% | $0.999946 | 33.861 | $33.86 | |
| ETH | 0.02% | $0.04936 | 644.6314 | $31.82 | |
| ETH | 0.01% | $0.034929 | 846.6029 | $29.57 | |
| ETH | 0.01% | $0.994194 | 23.375 | $23.24 | |
| ETH | 0.01% | $0.030759 | 742.8241 | $22.85 | |
| ETH | <0.01% | $0.033621 | 585.044 | $19.67 | |
| ETH | <0.01% | $0.004723 | 4,040.0411 | $19.08 | |
| ETH | <0.01% | $0.013665 | 1,370.8489 | $18.73 | |
| ETH | <0.01% | $2,361.31 | 0.00749348 | $17.69 | |
| ETH | <0.01% | $0.049997 | 335.6905 | $16.78 | |
| ETH | <0.01% | $3.3 | 4.8194 | $15.9 | |
| ETH | <0.01% | $0.006815 | 2,330.6773 | $15.88 | |
| ETH | <0.01% | $0.009679 | 1,611.8442 | $15.6 | |
| ETH | <0.01% | $0.000126 | 120,569.8088 | $15.24 | |
| ETH | <0.01% | $0.999926 | 14.915 | $14.91 | |
| ETH | <0.01% | $0.573865 | 25.4902 | $14.63 | |
| ETH | <0.01% | $0.133873 | 108.3364 | $14.5 | |
| ETH | <0.01% | $0.036175 | 400.3467 | $14.48 | |
| ETH | <0.01% | $0.016417 | 863.2491 | $14.17 | |
| ETH | <0.01% | $0.000072 | 197,049.9909 | $14.11 | |
| ETH | <0.01% | $0.094984 | 141.0388 | $13.4 | |
| ETH | <0.01% | $0.053511 | 240.6646 | $12.88 | |
| ETH | <0.01% | $0.190001 | 66.5424 | $12.64 | |
| ETH | <0.01% | $0.018409 | 671.2794 | $12.36 | |
| ETH | <0.01% | $0.073973 | 160.2687 | $11.86 | |
| ETH | <0.01% | $14.37 | 0.8065 | $11.59 | |
| ETH | <0.01% | $2.3 | 4.9624 | $11.41 | |
| ETH | <0.01% | $0.301115 | 37.4547 | $11.28 | |
| ETH | <0.01% | $0.011182 | 1,007.7487 | $11.27 | |
| ETH | <0.01% | $0.015965 | 675.5842 | $10.79 | |
| ETH | <0.01% | $0.000081 | 130,616.2861 | $10.62 | |
| ETH | <0.01% | $0.101716 | 102.8876 | $10.47 | |
| ETH | <0.01% | $0.279684 | 37.0282 | $10.36 | |
| ETH | <0.01% | $0.127563 | 79.3266 | $10.12 | |
| ETH | <0.01% | $0.402774 | 24.9396 | $10.05 | |
| ETH | <0.01% | $0.008559 | 1,168.2164 | $10 | |
| ETH | <0.01% | $0.019765 | 500.171 | $9.89 | |
| ETH | <0.01% | $0.00029 | 33,173.6984 | $9.64 | |
| ETH | <0.01% | $0.27639 | 34.335 | $9.49 | |
| ETH | <0.01% | $18.36 | 0.513 | $9.42 | |
| ETH | <0.01% | $1,916.51 | 0.004675 | $8.96 | |
| ETH | <0.01% | $0.012614 | 698.0552 | $8.81 | |
| ETH | <0.01% | $0.214133 | 41.0482 | $8.79 | |
| ETH | <0.01% | $0.000312 | 27,990.6763 | $8.74 | |
| ETH | <0.01% | $0.004948 | 1,713.678 | $8.48 | |
| ETH | <0.01% | $0.001435 | 5,862.9528 | $8.41 | |
| ETH | <0.01% | $0.385032 | 21.5921 | $8.31 | |
| ETH | <0.01% | $0.004248 | 1,939.8816 | $8.24 | |
| ETH | <0.01% | $0.023519 | 348.7196 | $8.2 | |
| ETH | <0.01% | $0.008859 | 915.7271 | $8.11 | |
| ETH | <0.01% | $0.619891 | 12.9693 | $8.04 | |
| ETH | <0.01% | $0.004254 | 1,843.6538 | $7.84 | |
| ETH | <0.01% | $0.055441 | 139.4575 | $7.73 | |
| ETH | <0.01% | $0.137573 | 55.8021 | $7.68 | |
| ETH | <0.01% | $0.068359 | 111.7122 | $7.64 | |
| ETH | <0.01% | $1.3 | 5.8361 | $7.59 | |
| ETH | <0.01% | $0.149459 | 50.5754 | $7.56 | |
| ETH | <0.01% | $0.997874 | 7.5697 | $7.55 | |
| ETH | <0.01% | $0.424099 | 17.6023 | $7.47 | |
| ETH | <0.01% | $0.021105 | 348.644 | $7.36 | |
| ETH | <0.01% | $1.84 | 3.9865 | $7.34 | |
| ETH | <0.01% | $0.00 | 3,370.2994 | $0.00 | |
| ETH | <0.01% | $0.010585 | 666.7853 | $7.06 | |
| ETH | <0.01% | $0.020232 | 348.3235 | $7.05 | |
| ETH | <0.01% | $0.103299 | 66.1953 | $6.84 | |
| ETH | <0.01% | $0.062328 | 107.1237 | $6.68 | |
| ETH | <0.01% | $49.51 | 0.133 | $6.59 | |
| ETH | <0.01% | $0.01765 | 356.8033 | $6.3 | |
| ETH | <0.01% | $0.001354 | 4,597.0449 | $6.22 | |
| ETH | <0.01% | $0.292529 | 20.8431 | $6.1 | |
| ETH | <0.01% | $7.84 | 0.7756 | $6.08 | |
| ETH | <0.01% | $0.15649 | 38.8025 | $6.07 | |
| ETH | <0.01% | $0.000028 | 210,723.2628 | $6 | |
| ETH | <0.01% | $0.095151 | 62.4184 | $5.94 | |
| ETH | <0.01% | $17.51 | 0.3348 | $5.86 | |
| ETH | <0.01% | $3.58 | 1.6253 | $5.82 | |
| ETH | <0.01% | $0.002143 | 2,695.1239 | $5.78 | |
| ETH | <0.01% | $1.34 | 4.2927 | $5.75 | |
| ETH | <0.01% | $0.179645 | 32.001 | $5.75 | |
| ETH | <0.01% | $0.000613 | 9,271.5622 | $5.69 | |
| ETH | <0.01% | $0.00134 | 4,231.0647 | $5.67 | |
| ETH | <0.01% | $0.104606 | 53.714 | $5.62 | |
| ETH | <0.01% | $0.033339 | 167.4358 | $5.58 | |
| ETH | <0.01% | $0.000129 | 42,585.3299 | $5.5 | |
| ETH | <0.01% | $0.002315 | 2,312.1213 | $5.35 | |
| ETH | <0.01% | $0.510585 | 10.43 | $5.33 | |
| ETH | <0.01% | $0.591484 | 8.7245 | $5.16 | |
| ETH | <0.01% | $0.064214 | 78.5505 | $5.04 | |
| ETH | <0.01% | $0.124222 | 40.4747 | $5.03 | |
| ETH | <0.01% | $0.283862 | 17.7033 | $5.03 | |
| ETH | <0.01% | $0.006937 | 720.313 | $5 | |
| ETH | <0.01% | $1.85 | 2.6879 | $4.97 | |
| ETH | <0.01% | $0.048488 | 101.6423 | $4.93 | |
| ETH | <0.01% | $0.003746 | 1,266.2311 | $4.74 | |
| ETH | <0.01% | $0.007527 | 621.3789 | $4.68 | |
| ETH | <0.01% | $4,689.81 | 0.00098674 | $4.63 | |
| ETH | <0.01% | $0.014789 | 312.684 | $4.62 | |
| ETH | <0.01% | $0.00025 | 18,317.4806 | $4.58 | |
| ETH | <0.01% | $0.018466 | 245.8299 | $4.54 | |
| ETH | <0.01% | $0.143733 | 31.4444 | $4.52 | |
| ETH | <0.01% | $0.023473 | 190.3581 | $4.47 | |
| ETH | <0.01% | $1.2 | 3.6903 | $4.43 | |
| ETH | <0.01% | $0.371664 | 11.8959 | $4.42 | |
| ETH | <0.01% | $0.032474 | 134.6498 | $4.37 | |
| ETH | <0.01% | $0.044888 | 96.1725 | $4.32 | |
| ETH | <0.01% | $1.29 | 3.3158 | $4.28 | |
| ETH | <0.01% | $0.008597 | 492.0634 | $4.23 | |
| ETH | <0.01% | $0.010874 | 377.9533 | $4.11 | |
| ETH | <0.01% | $0.051605 | 78.9458 | $4.07 | |
| ETH | <0.01% | $0.005253 | 772.7892 | $4.06 | |
| ETH | <0.01% | $0.134591 | 30.0217 | $4.04 | |
| ETH | <0.01% | $0.067721 | 58.9268 | $3.99 | |
| ETH | <0.01% | $0.019877 | 196.2756 | $3.9 | |
| ETH | <0.01% | $0.06461 | 59.0159 | $3.81 | |
| ETH | <0.01% | $3.45 | 1.1015 | $3.8 | |
| ETH | <0.01% | $0.030571 | 123.2911 | $3.77 | |
| ETH | <0.01% | $0.061064 | 61.6939 | $3.77 | |
| ETH | <0.01% | $0.019193 | 196.2823 | $3.77 | |
| ETH | <0.01% | $0.028011 | 131.2931 | $3.68 | |
| ETH | <0.01% | $0.9996 | 3.6718 | $3.67 | |
| ETH | <0.01% | $0.025077 | 145.2585 | $3.64 | |
| ETH | <0.01% | $0.000044 | 83,231.1929 | $3.64 | |
| ETH | <0.01% | $0.132746 | 27.3482 | $3.63 | |
| ETH | <0.01% | $1.22 | 2.972 | $3.63 | |
| ETH | <0.01% | $0.01467 | 246.0834 | $3.61 | |
| ETH | <0.01% | $0.008624 | 409.3755 | $3.53 | |
| ETH | <0.01% | $0.006148 | 570.3254 | $3.51 | |
| ETH | <0.01% | $1.31 | 2.6574 | $3.48 | |
| ETH | <0.01% | $0.184667 | 18.8245 | $3.48 | |
| ETH | <0.01% | $0.073159 | 46.4255 | $3.4 | |
| ETH | <0.01% | $0.002295 | 1,475.6309 | $3.39 | |
| ETH | <0.01% | $0.002429 | 1,379.9483 | $3.35 | |
| ETH | <0.01% | $0.207224 | 16.0759 | $3.33 | |
| ETH | <0.01% | $0.000009 | 365,922.157 | $3.32 | |
| ETH | <0.01% | $0.005162 | 637.4994 | $3.29 | |
| ETH | <0.01% | $0.105498 | 31.0649 | $3.28 | |
| ETH | <0.01% | $0.10417 | 31.1005 | $3.24 | |
| ETH | <0.01% | $0.011742 | 269.8948 | $3.17 | |
| ETH | <0.01% | $0.026893 | 116.9803 | $3.15 | |
| ETH | <0.01% | $42.52 | 0.0736 | $3.13 | |
| ETH | <0.01% | $0.021846 | 142.8405 | $3.12 | |
| ETH | <0.01% | $1.15 | 2.6685 | $3.07 | |
| ETH | <0.01% | $0.187801 | 15.9314 | $2.99 | |
| ETH | <0.01% | $0.000034 | 88,624.656 | $2.98 | |
| ETH | <0.01% | $0.062645 | 46.2088 | $2.89 | |
| ETH | <0.01% | $0.03753 | 76.7674 | $2.88 | |
| ETH | <0.01% | $0.070562 | 40.1668 | $2.83 | |
| ETH | <0.01% | $0.023355 | 120.7039 | $2.82 | |
| ETH | <0.01% | $0.002617 | 1,073.5062 | $2.81 | |
| ETH | <0.01% | $2,134.77 | 0.00130847 | $2.79 | |
| ETH | <0.01% | $1.72 | 1.6103 | $2.78 | |
| ETH | <0.01% | $0.000284 | 9,610.9428 | $2.73 | |
| ETH | <0.01% | $0.021144 | 125.2079 | $2.65 | |
| ETH | <0.01% | $0.231901 | 11.3733 | $2.64 | |
| ETH | <0.01% | $0.083958 | 31.2647 | $2.62 | |
| ETH | <0.01% | $0.017126 | 152.3653 | $2.61 | |
| ETH | <0.01% | $0.006051 | 431.0756 | $2.61 | |
| ETH | <0.01% | $0.541992 | 4.79 | $2.6 | |
| ETH | <0.01% | $2,059.18 | 0.00125289 | $2.58 | |
| ETH | <0.01% | $0.001991 | 1,234.821 | $2.46 | |
| ETH | <0.01% | $0.007111 | 344.7265 | $2.45 | |
| ETH | <0.01% | $0.004916 | 497.4223 | $2.45 | |
| ETH | <0.01% | $0.002555 | 952 | $2.43 | |
| ETH | <0.01% | $0.009331 | 260.6645 | $2.43 | |
| ETH | <0.01% | $0.141053 | 16.6586 | $2.35 | |
| ETH | <0.01% | $0.004138 | 554.5104 | $2.29 | |
| ETH | <0.01% | $0.140575 | 15.7843 | $2.22 | |
| ETH | <0.01% | $0.006548 | 332.4502 | $2.18 | |
| ETH | <0.01% | $0.898084 | 2.3819 | $2.14 | |
| ETH | <0.01% | $134.97 | 0.0152 | $2.05 | |
| ETH | <0.01% | $0.102285 | 19.8164 | $2.03 | |
| ETH | <0.01% | $0.039693 | 50.585 | $2.01 | |
| ETH | <0.01% | $0.000006 | 311,985.0923 | $1.98 | |
| ETH | <0.01% | $0.005473 | 359.6641 | $1.97 | |
| ETH | <0.01% | $5.2 | 0.3785 | $1.97 | |
| ETH | <0.01% | $0.000158 | 12,257.7066 | $1.94 | |
| ETH | <0.01% | $0.005014 | 383.8515 | $1.92 | |
| ETH | <0.01% | $0.000068 | 28,173.241 | $1.91 | |
| ETH | <0.01% | $0.000791 | 2,357.1147 | $1.86 | |
| ETH | <0.01% | $0.004857 | 367.5767 | $1.79 | |
| ETH | <0.01% | $10.13 | 0.1754 | $1.78 | |
| ETH | <0.01% | $0.021121 | 83.2644 | $1.76 | |
| ETH | <0.01% | $0.020007 | 86.1098 | $1.72 | |
| ETH | <0.01% | $0.000024 | 71,182.5203 | $1.71 | |
| ETH | <0.01% | $0.000241 | 6,983.7754 | $1.69 | |
| ETH | <0.01% | $0.000594 | 2,820.5443 | $1.68 | |
| ETH | <0.01% | $1.63 | 1.0015 | $1.63 | |
| ETH | <0.01% | $0.001321 | 1,223.7312 | $1.62 | |
| ETH | <0.01% | $0.000896 | 1,798.6488 | $1.61 | |
| ETH | <0.01% | $0.00041 | 3,912.7994 | $1.6 | |
| ETH | <0.01% | $0.001143 | 1,384.2762 | $1.58 | |
| ETH | <0.01% | $0.001449 | 1,087.3558 | $1.58 | |
| ETH | <0.01% | $0.306704 | 5.1202 | $1.57 | |
| ETH | <0.01% | $0.001327 | 1,177.3248 | $1.56 | |
| ETH | <0.01% | $0.10784 | 14.2058 | $1.53 | |
| ETH | <0.01% | $0.200812 | 7.5533 | $1.52 | |
| ETH | <0.01% | $0.000851 | 1,757.2837 | $1.5 | |
| ETH | <0.01% | $0.033892 | 43.4413 | $1.47 | |
| ETH | <0.01% | $0.00018 | 7,738.9922 | $1.39 | |
| ETH | <0.01% | $0.002872 | 467.5491 | $1.34 | |
| ETH | <0.01% | $0.051894 | 25.177 | $1.31 | |
| ETH | <0.01% | $0.017251 | 74.6151 | $1.29 | |
| ETH | <0.01% | $0.003082 | 417.6133 | $1.29 | |
| ETH | <0.01% | $0.000182 | 6,765.4362 | $1.23 | |
| ETH | <0.01% | $0.001281 | 961.5165 | $1.23 | |
| ETH | <0.01% | $0.01479 | 82.7952 | $1.22 | |
| ETH | <0.01% | $0.000077 | 15,335.7463 | $1.18 | |
| ETH | <0.01% | $0.028133 | 41.4837 | $1.17 | |
| ETH | <0.01% | $0.000036 | 31,772.9218 | $1.16 | |
| ETH | <0.01% | $0.00115 | 989.4192 | $1.14 | |
| ETH | <0.01% | $0.017024 | 66.6641 | $1.13 | |
| ETH | <0.01% | $0.15083 | 7.477 | $1.13 | |
| ETH | <0.01% | $0.00607 | 172.8343 | $1.05 | |
| ETH | <0.01% | $0.002439 | 426.9697 | $1.04 | |
| ETH | <0.01% | $0.000068 | 15,290.0465 | $1.04 | |
| ETH | <0.01% | $0.025006 | 40.9775 | $1.02 | |
| ETH | <0.01% | $0.00226 | 451.0458 | $1.02 | |
| ETH | <0.01% | $165.73 | 0.00613555 | $1.02 | |
| ETH | <0.01% | $0.000591 | 1,689.8556 | $0.9989 | |
| ETH | <0.01% | $0.019539 | 50.7295 | $0.9911 | |
| ETH | <0.01% | $0.000055 | 17,735.4432 | $0.9816 | |
| ETH | <0.01% | $1.46 | 0.6544 | $0.9554 | |
| ETH | <0.01% | $0.038959 | 24.2169 | $0.9434 | |
| ETH | <0.01% | $0.000125 | 7,392.3196 | $0.921 | |
| ETH | <0.01% | $0.021633 | 42.158 | $0.912 | |
| ETH | <0.01% | $0.000104 | 8,500 | $0.883 | |
| ETH | <0.01% | $0.005001 | 176.5165 | $0.8828 | |
| ETH | <0.01% | $0.235716 | 3.7283 | $0.8788 | |
| ETH | <0.01% | $0.095417 | 9.0818 | $0.8665 | |
| ETH | <0.01% | $0.031736 | 26.369 | $0.8368 | |
| ETH | <0.01% | $0.009663 | 86.3617 | $0.8345 | |
| ETH | <0.01% | $0.00424 | 194.7292 | $0.8256 | |
| ETH | <0.01% | $0.002192 | 375.2306 | $0.8224 | |
| ETH | <0.01% | $0.011074 | 74.2349 | $0.8221 | |
| ETH | <0.01% | $0.031154 | 25.8378 | $0.8049 | |
| ETH | <0.01% | $0.000133 | 5,846.9235 | $0.7803 | |
| ETH | <0.01% | $0.298737 | 2.5965 | $0.7756 | |
| ETH | <0.01% | $2,010.48 | 0.00036976 | $0.7433 | |
| ETH | <0.01% | $0.018376 | 39.9387 | $0.7339 | |
| ETH | <0.01% | $0.006475 | 111.0224 | $0.7188 | |
| ETH | <0.01% | $0.124375 | 5.7544 | $0.7156 | |
| ETH | <0.01% | $0.014353 | 48.5924 | $0.6974 | |
| ETH | <0.01% | $0.214152 | 3.2102 | $0.6874 | |
| ETH | <0.01% | $0.001771 | 387.4868 | $0.6863 | |
| ETH | <0.01% | $0.000275 | 2,495.3882 | $0.6862 | |
| ETH | <0.01% | $112.8 | 0.00606612 | $0.6842 | |
| ETH | <0.01% | $0.000004 | 175,058.0693 | $0.67 | |
| ETH | <0.01% | $0.045163 | 14.4383 | $0.652 | |
| ETH | <0.01% | $0.002371 | 273.7732 | $0.6491 | |
| ETH | <0.01% | $2.83 | 0.2284 | $0.6463 | |
| ETH | <0.01% | $0.043368 | 14.1984 | $0.6157 | |
| ETH | <0.01% | $0.159504 | 3.7825 | $0.6033 | |
| ETH | <0.01% | $0.28603 | 2.1094 | $0.6033 | |
| ETH | <0.01% | $0.001531 | 389.6659 | $0.5966 | |
| ETH | <0.01% | $0.644046 | 0.8917 | $0.5742 | |
| ETH | <0.01% | $0.000386 | 1,458.4111 | $0.5627 | |
| ETH | <0.01% | $0.057496 | 9.7563 | $0.5609 | |
| ETH | <0.01% | $0.024144 | 23.2293 | $0.5608 | |
| ETH | <0.01% | $0.008242 | 67.6553 | $0.5575 | |
| ETH | <0.01% | $0.012731 | 42.3283 | $0.5389 | |
| ETH | <0.01% | $0.004602 | 109.9143 | $0.5058 | |
| ETH | <0.01% | $0.033409 | 14.8747 | $0.4969 | |
| ETH | <0.01% | $0.000199 | 2,486.3047 | $0.4951 | |
| ETH | <0.01% | $0.022003 | 21.7298 | $0.4781 | |
| ETH | <0.01% | $0.086755 | 5.3722 | $0.466 | |
| ETH | <0.01% | $0.0443 | 10.3594 | $0.4589 | |
| ETH | <0.01% | $0.0006 | 742.5161 | $0.4452 | |
| ETH | <0.01% | $0.005971 | 70.8118 | $0.4227 | |
| ETH | <0.01% | $0.001753 | 239.3318 | $0.4195 | |
| ETH | <0.01% | $0.025084 | 15.8483 | $0.3975 | |
| ETH | <0.01% | $0.004108 | 96.3321 | $0.3957 | |
| ETH | <0.01% | $0.006227 | 63.2087 | $0.3936 | |
| ETH | <0.01% | $0.002634 | 139.6363 | $0.3677 | |
| ETH | <0.01% | $0.000098 | 3,745.1911 | $0.3662 | |
| ETH | <0.01% | $0.020455 | 17.8853 | $0.3658 | |
| ETH | <0.01% | $0.00055 | 646.2805 | $0.3552 | |
| ETH | <0.01% | $0.059342 | 5.7486 | $0.3411 | |
| ETH | <0.01% | $1,924.17 | 0.00017656 | $0.3397 | |
| ETH | <0.01% | $0.022468 | 15.1043 | $0.3393 | |
| ETH | <0.01% | $0.01955 | 16.6641 | $0.3257 | |
| ETH | <0.01% | $0.06156 | 5.1576 | $0.3175 | |
| ETH | <0.01% | $0.003555 | 87.9015 | $0.3125 | |
| ETH | <0.01% | $0.037938 | 7.5394 | $0.286 | |
| ETH | <0.01% | $0.006465 | 42.6204 | $0.2755 | |
| ETH | <0.01% | $0.003981 | 68.6011 | $0.273 | |
| ETH | <0.01% | $0.198192 | 1.2298 | $0.2437 | |
| ETH | <0.01% | $0.005641 | 35.9175 | $0.2026 | |
| ETH | <0.01% | $0.00 | 0.01 | $0.00 | |
| ETH | <0.01% | $0.000033 | 3,260.2634 | $0.107 | |
| BSC | 2.32% | $0.999987 | 4,885.2733 | $4,885.21 | |
| BSC | 0.04% | $0.071221 | 1,193.4751 | $85 | |
| BSC | 0.01% | $1.57 | 15.3861 | $24.16 | |
| BSC | 0.01% | $0.028175 | 802.3422 | $22.61 | |
| BSC | <0.01% | $0.000627 | 5,849.494 | $3.67 | |
| BSC | <0.01% | $0.002357 | 1,552.211 | $3.66 | |
| BSC | <0.01% | $0.003721 | 906.5111 | $3.37 | |
| POL | 0.64% | $0.999994 | 1,358.6397 | $1,358.63 | |
| POL | 0.06% | $0.999926 | 133.878 | $133.87 | |
| POL | <0.01% | $1.41 | 8.9762 | $12.66 | |
| BASE | 0.29% | $0.999994 | 603.4578 | $603.45 | |
| BASE | <0.01% | $0.019895 | 160 | $3.18 | |
| AVAX | 0.02% | $0.999987 | 50.3588 | $50.36 |
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.