Polygon Sponsored slots available. Book your slot here!
Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 11,195 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 81963370 | 3 days ago | IN | 0 POL | 0.01679109 | ||||
| Approve | 81938924 | 3 days ago | IN | 0 POL | 0.02918646 | ||||
| Approve | 81838030 | 6 days ago | IN | 0 POL | 0.00719173 | ||||
| Approve | 81625574 | 11 days ago | IN | 0 POL | 0.02521847 | ||||
| Approve | 81592840 | 11 days ago | IN | 0 POL | 0.02990094 | ||||
| Approve | 81565798 | 12 days ago | IN | 0 POL | 0.00844816 | ||||
| Approve | 81559216 | 12 days ago | IN | 0 POL | 0.01930487 | ||||
| Approve | 81530174 | 13 days ago | IN | 0 POL | 0.02717682 | ||||
| Approve | 81477823 | 14 days ago | IN | 0 POL | 0.00568982 | ||||
| Approve | 81354289 | 17 days ago | IN | 0 POL | 0.08796029 | ||||
| Approve | 81019586 | 25 days ago | IN | 0 POL | 0.00672499 | ||||
| Approve | 80852155 | 28 days ago | IN | 0 POL | 0.00650795 | ||||
| Approve | 80705823 | 32 days ago | IN | 0 POL | 0.00143391 | ||||
| Approve | 80638951 | 33 days ago | IN | 0 POL | 0.00358076 | ||||
| Approve | 80443524 | 38 days ago | IN | 0 POL | 0.0013295 | ||||
| Approve | 80320310 | 41 days ago | IN | 0 POL | 0.00132948 | ||||
| Approve | 80193340 | 44 days ago | IN | 0 POL | 0.0088632 | ||||
| Approve | 80054163 | 47 days ago | IN | 0 POL | 0.003338 | ||||
| Approve | 79944631 | 50 days ago | IN | 0 POL | 0.00141143 | ||||
| Approve | 79829265 | 52 days ago | IN | 0 POL | 0.00291302 | ||||
| Approve | 79824384 | 52 days ago | IN | 0 POL | 0.00381555 | ||||
| Approve | 79824218 | 52 days ago | IN | 0 POL | 0.0042746 | ||||
| Approve | 79785274 | 53 days ago | IN | 0 POL | 0.00190239 | ||||
| Approve | 79756123 | 54 days ago | IN | 0 POL | 0.00263227 | ||||
| Approve | 79753425 | 54 days ago | IN | 0 POL | 0.00277244 |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ERC2612Verifier
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
pragma solidity >=0.8.0 <0.9.0;
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "./IERC2612Verifier.sol";
import "../../adapters/IAdapterManager.sol";
contract ERC2612Verifier is IERC2612Verifier {
using ECDSA for bytes32;
string public constant name = "CIAN.ERC2612Verifier";
bytes32 immutable DOMAIN_SEPARATOR;
// keccak256("Permit(address account,address operator,bytes32 approvalType,uint256 nonce,uint256 deadline)");
bytes32 public constant PERMIT_TYPEHASH =
0xd29eae1810f9a3f065590ccfa473d6fdb29545b7a5e09c439cc6b0552ad6ed86;
mapping(address => uint256) public nonces;
mapping(address => mapping(address => bytes32)) public approvals_types;
mapping(address => mapping(address => uint256)) public approvals_deadline;
address public adapterManager;
constructor(address _adapterManager) {
adapterManager = _adapterManager;
uint256 chainId;
assembly {
chainId := chainid()
}
DOMAIN_SEPARATOR = keccak256(
abi.encode(
keccak256(
"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
),
keccak256(bytes(name)),
keccak256(bytes("1")),
chainId,
address(this)
)
);
}
function approvals(address account, address operator)
external
view
returns (uint256, bytes32)
{
return (
approvals_deadline[account][operator],
approvals_types[account][operator]
);
}
function revoke(address account, address operator) external {
require(
OwnableUpgradeable(account).owner() == msg.sender,
"not the owner of the address"
);
approvals_deadline[account][operator] = 0;
emit OperatorUpdate(account, operator, bytes32(0));
}
function approve(
address account,
address operator,
bytes32 approvalType,
uint256 deadline
) external override {
require(
OwnableUpgradeable(account).owner() == msg.sender,
"not the owner of the address"
);
approvals_deadline[account][operator] = deadline;
approvals_types[account][operator] = approvalType;
emit OperatorUpdate(account, operator, approvalType);
}
function permit(
address account,
address operator,
bytes32 approvalType,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external override {
require(deadline >= block.timestamp, "Permit: EXPIRED");
bytes32 digest = keccak256(
abi.encodePacked(
"\x19\x01",
DOMAIN_SEPARATOR,
keccak256(
abi.encode(
PERMIT_TYPEHASH,
account,
operator,
approvalType,
nonces[account]++,
deadline
)
)
)
);
address recoveredAddress = digest.recover(v, r, s);
require(
OwnableUpgradeable(account).owner() == recoveredAddress &&
recoveredAddress != address(0x0),
"not the owner of the address"
);
approvals_deadline[account][operator] = deadline;
approvals_types[account][operator] = approvalType;
emit OperatorUpdate(account, operator, approvalType);
}
function isTxPermitted(
address account,
address operator,
address adapter
) external view override returns (bool) {
IAdapterManager manager = IAdapterManager(adapterManager);
uint256 index = manager.adaptersIndex(adapter);
require(index >= manager.maxReservedBits(), "adapter invalid!");
uint256 types = uint256(approvals_types[account][operator]);
require((types >> index) & 1 == 1, "Adapter: not allowed!");
if (approvals_deadline[account][operator] >= block.timestamp) {
return true;
}
return false;
}
function isTxPermitted(
address account,
address operator,
uint256 operationIndex
) external view override returns (bool) {
require(
operationIndex < IAdapterManager(adapterManager).maxReservedBits(),
"operation invalid!"
);
uint256 types = uint256(approvals_types[account][operator]);
require((types >> operationIndex) & 1 == 1, "Basic: not allowed!");
if (approvals_deadline[account][operator] >= block.timestamp) {
return true;
}
return false;
}
}// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity >=0.8.0 <0.9.0;
interface IAdapterManager {
function execute(bytes calldata callArgs)
external
payable
returns (bytes memory);
function maxReservedBits() external view returns (uint256);
function adaptersIndex(address adapter) external view returns (uint256);
function maxIndex() external view returns (uint256);
function adapterIsAvailable(address) external view returns (bool);
}// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity >=0.8.0 <0.9.0;
interface IERC2612Verifier {
event OperatorUpdate(
address account,
address operator,
bytes32 approvalType
);
function approve(
address account,
address operator,
bytes32 approvalType,
uint256 deadline
) external;
function permit(
address account,
address operator,
bytes32 approvalType,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
function isTxPermitted(
address account,
address operator,
address adapter
) external view returns (bool);
function isTxPermitted(
address account,
address operator,
uint256 operation
) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
function __Ownable_init() internal onlyInitializing {
__Ownable_init_unchained();
}
function __Ownable_init_unchained() internal onlyInitializing {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)
pragma solidity ^0.8.0;
import "../Strings.sol";
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library ECDSA {
enum RecoverError {
NoError,
InvalidSignature,
InvalidSignatureLength,
InvalidSignatureS,
InvalidSignatureV
}
function _throwError(RecoverError error) private pure {
if (error == RecoverError.NoError) {
return; // no error: do nothing
} else if (error == RecoverError.InvalidSignature) {
revert("ECDSA: invalid signature");
} else if (error == RecoverError.InvalidSignatureLength) {
revert("ECDSA: invalid signature length");
} else if (error == RecoverError.InvalidSignatureS) {
revert("ECDSA: invalid signature 's' value");
} else if (error == RecoverError.InvalidSignatureV) {
revert("ECDSA: invalid signature 'v' value");
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature` or error string. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*
* Documentation for signature generation:
* - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
* - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
// Check the signature length
// - case 65: r,s,v signature (standard)
// - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
if (signature.length == 65) {
bytes32 r;
bytes32 s;
uint8 v;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
return tryRecover(hash, v, r, s);
} else if (signature.length == 64) {
bytes32 r;
bytes32 vs;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
assembly {
r := mload(add(signature, 0x20))
vs := mload(add(signature, 0x40))
}
return tryRecover(hash, r, vs);
} else {
return (address(0), RecoverError.InvalidSignatureLength);
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, signature);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
*
* See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
*
* _Available since v4.3._
*/
function tryRecover(
bytes32 hash,
bytes32 r,
bytes32 vs
) internal pure returns (address, RecoverError) {
bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
uint8 v = uint8((uint256(vs) >> 255) + 27);
return tryRecover(hash, v, r, s);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
*
* _Available since v4.2._
*/
function recover(
bytes32 hash,
bytes32 r,
bytes32 vs
) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, r, vs);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `v`,
* `r` and `s` signature fields separately.
*
* _Available since v4.3._
*/
function tryRecover(
bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internal pure returns (address, RecoverError) {
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
return (address(0), RecoverError.InvalidSignatureS);
}
if (v != 27 && v != 28) {
return (address(0), RecoverError.InvalidSignatureV);
}
// If the signature is valid (and not malleable), return the signer address
address signer = ecrecover(hash, v, r, s);
if (signer == address(0)) {
return (address(0), RecoverError.InvalidSignature);
}
return (signer, RecoverError.NoError);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function recover(
bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, v, r, s);
_throwError(error);
return recovered;
}
/**
* @dev Returns an Ethereum Signed Message, created from a `hash`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
// 32 is the length in bytes of hash,
// enforced by the type signature above
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
}
/**
* @dev Returns an Ethereum Signed Message, created from `s`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
}
/**
* @dev Returns an Ethereum Signed Typed Data, created from a
* `domainSeparator` and a `structHash`. This produces hash corresponding
* to the one signed with the
* https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
* JSON-RPC method as part of EIP-712.
*
* See {recover}.
*/
function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract ContextUpgradeable is Initializable {
function __Context_init() internal onlyInitializing {
}
function __Context_init_unchained() internal onlyInitializing {
}
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.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 (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 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}{
"optimizer": {
"enabled": true,
"runs": 10000
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_adapterManager","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bytes32","name":"approvalType","type":"bytes32"}],"name":"OperatorUpdate","type":"event"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adapterManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"approvals","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"approvals_deadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"approvals_types","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"},{"internalType":"bytes32","name":"approvalType","type":"bytes32"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"adapter","type":"address"}],"name":"isTxPermitted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"operationIndex","type":"uint256"}],"name":"isTxPermitted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"},{"internalType":"bytes32","name":"approvalType","type":"bytes32"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"revoke","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60a060405234801561001057600080fd5b5060405161150238038061150283398101604081905261002f9161013f565b600380546001600160a01b0319166001600160a01b038316179055604080518082018252601481527f4349414e2e4552433236313256657269666965720000000000000000000000006020918201528151808301835260018152603160f81b9082015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f918101919091527fe382af04c42cc47f20d76c43cca13913af126d7d1eb4544dce2624ac725b6a58918101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606082015246608082018190523060a08301529060c00160408051601f1981840301815291905280516020909101206080525061016f9050565b60006020828403121561015157600080fd5b81516001600160a01b038116811461016857600080fd5b9392505050565b60805161137861018a600039600061037d01526113786000f3fe608060405234801561001057600080fd5b50600436106100d45760003560e01c80637ecebe0011610081578063a58666d31161005b578063a58666d3146102b6578063dcf3fb2a146102d9578063f32cb1e7146102ec57600080fd5b80637ecebe00146101f85780638ff4b02914610218578063a32ce11e1461024357600080fd5b80633dba5ba8116100b25780633dba5ba8146101a557806346a9dd3b146101ba5780635eddd9c9146101e557600080fd5b806306fdde03146100d957806330adf81f1461012b5780633241836614610160575b600080fd5b6101156040518060400160405280601481526020017f4349414e2e45524332363132566572696669657200000000000000000000000081525081565b6040516101229190611051565b60405180910390f35b6101527fd29eae1810f9a3f065590ccfa473d6fdb29545b7a5e09c439cc6b0552ad6ed8681565b604051908152602001610122565b6003546101809073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610122565b6101b86101b33660046110df565b6102ff565b005b6101526101c8366004611156565b600160209081526000928352604080842090915290825290205481565b6101b86101f336600461118f565b610659565b6101526102063660046111d5565b60006020819052908152604090205481565b610152610226366004611156565b600260209081526000928352604080842090915290825290205481565b6102a1610251366004611156565b73ffffffffffffffffffffffffffffffffffffffff918216600081815260026020908152604080832094909516808352938152848220549282526001815284822093825292909252919020549091565b60408051928352602083019190915201610122565b6102c96102c43660046111f2565b6107d4565b6040519015158152602001610122565b6101b86102e7366004611156565b610a09565b6102c96102fa36600461123d565b610b6a565b428410156103545760405162461bcd60e51b815260206004820152600f60248201527f5065726d69743a2045585049524544000000000000000000000000000000000060448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8716600090815260208190526040812080547f0000000000000000000000000000000000000000000000000000000000000000917fd29eae1810f9a3f065590ccfa473d6fdb29545b7a5e09c439cc6b0552ad6ed86918b918b918b91876103cf8361127e565b9091555060408051602081019690965273ffffffffffffffffffffffffffffffffffffffff94851690860152929091166060840152608083015260a082015260c0810187905260e001604051602081830303815290604052805190602001206040516020016104709291907f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190528051602090910120905060006104b682868686610d22565b90508073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff16638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561051a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061053e91906112dd565b73ffffffffffffffffffffffffffffffffffffffff16148015610576575073ffffffffffffffffffffffffffffffffffffffff811615155b6105c25760405162461bcd60e51b815260206004820152601c60248201527f6e6f7420746865206f776e6572206f6620746865206164647265737300000000604482015260640161034b565b73ffffffffffffffffffffffffffffffffffffffff8981166000818152600260209081526040808320948d168084529482528083208b9055838352600182528083208584528252918290208b905581519283528201929092529081018890527fa0bdcada1262922c1e2a70a3dd8a88a216341ba4ca66643b1ce72b8879ea75169060600160405180910390a1505050505050505050565b3373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106df91906112dd565b73ffffffffffffffffffffffffffffffffffffffff16146107425760405162461bcd60e51b815260206004820152601c60248201527f6e6f7420746865206f776e6572206f6620746865206164647265737300000000604482015260640161034b565b73ffffffffffffffffffffffffffffffffffffffff84811660008181526002602090815260408083209488168084529482528083208690558383526001825280832085845282529182902086905581519283528201929092529081018390527fa0bdcada1262922c1e2a70a3dd8a88a216341ba4ca66643b1ce72b8879ea75169060600160405180910390a150505050565b6003546040517fc3942beb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff838116600483015260009216908290829063c3942beb90602401602060405180830381865afa158015610849573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061086d91906112fa565b90508173ffffffffffffffffffffffffffffffffffffffff1663f68061176040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108de91906112fa565b81101561092d5760405162461bcd60e51b815260206004820152601060248201527f6164617074657220696e76616c69642100000000000000000000000000000000604482015260640161034b565b73ffffffffffffffffffffffffffffffffffffffff8087166000908152600160208181526040808420948a168452939052919020549081831c8116146109b55760405162461bcd60e51b815260206004820152601560248201527f416461707465723a206e6f7420616c6c6f776564210000000000000000000000604482015260640161034b565b73ffffffffffffffffffffffffffffffffffffffff8088166000908152600260209081526040808320938a168352929052205442116109fa5760019350505050610a02565b600093505050505b9392505050565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8f91906112dd565b73ffffffffffffffffffffffffffffffffffffffff1614610af25760405162461bcd60e51b815260206004820152601c60248201527f6e6f7420746865206f776e6572206f6620746865206164647265737300000000604482015260640161034b565b73ffffffffffffffffffffffffffffffffffffffff82811660008181526002602090815260408083209486168084529482528083208390558051938452908301939093528183015290517fa0bdcada1262922c1e2a70a3dd8a88a216341ba4ca66643b1ce72b8879ea75169181900360600190a15050565b600354604080517ff6806117000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff169163f68061179160048083019260209291908290030181865afa158015610bda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bfe91906112fa565b8210610c4c5760405162461bcd60e51b815260206004820152601260248201527f6f7065726174696f6e20696e76616c6964210000000000000000000000000000604482015260640161034b565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526001602081815260408084209488168452939052919020549081841c811614610cd45760405162461bcd60e51b815260206004820152601360248201527f42617369633a206e6f7420616c6c6f7765642100000000000000000000000000604482015260640161034b565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152600260209081526040808320938816835292905220544211610d17576001915050610a02565b506000949350505050565b6000806000610d3387878787610d4a565b91509150610d4081610e62565b5095945050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115610d815750600090506003610e59565b8460ff16601b14158015610d9957508460ff16601c14155b15610daa5750600090506004610e59565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015610dfe573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116610e5257600060019250925050610e59565b9150600090505b94509492505050565b6000816004811115610e7657610e76611313565b03610e7e5750565b6001816004811115610e9257610e92611313565b03610edf5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161034b565b6002816004811115610ef357610ef3611313565b03610f405760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161034b565b6003816004811115610f5457610f54611313565b03610fc75760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161034b565b6004816004811115610fdb57610fdb611313565b0361104e5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161034b565b50565b600060208083528351808285015260005b8181101561107e57858101830151858201604001528201611062565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff8116811461104e57600080fd5b600080600080600080600060e0888a0312156110fa57600080fd5b8735611105816110bd565b96506020880135611115816110bd565b95506040880135945060608801359350608088013560ff8116811461113957600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561116957600080fd5b8235611174816110bd565b91506020830135611184816110bd565b809150509250929050565b600080600080608085870312156111a557600080fd5b84356111b0816110bd565b935060208501356111c0816110bd565b93969395505050506040820135916060013590565b6000602082840312156111e757600080fd5b8135610a02816110bd565b60008060006060848603121561120757600080fd5b8335611212816110bd565b92506020840135611222816110bd565b91506040840135611232816110bd565b809150509250925092565b60008060006060848603121561125257600080fd5b833561125d816110bd565b9250602084013561126d816110bd565b929592945050506040919091013590565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036112d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b5060010190565b6000602082840312156112ef57600080fd5b8151610a02816110bd565b60006020828403121561130c57600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea26469706673582212201f583e96bf09974efb4fcd8e96b5aa5bc9cbba80f8c814719c5805d725c09ffa64736f6c63430008110033000000000000000000000000907883da917ca9750ad202ff6395c4c6ab14e60e
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100d45760003560e01c80637ecebe0011610081578063a58666d31161005b578063a58666d3146102b6578063dcf3fb2a146102d9578063f32cb1e7146102ec57600080fd5b80637ecebe00146101f85780638ff4b02914610218578063a32ce11e1461024357600080fd5b80633dba5ba8116100b25780633dba5ba8146101a557806346a9dd3b146101ba5780635eddd9c9146101e557600080fd5b806306fdde03146100d957806330adf81f1461012b5780633241836614610160575b600080fd5b6101156040518060400160405280601481526020017f4349414e2e45524332363132566572696669657200000000000000000000000081525081565b6040516101229190611051565b60405180910390f35b6101527fd29eae1810f9a3f065590ccfa473d6fdb29545b7a5e09c439cc6b0552ad6ed8681565b604051908152602001610122565b6003546101809073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610122565b6101b86101b33660046110df565b6102ff565b005b6101526101c8366004611156565b600160209081526000928352604080842090915290825290205481565b6101b86101f336600461118f565b610659565b6101526102063660046111d5565b60006020819052908152604090205481565b610152610226366004611156565b600260209081526000928352604080842090915290825290205481565b6102a1610251366004611156565b73ffffffffffffffffffffffffffffffffffffffff918216600081815260026020908152604080832094909516808352938152848220549282526001815284822093825292909252919020549091565b60408051928352602083019190915201610122565b6102c96102c43660046111f2565b6107d4565b6040519015158152602001610122565b6101b86102e7366004611156565b610a09565b6102c96102fa36600461123d565b610b6a565b428410156103545760405162461bcd60e51b815260206004820152600f60248201527f5065726d69743a2045585049524544000000000000000000000000000000000060448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8716600090815260208190526040812080547fe2b77519710fb6328e273de9916ef6316da5d00366e4974b3d47ba59649565e2917fd29eae1810f9a3f065590ccfa473d6fdb29545b7a5e09c439cc6b0552ad6ed86918b918b918b91876103cf8361127e565b9091555060408051602081019690965273ffffffffffffffffffffffffffffffffffffffff94851690860152929091166060840152608083015260a082015260c0810187905260e001604051602081830303815290604052805190602001206040516020016104709291907f190100000000000000000000000000000000000000000000000000000000000081526002810192909252602282015260420190565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190528051602090910120905060006104b682868686610d22565b90508073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff16638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561051a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061053e91906112dd565b73ffffffffffffffffffffffffffffffffffffffff16148015610576575073ffffffffffffffffffffffffffffffffffffffff811615155b6105c25760405162461bcd60e51b815260206004820152601c60248201527f6e6f7420746865206f776e6572206f6620746865206164647265737300000000604482015260640161034b565b73ffffffffffffffffffffffffffffffffffffffff8981166000818152600260209081526040808320948d168084529482528083208b9055838352600182528083208584528252918290208b905581519283528201929092529081018890527fa0bdcada1262922c1e2a70a3dd8a88a216341ba4ca66643b1ce72b8879ea75169060600160405180910390a1505050505050505050565b3373ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106df91906112dd565b73ffffffffffffffffffffffffffffffffffffffff16146107425760405162461bcd60e51b815260206004820152601c60248201527f6e6f7420746865206f776e6572206f6620746865206164647265737300000000604482015260640161034b565b73ffffffffffffffffffffffffffffffffffffffff84811660008181526002602090815260408083209488168084529482528083208690558383526001825280832085845282529182902086905581519283528201929092529081018390527fa0bdcada1262922c1e2a70a3dd8a88a216341ba4ca66643b1ce72b8879ea75169060600160405180910390a150505050565b6003546040517fc3942beb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff838116600483015260009216908290829063c3942beb90602401602060405180830381865afa158015610849573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061086d91906112fa565b90508173ffffffffffffffffffffffffffffffffffffffff1663f68061176040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108de91906112fa565b81101561092d5760405162461bcd60e51b815260206004820152601060248201527f6164617074657220696e76616c69642100000000000000000000000000000000604482015260640161034b565b73ffffffffffffffffffffffffffffffffffffffff8087166000908152600160208181526040808420948a168452939052919020549081831c8116146109b55760405162461bcd60e51b815260206004820152601560248201527f416461707465723a206e6f7420616c6c6f776564210000000000000000000000604482015260640161034b565b73ffffffffffffffffffffffffffffffffffffffff8088166000908152600260209081526040808320938a168352929052205442116109fa5760019350505050610a02565b600093505050505b9392505050565b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a6b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8f91906112dd565b73ffffffffffffffffffffffffffffffffffffffff1614610af25760405162461bcd60e51b815260206004820152601c60248201527f6e6f7420746865206f776e6572206f6620746865206164647265737300000000604482015260640161034b565b73ffffffffffffffffffffffffffffffffffffffff82811660008181526002602090815260408083209486168084529482528083208390558051938452908301939093528183015290517fa0bdcada1262922c1e2a70a3dd8a88a216341ba4ca66643b1ce72b8879ea75169181900360600190a15050565b600354604080517ff6806117000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff169163f68061179160048083019260209291908290030181865afa158015610bda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bfe91906112fa565b8210610c4c5760405162461bcd60e51b815260206004820152601260248201527f6f7065726174696f6e20696e76616c6964210000000000000000000000000000604482015260640161034b565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526001602081815260408084209488168452939052919020549081841c811614610cd45760405162461bcd60e51b815260206004820152601360248201527f42617369633a206e6f7420616c6c6f7765642100000000000000000000000000604482015260640161034b565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152600260209081526040808320938816835292905220544211610d17576001915050610a02565b506000949350505050565b6000806000610d3387878787610d4a565b91509150610d4081610e62565b5095945050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115610d815750600090506003610e59565b8460ff16601b14158015610d9957508460ff16601c14155b15610daa5750600090506004610e59565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015610dfe573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116610e5257600060019250925050610e59565b9150600090505b94509492505050565b6000816004811115610e7657610e76611313565b03610e7e5750565b6001816004811115610e9257610e92611313565b03610edf5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161034b565b6002816004811115610ef357610ef3611313565b03610f405760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161034b565b6003816004811115610f5457610f54611313565b03610fc75760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161034b565b6004816004811115610fdb57610fdb611313565b0361104e5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f7565000000000000000000000000000000000000000000000000000000000000606482015260840161034b565b50565b600060208083528351808285015260005b8181101561107e57858101830151858201604001528201611062565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff8116811461104e57600080fd5b600080600080600080600060e0888a0312156110fa57600080fd5b8735611105816110bd565b96506020880135611115816110bd565b95506040880135945060608801359350608088013560ff8116811461113957600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561116957600080fd5b8235611174816110bd565b91506020830135611184816110bd565b809150509250929050565b600080600080608085870312156111a557600080fd5b84356111b0816110bd565b935060208501356111c0816110bd565b93969395505050506040820135916060013590565b6000602082840312156111e757600080fd5b8135610a02816110bd565b60008060006060848603121561120757600080fd5b8335611212816110bd565b92506020840135611222816110bd565b91506040840135611232816110bd565b809150509250925092565b60008060006060848603121561125257600080fd5b833561125d816110bd565b9250602084013561126d816110bd565b929592945050506040919091013590565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036112d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b5060010190565b6000602082840312156112ef57600080fd5b8151610a02816110bd565b60006020828403121561130c57600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea26469706673582212201f583e96bf09974efb4fcd8e96b5aa5bc9cbba80f8c814719c5805d725c09ffa64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000907883da917ca9750ad202ff6395c4c6ab14e60e
-----Decoded View---------------
Arg [0] : _adapterManager (address): 0x907883da917ca9750ad202ff6395C4C6aB14e60E
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000907883da917ca9750ad202ff6395c4c6ab14e60e
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in POL
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.