More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 782,922 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim Linea Trav... | 18297373 | 7 hrs ago | IN | 0 ETH | 0.00003258 | ||||
Claim Linea Trav... | 18214035 | 2 days ago | IN | 0 ETH | 0.00000822 | ||||
Claim Linea Trav... | 18176741 | 4 days ago | IN | 0 ETH | 0.00000947 | ||||
Claim Linea Trav... | 18175106 | 4 days ago | IN | 0 ETH | 0.00001178 | ||||
Claim Linea Trav... | 18115882 | 6 days ago | IN | 0 ETH | 0.00003871 | ||||
Claim Linea Trav... | 17829446 | 15 days ago | IN | 0 ETH | 0.0000128 | ||||
Claim Linea Trav... | 17796424 | 16 days ago | IN | 0 ETH | 0.00002187 | ||||
Claim Linea Trav... | 17699630 | 19 days ago | IN | 0 ETH | 0.00001007 | ||||
Claim Linea Trav... | 17690950 | 19 days ago | IN | 0 ETH | 0.00001082 | ||||
Claim Linea Trav... | 17690159 | 19 days ago | IN | 0 ETH | 0.00000986 | ||||
Claim Linea Trav... | 17656251 | 20 days ago | IN | 0 ETH | 0.00000947 | ||||
Claim Linea Trav... | 17596117 | 22 days ago | IN | 0 ETH | 0.00001574 | ||||
Claim Linea Trav... | 17589840 | 22 days ago | IN | 0 ETH | 0.00001233 | ||||
Claim Linea Trav... | 17552377 | 23 days ago | IN | 0 ETH | 0.00001234 | ||||
Claim Linea Trav... | 17487201 | 25 days ago | IN | 0 ETH | 0.00001283 | ||||
Claim Linea Trav... | 17404438 | 27 days ago | IN | 0 ETH | 0.00001125 | ||||
Claim Linea Trav... | 17331601 | 29 days ago | IN | 0 ETH | 0.00000992 | ||||
Claim Linea Trav... | 17223289 | 32 days ago | IN | 0 ETH | 0.00001066 | ||||
Claim Linea Trav... | 17193514 | 33 days ago | IN | 0 ETH | 0.00001228 | ||||
Claim Linea Trav... | 17184776 | 33 days ago | IN | 0 ETH | 0.00000976 | ||||
Claim Linea Trav... | 16452818 | 52 days ago | IN | 0 ETH | 0.00000841 | ||||
Claim Linea Trav... | 15996240 | 63 days ago | IN | 0 ETH | 0.00000826 | ||||
Claim Linea Trav... | 15415513 | 78 days ago | IN | 0 ETH | 0.00001965 | ||||
Claim Linea Trav... | 15259382 | 82 days ago | IN | 0 ETH | 0.00005239 | ||||
Claim Linea Trav... | 15255746 | 82 days ago | IN | 0 ETH | 0.00010718 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
18297373 | 7 hrs ago | 0 ETH | ||||
18297373 | 7 hrs ago | 0 ETH | ||||
18214035 | 2 days ago | 0 ETH | ||||
18214035 | 2 days ago | 0 ETH | ||||
18176741 | 4 days ago | 0 ETH | ||||
18176741 | 4 days ago | 0 ETH | ||||
18175106 | 4 days ago | 0 ETH | ||||
18175106 | 4 days ago | 0 ETH | ||||
18115882 | 6 days ago | 0 ETH | ||||
18115882 | 6 days ago | 0 ETH | ||||
17829446 | 15 days ago | 0 ETH | ||||
17829446 | 15 days ago | 0 ETH | ||||
17796424 | 16 days ago | 0 ETH | ||||
17796424 | 16 days ago | 0 ETH | ||||
17699630 | 19 days ago | 0 ETH | ||||
17699630 | 19 days ago | 0 ETH | ||||
17690950 | 19 days ago | 0 ETH | ||||
17690950 | 19 days ago | 0 ETH | ||||
17690159 | 19 days ago | 0 ETH | ||||
17690159 | 19 days ago | 0 ETH | ||||
17656251 | 20 days ago | 0 ETH | ||||
17656251 | 20 days ago | 0 ETH | ||||
17596117 | 22 days ago | 0 ETH | ||||
17596117 | 22 days ago | 0 ETH | ||||
17589840 | 22 days ago | 0 ETH |
Loading...
Loading
Contract Name:
LineaTravelbag
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at lineascan.build/ on 2024-02-21 */ pragma solidity ^0.8.0; /** * @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 Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } pragma solidity ^0.8.0; /** * @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 Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _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); } } pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } pragma solidity ^0.8.0; /** * @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 ReentrancyGuard { // 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; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } pragma solidity ^0.8.0; /** * @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 // Deprecated in v4.8 } 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"); } } /** * @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) { 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. /// @solidity memory-safe-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 { 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 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)); } } pragma solidity ^0.8.0; interface IERC1155GameItems { function gameMintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) external; function gameBurnBatch( address to, uint256[] memory ids, uint256[] memory amounts ) external; function gameBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) external; function gameSetApproval( address owner, address operator, bool approved ) external; function isNftLocked(uint256 _id) external view returns (bool); function isNftLockedBatch(uint256[] memory _ids) external view returns (bool, bool[] memory); function lockedTransferId() external view returns (uint256[] memory); } pragma solidity ^0.8.0; contract LineaTravelbag is Ownable, Pausable, ReentrancyGuard { using Strings for uint256; using ECDSA for bytes32; enum ItemsType { Backpack, AvatarCustomization, Inventory, Building } address private signer; uint8 public mintPerMax; mapping(bytes32 => bool) public executed; mapping(address => uint8) public mintedAmountList; mapping(ItemsType => address) public itemsContract; constructor( address _signer, address _avatarCustomization ) { signer = _signer; setMintPerMax(1); itemsContract[ItemsType.AvatarCustomization] = _avatarCustomization; } modifier _notContract() { uint256 size; address addr = _msgSender(); assembly { size := extcodesize(addr) } require(size == 0, "Contract is not allowed"); require(_msgSender() == tx.origin, "Proxy contract is not allowed"); _; } function claimLineaTravelbag( bytes memory signature, address _addr, uint deadline ) public whenNotPaused _notContract nonReentrant { require(deadline >= block.timestamp, "Deadline Passed"); require(getMintedAmount(_addr) < mintPerMax, "Minted reached the limit"); bytes32 txHash = keccak256(abi.encode(_addr, deadline, _msgSender())); require(!executed[txHash], "Tx Executed"); require(verify(txHash, signature), "Unauthorised"); executed[txHash] = true; uint256[] memory mintId = new uint256[](1); mintId[0] = 73001; uint256[] memory mintAmount = new uint256[](1); mintAmount[0] = 1; mintedAmountList[_addr] += 1; IERC1155GameItems(itemsContract[ItemsType.AvatarCustomization]).gameMintBatch(_addr, mintId, mintAmount, ""); } function verify(bytes32 hash, bytes memory signature) private view returns (bool) { bytes32 ethSignedHash = hash.toEthSignedMessageHash(); return ethSignedHash.recover(signature) == signer; } function getMintedAmount(address _addr) public view returns (uint8) { return mintedAmountList[_addr]; } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function transferSigner(address _signer) public onlyOwner { signer = _signer; } function setMintPerMax(uint8 _mintPerMax) public onlyOwner { mintPerMax = _mintPerMax; } function setItemsContract(ItemsType _type, address _addr) public onlyOwner { itemsContract[_type] = _addr; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_signer","type":"address"},{"internalType":"address","name":"_avatarCustomization","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"claimLineaTravelbag","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"executed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getMintedAmount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum LineaTravelbag.ItemsType","name":"","type":"uint8"}],"name":"itemsContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPerMax","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmountList","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum LineaTravelbag.ItemsType","name":"_type","type":"uint8"},{"internalType":"address","name":"_addr","type":"address"}],"name":"setItemsContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintPerMax","type":"uint8"}],"name":"setMintPerMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"transferSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620011e3380380620011e38339810160408190526200003491620001bf565b6200003f33620000c7565b6000805460ff60a01b191690556001808055600280546001600160a01b0319166001600160a01b038516179055620000779062000117565b600160005260056020527f1471eb6eb2c5e789fc3de43f8ce62938c7d1836ec861730447e2ada8fd81017b80546001600160a01b0319166001600160a01b039290921691909117905550620001f7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6200012162000141565b6002805460ff909216600160a01b0260ff60a01b19909216919091179055565b6000546001600160a01b03163314620001a05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b80516001600160a01b0381168114620001ba57600080fd5b919050565b60008060408385031215620001d357600080fd5b620001de83620001a2565b9150620001ee60208401620001a2565b90509250929050565b610fdc80620002076000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9fcfb3311610066578063a9fcfb3314610220578063dc654f9c14610243578063eddd568814610256578063f2fde38b1461026957600080fd5b8063715018a6146101c25780638456cb59146101ca5780638da5cb5b146101d25780639ee059dd146101f757600080fd5b806348e33382116100d357806348e333821461015157806349f2ca91146101645780635c975abb1461017857806363b266ba1461019657600080fd5b80633660a084146100fa5780633ae821e11461010f5780633f4ba83a14610149575b600080fd5b61010d610108366004610d1e565b61027c565b005b61013261011d366004610d1e565b60046020526000908152604090205460ff1681565b60405160ff90911681526020015b60405180910390f35b61010d6102a6565b61010d61015f366004610d56565b6102b8565b60025461013290600160a01b900460ff1681565b600054600160a01b900460ff165b6040519015158152602001610140565b6101326101a4366004610d1e565b6001600160a01b031660009081526004602052604090205460ff1690565b61010d61069f565b61010d6106b1565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610140565b6101df610205366004610e30565b6005602052600090815260409020546001600160a01b031681565b61018661022e366004610e4b565b60036020526000908152604090205460ff1681565b61010d610251366004610e64565b6106c1565b61010d610264366004610e87565b6106e9565b61010d610277366004610d1e565b61074f565b6102846107c8565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6102ae6107c8565b6102b6610822565b565b6102c0610877565b33803b9081156103175760405162461bcd60e51b815260206004820152601760248201527f436f6e7472616374206973206e6f7420616c6c6f77656400000000000000000060448201526064015b60405180910390fd5b3332146103665760405162461bcd60e51b815260206004820152601d60248201527f50726f787920636f6e7472616374206973206e6f7420616c6c6f776564000000604482015260640161030e565b61036e6108c4565b428310156103b05760405162461bcd60e51b815260206004820152600f60248201526e111958591b1a5b994814185cdcd959608a1b604482015260640161030e565b60025460ff600160a01b909104166103e0856001600160a01b031660009081526004602052604090205460ff1690565b60ff16106104305760405162461bcd60e51b815260206004820152601860248201527f4d696e746564207265616368656420746865206c696d69740000000000000000604482015260640161030e565b6000848433604080516001600160a01b03948516602082015290810192909252909116606082015260800160408051601f1981840301815291815281516020928301206000818152600390935291205490915060ff16156104c15760405162461bcd60e51b815260206004820152600b60248201526a151e08115e1958dd5d195960aa1b604482015260640161030e565b6104cb818761091e565b6105065760405162461bcd60e51b815260206004820152600c60248201526b155b985d5d1a1bdc9a5cd95960a21b604482015260640161030e565b6000818152600360205260408082208054600160ff199091168117909155815181815280830190925281602001602082028036833701905050905062011d298160008151811061055857610558610eba565b602090810291909101015260408051600180825281830190925260009181602001602082028036833701905050905060018160008151811061059c5761059c610eba565b6020908102919091018101919091526001600160a01b03881660009081526004909152604081208054600192906105d790849060ff16610ed0565b92506101000a81548160ff021916908360ff160217905550600560006001600381111561060657610606610f03565b600381111561061757610617610f03565b815260208101919091526040908101600020549051638134bcef60e01b81526001600160a01b0390911690638134bcef9061065a908a9086908690600401610f54565b600060405180830381600087803b15801561067457600080fd5b505af1158015610688573d6000803e3d6000fd5b5050505050505061069860018055565b5050505050565b6106a76107c8565b6102b660006109a3565b6106b96107c8565b6102b66109f3565b6106c96107c8565b6002805460ff909216600160a01b0260ff60a01b19909216919091179055565b6106f16107c8565b806005600084600381111561070857610708610f03565b600381111561071957610719610f03565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055505050565b6107576107c8565b6001600160a01b0381166107bc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161030e565b6107c5816109a3565b50565b6000546001600160a01b031633146102b65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161030e565b61082a610a36565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600054600160a01b900460ff16156102b65760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161030e565b600260015414156109175760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161030e565b6002600155565b600080610978846040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b6002549091506001600160a01b03166109918285610a86565b6001600160a01b031614949350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109fb610877565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861085a3390565b600054600160a01b900460ff166102b65760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161030e565b6000806000610a958585610aaa565b91509150610aa281610af0565b509392505050565b600080825160411415610ae15760208301516040840151606085015160001a610ad587828585610c3e565b94509450505050610ae9565b506000905060025b9250929050565b6000816004811115610b0457610b04610f03565b1415610b0d5750565b6001816004811115610b2157610b21610f03565b1415610b6f5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161030e565b6002816004811115610b8357610b83610f03565b1415610bd15760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161030e565b6003816004811115610be557610be5610f03565b14156107c55760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161030e565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115610c755750600090506003610cf9565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015610cc9573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610cf257600060019250925050610cf9565b9150600090505b94509492505050565b80356001600160a01b0381168114610d1957600080fd5b919050565b600060208284031215610d3057600080fd5b610d3982610d02565b9392505050565b634e487b7160e01b600052604160045260246000fd5b600080600060608486031215610d6b57600080fd5b833567ffffffffffffffff80821115610d8357600080fd5b818601915086601f830112610d9757600080fd5b813581811115610da957610da9610d40565b604051601f8201601f19908116603f01168101908382118183101715610dd157610dd1610d40565b81604052828152896020848701011115610dea57600080fd5b826020860160208301376000602084830101528097505050505050610e1160208501610d02565b9150604084013590509250925092565b803560048110610d1957600080fd5b600060208284031215610e4257600080fd5b610d3982610e21565b600060208284031215610e5d57600080fd5b5035919050565b600060208284031215610e7657600080fd5b813560ff81168114610d3957600080fd5b60008060408385031215610e9a57600080fd5b610ea383610e21565b9150610eb160208401610d02565b90509250929050565b634e487b7160e01b600052603260045260246000fd5b600060ff821660ff84168060ff03821115610efb57634e487b7160e01b600052601160045260246000fd5b019392505050565b634e487b7160e01b600052602160045260246000fd5b600081518084526020808501945080840160005b83811015610f4957815187529582019590820190600101610f2d565b509495945050505050565b6001600160a01b0384168152608060208201819052600090610f7890830185610f19565b8281036040840152610f8a8185610f19565b838103606090940193909352505060008152602001939250505056fea264697066735822122030d8f4349a1d3577d1d62712617dff85b12088c04873057f15129c94cfb240fc64736f6c63430008090033000000000000000000000000428a8a0a62f4f5344ba7285bd8a24e36625267c300000000000000000000000099a9c72fab7e69a5c3ec36be903ead7f8ba23d9b
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9fcfb3311610066578063a9fcfb3314610220578063dc654f9c14610243578063eddd568814610256578063f2fde38b1461026957600080fd5b8063715018a6146101c25780638456cb59146101ca5780638da5cb5b146101d25780639ee059dd146101f757600080fd5b806348e33382116100d357806348e333821461015157806349f2ca91146101645780635c975abb1461017857806363b266ba1461019657600080fd5b80633660a084146100fa5780633ae821e11461010f5780633f4ba83a14610149575b600080fd5b61010d610108366004610d1e565b61027c565b005b61013261011d366004610d1e565b60046020526000908152604090205460ff1681565b60405160ff90911681526020015b60405180910390f35b61010d6102a6565b61010d61015f366004610d56565b6102b8565b60025461013290600160a01b900460ff1681565b600054600160a01b900460ff165b6040519015158152602001610140565b6101326101a4366004610d1e565b6001600160a01b031660009081526004602052604090205460ff1690565b61010d61069f565b61010d6106b1565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610140565b6101df610205366004610e30565b6005602052600090815260409020546001600160a01b031681565b61018661022e366004610e4b565b60036020526000908152604090205460ff1681565b61010d610251366004610e64565b6106c1565b61010d610264366004610e87565b6106e9565b61010d610277366004610d1e565b61074f565b6102846107c8565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6102ae6107c8565b6102b6610822565b565b6102c0610877565b33803b9081156103175760405162461bcd60e51b815260206004820152601760248201527f436f6e7472616374206973206e6f7420616c6c6f77656400000000000000000060448201526064015b60405180910390fd5b3332146103665760405162461bcd60e51b815260206004820152601d60248201527f50726f787920636f6e7472616374206973206e6f7420616c6c6f776564000000604482015260640161030e565b61036e6108c4565b428310156103b05760405162461bcd60e51b815260206004820152600f60248201526e111958591b1a5b994814185cdcd959608a1b604482015260640161030e565b60025460ff600160a01b909104166103e0856001600160a01b031660009081526004602052604090205460ff1690565b60ff16106104305760405162461bcd60e51b815260206004820152601860248201527f4d696e746564207265616368656420746865206c696d69740000000000000000604482015260640161030e565b6000848433604080516001600160a01b03948516602082015290810192909252909116606082015260800160408051601f1981840301815291815281516020928301206000818152600390935291205490915060ff16156104c15760405162461bcd60e51b815260206004820152600b60248201526a151e08115e1958dd5d195960aa1b604482015260640161030e565b6104cb818761091e565b6105065760405162461bcd60e51b815260206004820152600c60248201526b155b985d5d1a1bdc9a5cd95960a21b604482015260640161030e565b6000818152600360205260408082208054600160ff199091168117909155815181815280830190925281602001602082028036833701905050905062011d298160008151811061055857610558610eba565b602090810291909101015260408051600180825281830190925260009181602001602082028036833701905050905060018160008151811061059c5761059c610eba565b6020908102919091018101919091526001600160a01b03881660009081526004909152604081208054600192906105d790849060ff16610ed0565b92506101000a81548160ff021916908360ff160217905550600560006001600381111561060657610606610f03565b600381111561061757610617610f03565b815260208101919091526040908101600020549051638134bcef60e01b81526001600160a01b0390911690638134bcef9061065a908a9086908690600401610f54565b600060405180830381600087803b15801561067457600080fd5b505af1158015610688573d6000803e3d6000fd5b5050505050505061069860018055565b5050505050565b6106a76107c8565b6102b660006109a3565b6106b96107c8565b6102b66109f3565b6106c96107c8565b6002805460ff909216600160a01b0260ff60a01b19909216919091179055565b6106f16107c8565b806005600084600381111561070857610708610f03565b600381111561071957610719610f03565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055505050565b6107576107c8565b6001600160a01b0381166107bc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161030e565b6107c5816109a3565b50565b6000546001600160a01b031633146102b65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161030e565b61082a610a36565b6000805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600054600160a01b900460ff16156102b65760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161030e565b600260015414156109175760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161030e565b6002600155565b600080610978846040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b6002549091506001600160a01b03166109918285610a86565b6001600160a01b031614949350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109fb610877565b6000805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861085a3390565b600054600160a01b900460ff166102b65760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161030e565b6000806000610a958585610aaa565b91509150610aa281610af0565b509392505050565b600080825160411415610ae15760208301516040840151606085015160001a610ad587828585610c3e565b94509450505050610ae9565b506000905060025b9250929050565b6000816004811115610b0457610b04610f03565b1415610b0d5750565b6001816004811115610b2157610b21610f03565b1415610b6f5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161030e565b6002816004811115610b8357610b83610f03565b1415610bd15760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161030e565b6003816004811115610be557610be5610f03565b14156107c55760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161030e565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115610c755750600090506003610cf9565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015610cc9573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610cf257600060019250925050610cf9565b9150600090505b94509492505050565b80356001600160a01b0381168114610d1957600080fd5b919050565b600060208284031215610d3057600080fd5b610d3982610d02565b9392505050565b634e487b7160e01b600052604160045260246000fd5b600080600060608486031215610d6b57600080fd5b833567ffffffffffffffff80821115610d8357600080fd5b818601915086601f830112610d9757600080fd5b813581811115610da957610da9610d40565b604051601f8201601f19908116603f01168101908382118183101715610dd157610dd1610d40565b81604052828152896020848701011115610dea57600080fd5b826020860160208301376000602084830101528097505050505050610e1160208501610d02565b9150604084013590509250925092565b803560048110610d1957600080fd5b600060208284031215610e4257600080fd5b610d3982610e21565b600060208284031215610e5d57600080fd5b5035919050565b600060208284031215610e7657600080fd5b813560ff81168114610d3957600080fd5b60008060408385031215610e9a57600080fd5b610ea383610e21565b9150610eb160208401610d02565b90509250929050565b634e487b7160e01b600052603260045260246000fd5b600060ff821660ff84168060ff03821115610efb57634e487b7160e01b600052601160045260246000fd5b019392505050565b634e487b7160e01b600052602160045260246000fd5b600081518084526020808501945080840160005b83811015610f4957815187529582019590820190600101610f2d565b509495945050505050565b6001600160a01b0384168152608060208201819052600090610f7890830185610f19565b8281036040840152610f8a8185610f19565b838103606090940193909352505060008152602001939250505056fea264697066735822122030d8f4349a1d3577d1d62712617dff85b12088c04873057f15129c94cfb240fc64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000428a8a0a62f4f5344ba7285bd8a24e36625267c300000000000000000000000099a9c72fab7e69a5c3ec36be903ead7f8ba23d9b
-----Decoded View---------------
Arg [0] : _signer (address): 0x428A8a0A62F4F5344bA7285bd8a24e36625267C3
Arg [1] : _avatarCustomization (address): 0x99a9c72faB7E69A5c3Ec36Be903eAD7f8bA23d9b
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000428a8a0a62f4f5344ba7285bd8a24e36625267c3
Arg [1] : 00000000000000000000000099a9c72fab7e69a5c3ec36be903ead7f8ba23d9b
Deployed Bytecode Sourcemap
33164:2739:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35567:93;;;;;;:::i;:::-;;:::i;:::-;;33525:49;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;555:4:1;543:17;;;525:36;;513:2;498:18;33525:49:0;;;;;;;;35494:65;;;:::i;34189:881::-;;;;;;:::i;:::-;;:::i;33448:23::-;;;;;-1:-1:-1;;;33448:23:0;;;;;;4886:86;4933:4;4957:7;-1:-1:-1;;;4957:7:0;;;;4886:86;;;1947:14:1;;1940:22;1922:41;;1910:2;1895:18;4886:86:0;1782:187:1;35300:117:0;;;;;;:::i;:::-;-1:-1:-1;;;;;35386:23:0;35361:5;35386:23;;;:16;:23;;;;;;;;;35300:117;2533:103;;;:::i;35425:61::-;;;:::i;1885:87::-;1931:7;1958:6;-1:-1:-1;;;;;1958:6:0;1885:87;;;-1:-1:-1;;;;;2138:32:1;;;2120:51;;2108:2;2093:18;1885:87:0;1974:203:1;33581:50:0;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;33581:50:0;;;33478:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;35668:102;;;;;;:::i;:::-;;:::i;35778:122::-;;;;;;:::i;:::-;;:::i;2791:201::-;;;;;;:::i;:::-;;:::i;35567:93::-;1771:13;:11;:13::i;:::-;35636:6:::1;:16:::0;;-1:-1:-1;;;;;;35636:16:0::1;-1:-1:-1::0;;;;;35636:16:0;;;::::1;::::0;;;::::1;::::0;;35567:93::o;35494:65::-;1771:13;:11;:13::i;:::-;35541:10:::1;:8;:10::i;:::-;35494:65::o:0;34189:881::-;4491:19;:17;:19::i;:::-;647:10;34000:17;::::1;::::0;34046:9;;34038:45:::1;;;::::0;-1:-1:-1;;;34038:45:0;;3496:2:1;34038:45:0::1;::::0;::::1;3478:21:1::0;3535:2;3515:18;;;3508:30;3574:25;3554:18;;;3547:53;3617:18;;34038:45:0::1;;;;;;;;;647:10:::0;34118:9:::1;34102:25;34094:67;;;::::0;-1:-1:-1;;;34094:67:0;;3848:2:1;34094:67:0::1;::::0;::::1;3830:21:1::0;3887:2;3867:18;;;3860:30;3926:31;3906:18;;;3899:59;3975:18;;34094:67:0::1;3646:353:1::0;34094:67:0::1;8064:21:::2;:19;:21::i;:::-;34384:15:::3;34372:8;:27;;34364:55;;;::::0;-1:-1:-1;;;34364:55:0;;4206:2:1;34364:55:0::3;::::0;::::3;4188:21:1::0;4245:2;4225:18;;;4218:30;-1:-1:-1;;;4264:18:1;;;4257:45;4319:18;;34364:55:0::3;4004:339:1::0;34364:55:0::3;34463:10;::::0;::::3;-1:-1:-1::0;;;34463:10:0;;::::3;;34438:22;34454:5:::0;-1:-1:-1;;;;;35386:23:0;35361:5;35386:23;;;:16;:23;;;;;;;;;35300:117;34438:22:::3;:35;;;34430:72;;;::::0;-1:-1:-1;;;34430:72:0;;4550:2:1;34430:72:0::3;::::0;::::3;4532:21:1::0;4589:2;4569:18;;;4562:30;4628:26;4608:18;;;4601:54;4672:18;;34430:72:0::3;4348:348:1::0;34430:72:0::3;34515:14;34553:5:::0;34560:8;647:10;34542:41:::3;::::0;;-1:-1:-1;;;;;4959:15:1;;;34542:41:0::3;::::0;::::3;4941:34:1::0;4991:18;;;4984:34;;;;5054:15;;;5034:18;;;5027:43;4876:18;;34542:41:0::3;::::0;;-1:-1:-1;;34542:41:0;;::::3;::::0;;;;;;34532:52;;34542:41:::3;34532:52:::0;;::::3;::::0;34604:16:::3;::::0;;;:8:::3;:16:::0;;;;;;34532:52;;-1:-1:-1;34604:16:0::3;;34603:17;34595:41;;;::::0;-1:-1:-1;;;34595:41:0;;5283:2:1;34595:41:0::3;::::0;::::3;5265:21:1::0;5322:2;5302:18;;;5295:30;-1:-1:-1;;;5341:18:1;;;5334:41;5392:18;;34595:41:0::3;5081:335:1::0;34595:41:0::3;34655:25;34662:6;34670:9;34655:6;:25::i;:::-;34647:50;;;::::0;-1:-1:-1;;;34647:50:0;;5623:2:1;34647:50:0::3;::::0;::::3;5605:21:1::0;5662:2;5642:18;;;5635:30;-1:-1:-1;;;5681:18:1;;;5674:42;5733:18;;34647:50:0::3;5421:336:1::0;34647:50:0::3;34708:16;::::0;;;:8:::3;:16;::::0;;;;;:23;;34727:4:::3;-1:-1:-1::0;;34708:23:0;;::::3;::::0;::::3;::::0;;;34770:16;;;;;;;::::3;::::0;;;::::3;;;;;;;;;;;::::0;-1:-1:-1;34770:16:0::3;34744:42;;34809:5;34797:6;34804:1;34797:9;;;;;;;;:::i;:::-;;::::0;;::::3;::::0;;;;;:17;34857:16:::3;::::0;;34871:1:::3;34857:16:::0;;;;;::::3;::::0;;;34827:27:::3;::::0;34857:16:::3;;;;;;;;;;;::::0;-1:-1:-1;34857:16:0::3;34827:46;;34900:1;34884:10;34895:1;34884:13;;;;;;;;:::i;:::-;;::::0;;::::3;::::0;;;;;;:17;;;;-1:-1:-1;;;;;34914:23:0;::::3;;::::0;;;:16:::3;:23:::0;;;;;;:28;;34941:1:::3;::::0;34914:23;:28:::3;::::0;34941:1;;34914:28:::3;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34972:13;:44;34986:29;34972:44;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;::::0;;::::3;::::0;::::3;::::0;;;;;;;;-1:-1:-1;34972:44:0;;34954:108;;-1:-1:-1;;;34954:108:0;;-1:-1:-1;;;;;34972:44:0;;::::3;::::0;34954:77:::3;::::0;:108:::3;::::0;35032:5;;35039:6;;35047:10;;34954:108:::3;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;34353:717;;;8108:20:::2;7502:1:::0;8628:22;;8445:213;8108:20:::2;33896:285:::1;;34189:881:::0;;;:::o;2533:103::-;1771:13;:11;:13::i;:::-;2598:30:::1;2625:1;2598:18;:30::i;35425:61::-:0;1771:13;:11;:13::i;:::-;35470:8:::1;:6;:8::i;35668:102::-:0;1771:13;:11;:13::i;:::-;35738:10:::1;:24:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;35738:24:0::1;-1:-1:-1::0;;;;35738:24:0;;::::1;::::0;;;::::1;::::0;;35668:102::o;35778:122::-;1771:13;:11;:13::i;:::-;35887:5:::1;35864:13;:20;35878:5;35864:20;;;;;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:28;;;;;-1:-1:-1::0;;;;;35864:28:0::1;;;;;-1:-1:-1::0;;;;;35864:28:0::1;;;;;;35778:122:::0;;:::o;2791:201::-;1771:13;:11;:13::i;:::-;-1:-1:-1;;;;;2880:22:0;::::1;2872:73;;;::::0;-1:-1:-1;;;2872:73:0;;7766:2:1;2872:73:0::1;::::0;::::1;7748:21:1::0;7805:2;7785:18;;;7778:30;7844:34;7824:18;;;7817:62;-1:-1:-1;;;7895:18:1;;;7888:36;7941:19;;2872:73:0::1;7564:402:1::0;2872:73:0::1;2956:28;2975:8;2956:18;:28::i;:::-;2791:201:::0;:::o;2050:132::-;1931:7;1958:6;-1:-1:-1;;;;;1958:6:0;647:10;2114:23;2106:68;;;;-1:-1:-1;;;2106:68:0;;8173:2:1;2106:68:0;;;8155:21:1;;;8192:18;;;8185:30;8251:34;8231:18;;;8224:62;8303:18;;2106:68:0;7971:356:1;5741:120:0;4750:16;:14;:16::i;:::-;5810:5:::1;5800:15:::0;;-1:-1:-1;;;;5800:15:0::1;::::0;;5831:22:::1;647:10:::0;5840:12:::1;5831:22;::::0;-1:-1:-1;;;;;2138:32:1;;;2120:51;;2108:2;2093:18;5831:22:0::1;;;;;;;5741:120::o:0;5045:108::-;4933:4;4957:7;-1:-1:-1;;;4957:7:0;;;;5115:9;5107:38;;;;-1:-1:-1;;;5107:38:0;;8534:2:1;5107:38:0;;;8516:21:1;8573:2;8553:18;;;8546:30;-1:-1:-1;;;8592:18:1;;;8585:46;8648:18;;5107:38:0;8332:340:1;8144:293:0;7546:1;8278:7;;:19;;8270:63;;;;-1:-1:-1;;;8270:63:0;;8879:2:1;8270:63:0;;;8861:21:1;8918:2;8898:18;;;8891:30;8957:33;8937:18;;;8930:61;9008:18;;8270:63:0;8677:355:1;8270:63:0;7546:1;8411:7;:18;8144:293::o;35078:214::-;35154:4;35171:21;35195:29;:4;31101:58;;9628:66:1;31101:58:0;;;9616:79:1;9711:12;;;9704:28;;;30968:7:0;;9748:12:1;;31101:58:0;;;;;;;;;;;;31091:69;;;;;;31084:76;;30899:269;;;;35195:29;35278:6;;35171:53;;-1:-1:-1;;;;;;35278:6:0;35242:32;35171:53;35264:9;35242:21;:32::i;:::-;-1:-1:-1;;;;;35242:42:0;;;35078:214;-1:-1:-1;;;;35078:214:0:o;3152:191::-;3226:16;3245:6;;-1:-1:-1;;;;;3262:17:0;;;-1:-1:-1;;;;;;3262:17:0;;;;;;3295:40;;3245:6;;;;;;;3295:40;;3226:16;3295:40;3215:128;3152:191;:::o;5482:118::-;4491:19;:17;:19::i;:::-;5542:7:::1;:14:::0;;-1:-1:-1;;;;5542:14:0::1;-1:-1:-1::0;;;5542:14:0::1;::::0;;5572:20:::1;5579:12;647:10:::0;;567:98;5230:108;4933:4;4957:7;-1:-1:-1;;;4957:7:0;;;;5289:41;;;;-1:-1:-1;;;5289:41:0;;9239:2:1;5289:41:0;;;9221:21:1;9278:2;9258:18;;;9251:30;-1:-1:-1;;;9297:18:1;;;9290:50;9357:18;;5289:41:0;9037:344:1;27209:231:0;27287:7;27308:17;27327:18;27349:27;27360:4;27366:9;27349:10;:27::i;:::-;27307:69;;;;27387:18;27399:5;27387:11;:18::i;:::-;-1:-1:-1;27423:9:0;27209:231;-1:-1:-1;;;27209:231:0:o;25660:747::-;25741:7;25750:12;25779:9;:16;25799:2;25779:22;25775:625;;;26123:4;26108:20;;26102:27;26173:4;26158:20;;26152:27;26231:4;26216:20;;26210:27;25818:9;26202:36;26274:25;26285:4;26202:36;26102:27;26152;26274:10;:25::i;:::-;26267:32;;;;;;;;;25775:625;-1:-1:-1;26348:1:0;;-1:-1:-1;26352:35:0;25775:625;25660:747;;;;;:::o;24053:521::-;24131:20;24122:5;:29;;;;;;;;:::i;:::-;;24118:449;;;24053:521;:::o;24118:449::-;24229:29;24220:5;:38;;;;;;;;:::i;:::-;;24216:351;;;24275:34;;-1:-1:-1;;;24275:34:0;;9973:2:1;24275:34:0;;;9955:21:1;10012:2;9992:18;;;9985:30;10051:26;10031:18;;;10024:54;10095:18;;24275:34:0;9771:348:1;24216:351:0;24340:35;24331:5;:44;;;;;;;;:::i;:::-;;24327:240;;;24392:41;;-1:-1:-1;;;24392:41:0;;10326:2:1;24392:41:0;;;10308:21:1;10365:2;10345:18;;;10338:30;10404:33;10384:18;;;10377:61;10455:18;;24392:41:0;10124:355:1;24327:240:0;24464:30;24455:5;:39;;;;;;;;:::i;:::-;;24451:116;;;24511:44;;-1:-1:-1;;;24511:44:0;;10686:2:1;24511:44:0;;;10668:21:1;10725:2;10705:18;;;10698:30;10764:34;10744:18;;;10737:62;-1:-1:-1;;;10815:18:1;;;10808:32;10857:19;;24511:44:0;10484:398:1;28661:1520:0;28792:7;;29726:66;29713:79;;29709:163;;;-1:-1:-1;29825:1:0;;-1:-1:-1;29829:30:0;29809:51;;29709:163;29986:24;;;29969:14;29986:24;;;;;;;;;11114:25:1;;;11187:4;11175:17;;11155:18;;;11148:45;;;;11209:18;;;11202:34;;;11252:18;;;11245:34;;;29986:24:0;;11086:19:1;;29986:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;29986:24:0;;-1:-1:-1;;29986:24:0;;;-1:-1:-1;;;;;;;30025:20:0;;30021:103;;30078:1;30082:29;30062:50;;;;;;;30021:103;30144:6;-1:-1:-1;30152:20:0;;-1:-1:-1;28661:1520:0;;;;;;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;572:127::-;633:10;628:3;624:20;621:1;614:31;664:4;661:1;654:15;688:4;685:1;678:15;704:1073;790:6;798;806;859:2;847:9;838:7;834:23;830:32;827:52;;;875:1;872;865:12;827:52;915:9;902:23;944:18;985:2;977:6;974:14;971:34;;;1001:1;998;991:12;971:34;1039:6;1028:9;1024:22;1014:32;;1084:7;1077:4;1073:2;1069:13;1065:27;1055:55;;1106:1;1103;1096:12;1055:55;1142:2;1129:16;1164:2;1160;1157:10;1154:36;;;1170:18;;:::i;:::-;1245:2;1239:9;1213:2;1299:13;;-1:-1:-1;;1295:22:1;;;1319:2;1291:31;1287:40;1275:53;;;1343:18;;;1363:22;;;1340:46;1337:72;;;1389:18;;:::i;:::-;1429:10;1425:2;1418:22;1464:2;1456:6;1449:18;1506:7;1499:4;1494:2;1490;1486:11;1482:22;1479:35;1476:55;;;1527:1;1524;1517:12;1476:55;1587:2;1580:4;1576:2;1572:13;1565:4;1557:6;1553:17;1540:50;1634:1;1627:4;1622:2;1614:6;1610:15;1606:26;1599:37;1655:6;1645:16;;;;;;;1680:40;1714:4;1703:9;1699:20;1680:40;:::i;:::-;1670:50;;1767:2;1756:9;1752:18;1739:32;1729:42;;704:1073;;;;;:::o;2182:150::-;2257:20;;2306:1;2296:12;;2286:40;;2322:1;2319;2312:12;2337:207;2410:6;2463:2;2451:9;2442:7;2438:23;2434:32;2431:52;;;2479:1;2476;2469:12;2431:52;2502:36;2528:9;2502:36;:::i;2549:180::-;2608:6;2661:2;2649:9;2640:7;2636:23;2632:32;2629:52;;;2677:1;2674;2667:12;2629:52;-1:-1:-1;2700:23:1;;2549:180;-1:-1:-1;2549:180:1:o;2734:269::-;2791:6;2844:2;2832:9;2823:7;2819:23;2815:32;2812:52;;;2860:1;2857;2850:12;2812:52;2899:9;2886:23;2949:4;2942:5;2938:16;2931:5;2928:27;2918:55;;2969:1;2966;2959:12;3008:281;3090:6;3098;3151:2;3139:9;3130:7;3126:23;3122:32;3119:52;;;3167:1;3164;3157:12;3119:52;3190:36;3216:9;3190:36;:::i;:::-;3180:46;;3245:38;3279:2;3268:9;3264:18;3245:38;:::i;:::-;3235:48;;3008:281;;;;;:::o;5762:127::-;5823:10;5818:3;5814:20;5811:1;5804:31;5854:4;5851:1;5844:15;5878:4;5875:1;5868:15;5894:301;5932:3;5968:4;5965:1;5961:12;6000:4;5997:1;5993:12;6035:3;6029:4;6025:14;6020:3;6017:23;6014:146;;;6082:10;6077:3;6073:20;6070:1;6063:31;6117:4;6114:1;6107:15;6145:4;6142:1;6135:15;6014:146;6176:13;;5894:301;-1:-1:-1;;;5894:301:1:o;6200:127::-;6261:10;6256:3;6252:20;6249:1;6242:31;6292:4;6289:1;6282:15;6316:4;6313:1;6306:15;6332:435;6385:3;6423:5;6417:12;6450:6;6445:3;6438:19;6476:4;6505:2;6500:3;6496:12;6489:19;;6542:2;6535:5;6531:14;6563:1;6573:169;6587:6;6584:1;6581:13;6573:169;;;6648:13;;6636:26;;6682:12;;;;6717:15;;;;6609:1;6602:9;6573:169;;;-1:-1:-1;6758:3:1;;6332:435;-1:-1:-1;;;;;6332:435:1:o;6772:787::-;-1:-1:-1;;;;;7157:32:1;;7139:51;;7226:3;7221:2;7206:18;;7199:31;;;-1:-1:-1;;7253:57:1;;7290:19;;7282:6;7253:57;:::i;:::-;7358:9;7350:6;7346:22;7341:2;7330:9;7326:18;7319:50;7392:44;7429:6;7421;7392:44;:::i;:::-;7472:22;;;7467:2;7452:18;;;7445:50;;;;-1:-1:-1;;7519:1:1;7504:17;;7550:2;7538:15;;6772:787;-1:-1:-1;;;6772:787:1:o
Swarm Source
ipfs://30d8f4349a1d3577d1d62712617dff85b12088c04873057f15129c94cfb240fc
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.