Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
HypoDropBadge
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.24; import {Attestation} from "@ethereum-attestation-service/eas-contracts/contracts/IEAS.sol"; import {ScrollBadgeAccessControl} from "./Badge/extensions/ScrollBadgeAccessControl.sol"; import {ScrollBadgeSingleton} from "./Badge/extensions/ScrollBadgeSingleton.sol"; import {ScrollBadge} from "./Badge/ScrollBadge.sol"; /// @title ScrollBadgeSimple /// @notice A simple badge that has the same static metadata for each token. contract HypoDropBadge is ScrollBadgeAccessControl, ScrollBadgeSingleton { string public sharedTokenURI; constructor(address resolver_, string memory tokenUri_) ScrollBadge(resolver_) { sharedTokenURI = tokenUri_; } /// @inheritdoc ScrollBadge function onIssueBadge(Attestation calldata attestation) internal override (ScrollBadgeAccessControl, ScrollBadgeSingleton) returns (bool) { return super.onIssueBadge(attestation); } /// @inheritdoc ScrollBadge function onRevokeBadge(Attestation calldata attestation) internal override (ScrollBadgeAccessControl, ScrollBadgeSingleton) returns (bool) { return super.onRevokeBadge(attestation); } /// @inheritdoc ScrollBadge function badgeTokenURI(bytes32 /*uid*/ ) public view override returns (string memory) { return sharedTokenURI; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // A representation of an empty/uninitialized UID. bytes32 constant EMPTY_UID = 0; // A zero expiration represents an non-expiring attestation. uint64 constant NO_EXPIRATION_TIME = 0; error AccessDenied(); error DeadlineExpired(); error InvalidEAS(); error InvalidLength(); error InvalidSignature(); error NotFound(); /// @notice A struct representing ECDSA signature data. struct Signature { uint8 v; // The recovery ID. bytes32 r; // The x-coordinate of the nonce R. bytes32 s; // The signature data. } /// @notice A struct representing a single attestation. struct Attestation { bytes32 uid; // A unique identifier of the attestation. bytes32 schema; // The unique identifier of the schema. uint64 time; // The time when the attestation was created (Unix timestamp). uint64 expirationTime; // The time when the attestation expires (Unix timestamp). uint64 revocationTime; // The time when the attestation was revoked (Unix timestamp). bytes32 refUID; // The UID of the related attestation. address recipient; // The recipient of the attestation. address attester; // The attester/sender of the attestation. bool revocable; // Whether the attestation is revocable. bytes data; // Custom attestation data. } /// @notice A helper function to work with unchecked iterators in loops. function uncheckedInc(uint256 i) pure returns (uint256 j) { unchecked { j = i + 1; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import { ISchemaRegistry } from "./ISchemaRegistry.sol"; import { ISemver } from "./ISemver.sol"; import { Attestation, Signature } from "./Common.sol"; /// @notice A struct representing the arguments of the attestation request. struct AttestationRequestData { address recipient; // The recipient of the attestation. uint64 expirationTime; // The time when the attestation expires (Unix timestamp). bool revocable; // Whether the attestation is revocable. bytes32 refUID; // The UID of the related attestation. bytes data; // Custom attestation data. uint256 value; // An explicit ETH amount to send to the resolver. This is important to prevent accidental user errors. } /// @notice A struct representing the full arguments of the attestation request. struct AttestationRequest { bytes32 schema; // The unique identifier of the schema. AttestationRequestData data; // The arguments of the attestation request. } /// @notice A struct representing the full arguments of the full delegated attestation request. struct DelegatedAttestationRequest { bytes32 schema; // The unique identifier of the schema. AttestationRequestData data; // The arguments of the attestation request. Signature signature; // The ECDSA signature data. address attester; // The attesting account. uint64 deadline; // The deadline of the signature/request. } /// @notice A struct representing the full arguments of the multi attestation request. struct MultiAttestationRequest { bytes32 schema; // The unique identifier of the schema. AttestationRequestData[] data; // The arguments of the attestation request. } /// @notice A struct representing the full arguments of the delegated multi attestation request. struct MultiDelegatedAttestationRequest { bytes32 schema; // The unique identifier of the schema. AttestationRequestData[] data; // The arguments of the attestation requests. Signature[] signatures; // The ECDSA signatures data. Please note that the signatures are assumed to be signed with increasing nonces. address attester; // The attesting account. uint64 deadline; // The deadline of the signature/request. } /// @notice A struct representing the arguments of the revocation request. struct RevocationRequestData { bytes32 uid; // The UID of the attestation to revoke. uint256 value; // An explicit ETH amount to send to the resolver. This is important to prevent accidental user errors. } /// @notice A struct representing the full arguments of the revocation request. struct RevocationRequest { bytes32 schema; // The unique identifier of the schema. RevocationRequestData data; // The arguments of the revocation request. } /// @notice A struct representing the arguments of the full delegated revocation request. struct DelegatedRevocationRequest { bytes32 schema; // The unique identifier of the schema. RevocationRequestData data; // The arguments of the revocation request. Signature signature; // The ECDSA signature data. address revoker; // The revoking account. uint64 deadline; // The deadline of the signature/request. } /// @notice A struct representing the full arguments of the multi revocation request. struct MultiRevocationRequest { bytes32 schema; // The unique identifier of the schema. RevocationRequestData[] data; // The arguments of the revocation request. } /// @notice A struct representing the full arguments of the delegated multi revocation request. struct MultiDelegatedRevocationRequest { bytes32 schema; // The unique identifier of the schema. RevocationRequestData[] data; // The arguments of the revocation requests. Signature[] signatures; // The ECDSA signatures data. Please note that the signatures are assumed to be signed with increasing nonces. address revoker; // The revoking account. uint64 deadline; // The deadline of the signature/request. } /// @title IEAS /// @notice EAS - Ethereum Attestation Service interface. interface IEAS is ISemver { /// @notice Emitted when an attestation has been made. /// @param recipient The recipient of the attestation. /// @param attester The attesting account. /// @param uid The UID of the new attestation. /// @param schemaUID The UID of the schema. event Attested(address indexed recipient, address indexed attester, bytes32 uid, bytes32 indexed schemaUID); /// @notice Emitted when an attestation has been revoked. /// @param recipient The recipient of the attestation. /// @param attester The attesting account. /// @param schemaUID The UID of the schema. /// @param uid The UID the revoked attestation. event Revoked(address indexed recipient, address indexed attester, bytes32 uid, bytes32 indexed schemaUID); /// @notice Emitted when a data has been timestamped. /// @param data The data. /// @param timestamp The timestamp. event Timestamped(bytes32 indexed data, uint64 indexed timestamp); /// @notice Emitted when a data has been revoked. /// @param revoker The address of the revoker. /// @param data The data. /// @param timestamp The timestamp. event RevokedOffchain(address indexed revoker, bytes32 indexed data, uint64 indexed timestamp); /// @notice Returns the address of the global schema registry. /// @return The address of the global schema registry. function getSchemaRegistry() external view returns (ISchemaRegistry); /// @notice Attests to a specific schema. /// @param request The arguments of the attestation request. /// @return The UID of the new attestation. /// /// Example: /// attest({ /// schema: "0facc36681cbe2456019c1b0d1e7bedd6d1d40f6f324bf3dd3a4cef2999200a0", /// data: { /// recipient: "0xdEADBeAFdeAdbEafdeadbeafDeAdbEAFdeadbeaf", /// expirationTime: 0, /// revocable: true, /// refUID: "0x0000000000000000000000000000000000000000000000000000000000000000", /// data: "0xF00D", /// value: 0 /// } /// }) function attest(AttestationRequest calldata request) external payable returns (bytes32); /// @notice Attests to a specific schema via the provided ECDSA signature. /// @param delegatedRequest The arguments of the delegated attestation request. /// @return The UID of the new attestation. /// /// Example: /// attestByDelegation({ /// schema: '0x8e72f5bc0a8d4be6aa98360baa889040c50a0e51f32dbf0baa5199bd93472ebc', /// data: { /// recipient: '0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266', /// expirationTime: 1673891048, /// revocable: true, /// refUID: '0x0000000000000000000000000000000000000000000000000000000000000000', /// data: '0x1234', /// value: 0 /// }, /// signature: { /// v: 28, /// r: '0x148c...b25b', /// s: '0x5a72...be22' /// }, /// attester: '0xc5E8740aD971409492b1A63Db8d83025e0Fc427e', /// deadline: 1673891048 /// }) function attestByDelegation( DelegatedAttestationRequest calldata delegatedRequest ) external payable returns (bytes32); /// @notice Attests to multiple schemas. /// @param multiRequests The arguments of the multi attestation requests. The requests should be grouped by distinct /// schema ids to benefit from the best batching optimization. /// @return The UIDs of the new attestations. /// /// Example: /// multiAttest([{ /// schema: '0x33e9094830a5cba5554d1954310e4fbed2ef5f859ec1404619adea4207f391fd', /// data: [{ /// recipient: '0xdEADBeAFdeAdbEafdeadbeafDeAdbEAFdeadbeaf', /// expirationTime: 1673891048, /// revocable: true, /// refUID: '0x0000000000000000000000000000000000000000000000000000000000000000', /// data: '0x1234', /// value: 1000 /// }, /// { /// recipient: '0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266', /// expirationTime: 0, /// revocable: false, /// refUID: '0x480df4a039efc31b11bfdf491b383ca138b6bde160988222a2a3509c02cee174', /// data: '0x00', /// value: 0 /// }], /// }, /// { /// schema: '0x5ac273ce41e3c8bfa383efe7c03e54c5f0bff29c9f11ef6ffa930fc84ca32425', /// data: [{ /// recipient: '0xdEADBeAFdeAdbEafdeadbeafDeAdbEAFdeadbeaf', /// expirationTime: 0, /// revocable: true, /// refUID: '0x75bf2ed8dca25a8190c50c52db136664de25b2449535839008ccfdab469b214f', /// data: '0x12345678', /// value: 0 /// }, /// }]) function multiAttest(MultiAttestationRequest[] calldata multiRequests) external payable returns (bytes32[] memory); /// @notice Attests to multiple schemas using via provided ECDSA signatures. /// @param multiDelegatedRequests The arguments of the delegated multi attestation requests. The requests should be /// grouped by distinct schema ids to benefit from the best batching optimization. /// @return The UIDs of the new attestations. /// /// Example: /// multiAttestByDelegation([{ /// schema: '0x8e72f5bc0a8d4be6aa98360baa889040c50a0e51f32dbf0baa5199bd93472ebc', /// data: [{ /// recipient: '0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266', /// expirationTime: 1673891048, /// revocable: true, /// refUID: '0x0000000000000000000000000000000000000000000000000000000000000000', /// data: '0x1234', /// value: 0 /// }, /// { /// recipient: '0xdEADBeAFdeAdbEafdeadbeafDeAdbEAFdeadbeaf', /// expirationTime: 0, /// revocable: false, /// refUID: '0x0000000000000000000000000000000000000000000000000000000000000000', /// data: '0x00', /// value: 0 /// }], /// signatures: [{ /// v: 28, /// r: '0x148c...b25b', /// s: '0x5a72...be22' /// }, /// { /// v: 28, /// r: '0x487s...67bb', /// s: '0x12ad...2366' /// }], /// attester: '0x1D86495b2A7B524D747d2839b3C645Bed32e8CF4', /// deadline: 1673891048 /// }]) function multiAttestByDelegation( MultiDelegatedAttestationRequest[] calldata multiDelegatedRequests ) external payable returns (bytes32[] memory); /// @notice Revokes an existing attestation to a specific schema. /// @param request The arguments of the revocation request. /// /// Example: /// revoke({ /// schema: '0x8e72f5bc0a8d4be6aa98360baa889040c50a0e51f32dbf0baa5199bd93472ebc', /// data: { /// uid: '0x101032e487642ee04ee17049f99a70590c735b8614079fc9275f9dd57c00966d', /// value: 0 /// } /// }) function revoke(RevocationRequest calldata request) external payable; /// @notice Revokes an existing attestation to a specific schema via the provided ECDSA signature. /// @param delegatedRequest The arguments of the delegated revocation request. /// /// Example: /// revokeByDelegation({ /// schema: '0x8e72f5bc0a8d4be6aa98360baa889040c50a0e51f32dbf0baa5199bd93472ebc', /// data: { /// uid: '0xcbbc12102578c642a0f7b34fe7111e41afa25683b6cd7b5a14caf90fa14d24ba', /// value: 0 /// }, /// signature: { /// v: 27, /// r: '0xb593...7142', /// s: '0x0f5b...2cce' /// }, /// revoker: '0x244934dd3e31bE2c81f84ECf0b3E6329F5381992', /// deadline: 1673891048 /// }) function revokeByDelegation(DelegatedRevocationRequest calldata delegatedRequest) external payable; /// @notice Revokes existing attestations to multiple schemas. /// @param multiRequests The arguments of the multi revocation requests. The requests should be grouped by distinct /// schema ids to benefit from the best batching optimization. /// /// Example: /// multiRevoke([{ /// schema: '0x8e72f5bc0a8d4be6aa98360baa889040c50a0e51f32dbf0baa5199bd93472ebc', /// data: [{ /// uid: '0x211296a1ca0d7f9f2cfebf0daaa575bea9b20e968d81aef4e743d699c6ac4b25', /// value: 1000 /// }, /// { /// uid: '0xe160ac1bd3606a287b4d53d5d1d6da5895f65b4b4bab6d93aaf5046e48167ade', /// value: 0 /// }], /// }, /// { /// schema: '0x5ac273ce41e3c8bfa383efe7c03e54c5f0bff29c9f11ef6ffa930fc84ca32425', /// data: [{ /// uid: '0x053d42abce1fd7c8fcddfae21845ad34dae287b2c326220b03ba241bc5a8f019', /// value: 0 /// }, /// }]) function multiRevoke(MultiRevocationRequest[] calldata multiRequests) external payable; /// @notice Revokes existing attestations to multiple schemas via provided ECDSA signatures. /// @param multiDelegatedRequests The arguments of the delegated multi revocation attestation requests. The requests /// should be grouped by distinct schema ids to benefit from the best batching optimization. /// /// Example: /// multiRevokeByDelegation([{ /// schema: '0x8e72f5bc0a8d4be6aa98360baa889040c50a0e51f32dbf0baa5199bd93472ebc', /// data: [{ /// uid: '0x211296a1ca0d7f9f2cfebf0daaa575bea9b20e968d81aef4e743d699c6ac4b25', /// value: 1000 /// }, /// { /// uid: '0xe160ac1bd3606a287b4d53d5d1d6da5895f65b4b4bab6d93aaf5046e48167ade', /// value: 0 /// }], /// signatures: [{ /// v: 28, /// r: '0x148c...b25b', /// s: '0x5a72...be22' /// }, /// { /// v: 28, /// r: '0x487s...67bb', /// s: '0x12ad...2366' /// }], /// revoker: '0x244934dd3e31bE2c81f84ECf0b3E6329F5381992', /// deadline: 1673891048 /// }]) function multiRevokeByDelegation( MultiDelegatedRevocationRequest[] calldata multiDelegatedRequests ) external payable; /// @notice Timestamps the specified bytes32 data. /// @param data The data to timestamp. /// @return The timestamp the data was timestamped with. function timestamp(bytes32 data) external returns (uint64); /// @notice Timestamps the specified multiple bytes32 data. /// @param data The data to timestamp. /// @return The timestamp the data was timestamped with. function multiTimestamp(bytes32[] calldata data) external returns (uint64); /// @notice Revokes the specified bytes32 data. /// @param data The data to timestamp. /// @return The timestamp the data was revoked with. function revokeOffchain(bytes32 data) external returns (uint64); /// @notice Revokes the specified multiple bytes32 data. /// @param data The data to timestamp. /// @return The timestamp the data was revoked with. function multiRevokeOffchain(bytes32[] calldata data) external returns (uint64); /// @notice Returns an existing attestation by UID. /// @param uid The UID of the attestation to retrieve. /// @return The attestation data members. function getAttestation(bytes32 uid) external view returns (Attestation memory); /// @notice Checks whether an attestation exists. /// @param uid The UID of the attestation to retrieve. /// @return Whether an attestation exists. function isAttestationValid(bytes32 uid) external view returns (bool); /// @notice Returns the timestamp that the specified data was timestamped with. /// @param data The data to query. /// @return The timestamp the data was timestamped with. function getTimestamp(bytes32 data) external view returns (uint64); /// @notice Returns the timestamp that the specified data was timestamped with. /// @param data The data to query. /// @return The timestamp the data was timestamped with. function getRevokeOffchain(address revoker, bytes32 data) external view returns (uint64); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import { ISemver } from "./ISemver.sol"; import { ISchemaResolver } from "./resolver/ISchemaResolver.sol"; /// @notice A struct representing a record for a submitted schema. struct SchemaRecord { bytes32 uid; // The unique identifier of the schema. ISchemaResolver resolver; // Optional schema resolver. bool revocable; // Whether the schema allows revocations explicitly. string schema; // Custom specification of the schema (e.g., an ABI). } /// @title ISchemaRegistry /// @notice The interface of global attestation schemas for the Ethereum Attestation Service protocol. interface ISchemaRegistry is ISemver { /// @notice Emitted when a new schema has been registered /// @param uid The schema UID. /// @param registerer The address of the account used to register the schema. /// @param schema The schema data. event Registered(bytes32 indexed uid, address indexed registerer, SchemaRecord schema); /// @notice Submits and reserves a new schema /// @param schema The schema data schema. /// @param resolver An optional schema resolver. /// @param revocable Whether the schema allows revocations explicitly. /// @return The UID of the new schema. function register(string calldata schema, ISchemaResolver resolver, bool revocable) external returns (bytes32); /// @notice Returns an existing schema by UID /// @param uid The UID of the schema to retrieve. /// @return The schema data members. function getSchema(bytes32 uid) external view returns (SchemaRecord memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title ISemver /// @notice A semver interface. interface ISemver { /// @notice Returns the full semver contract version. /// @return Semver contract version as a string. function version() external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import { ISemver } from "../ISemver.sol"; import { Attestation } from "../Common.sol"; /// @title ISchemaResolver /// @notice The interface of an optional schema resolver. interface ISchemaResolver is ISemver { /// @notice Checks if the resolver can be sent ETH. /// @return Whether the resolver supports ETH transfers. function isPayable() external pure returns (bool); /// @notice Processes an attestation and verifies whether it's valid. /// @param attestation The new attestation. /// @return Whether the attestation is valid. function attest(Attestation calldata attestation) external payable returns (bool); /// @notice Processes multiple attestations and verifies whether they are valid. /// @param attestations The new attestations. /// @param values Explicit ETH amounts which were sent with each attestation. /// @return Whether all the attestations are valid. function multiAttest( Attestation[] calldata attestations, uint256[] calldata values ) external payable returns (bool); /// @notice Processes an attestation revocation and verifies if it can be revoked. /// @param attestation The existing attestation to be revoked. /// @return Whether the attestation can be revoked. function revoke(Attestation calldata attestation) external payable returns (bool); /// @notice Processes revocation of multiple attestation and verifies they can be revoked. /// @param attestations The existing attestations to be revoked. /// @param values Explicit ETH amounts which were sent with each revocation. /// @return Whether the attestations can be revoked. function multiRevoke( Attestation[] calldata attestations, uint256[] calldata values ) external payable returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.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 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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol) 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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.24; import {Attestation} from "@ethereum-attestation-service/eas-contracts/contracts/IEAS.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {ScrollBadge} from "../ScrollBadge.sol"; import {Unauthorized} from "../../resolver/Errors.sol"; /// @title ScrollBadgeAccessControl /// @notice This contract adds access control to ScrollBadge. /// @dev In EAS, only the original attester can revoke an attestation. If the original // attester was removed and a new was added in this contract, it will not be able // to revoke previous attestations. abstract contract ScrollBadgeAccessControl is Ownable, ScrollBadge { // Authorized badge issuer and revoker accounts. mapping(address => bool) public isAttester; /// @notice Enables or disables a given attester. /// @param attester The attester address. /// @param enable True if enable, false if disable. function toggleAttester(address attester, bool enable) external onlyOwner { isAttester[attester] = enable; } /// @inheritdoc ScrollBadge function onIssueBadge(Attestation calldata attestation) internal virtual override returns (bool) { if (!super.onIssueBadge(attestation)) { return false; } // only allow authorized issuers if (!isAttester[attestation.attester]) { revert Unauthorized(); } return true; } /// @inheritdoc ScrollBadge function onRevokeBadge(Attestation calldata attestation) internal virtual override returns (bool) { if (!super.onRevokeBadge(attestation)) { return false; } // only allow authorized revokers if (!isAttester[attestation.attester]) { revert Unauthorized(); } return true; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.24; import {Attestation} from "@ethereum-attestation-service/eas-contracts/contracts/IEAS.sol"; import {ScrollBadge} from "../ScrollBadge.sol"; import {SingletonBadge} from "../../resolver/Errors.sol"; /// @title ScrollBadgeSingleton /// @notice This contract only allows one active badge per wallet. abstract contract ScrollBadgeSingleton is ScrollBadge { /// @inheritdoc ScrollBadge function onIssueBadge(Attestation calldata attestation) internal virtual override returns (bool) { if (!super.onIssueBadge(attestation)) { return false; } if (hasBadge(attestation.recipient)) { revert SingletonBadge(); } return true; } /// @inheritdoc ScrollBadge function onRevokeBadge(Attestation calldata attestation) internal virtual override returns (bool) { return super.onRevokeBadge(attestation); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.24; import {Attestation} from "@ethereum-attestation-service/eas-contracts/contracts/IEAS.sol"; import {decodeBadgeData} from "../resolver/Common.sol"; import {IScrollBadge} from "../interfaces/IScrollBadge.sol"; import {IScrollBadgeResolver} from "../interfaces/IScrollBadgeResolver.sol"; import {AttestationBadgeMismatch, Unauthorized} from "../resolver/Errors.sol"; /// @title ScrollBadge /// @notice This contract implements the basic functionalities of a Scroll badge. /// It serves as the base contract for more complex badge functionalities. abstract contract ScrollBadge is IScrollBadge { // The global Scroll badge resolver contract. address public immutable resolver; // wallet address => badge count mapping(address => uint256) private _userBadgeCount; /// @dev Creates a new ScrollBadge instance. /// @param resolver_ The address of the global Scroll badge resolver contract. constructor(address resolver_) { resolver = resolver_; } /// @inheritdoc IScrollBadge function issueBadge(Attestation calldata attestation) public returns (bool) { // only callable from resolver if (msg.sender != address(resolver)) { revert Unauthorized(); } // delegate logic to subcontract if (!onIssueBadge(attestation)) { return false; } _userBadgeCount[attestation.recipient] += 1; emit IssueBadge(attestation.uid); return true; } /// @inheritdoc IScrollBadge function revokeBadge(Attestation calldata attestation) public returns (bool) { // only callable from resolver if (msg.sender != address(resolver)) { revert Unauthorized(); } // delegate logic to subcontract if (!onRevokeBadge(attestation)) { return false; } _userBadgeCount[attestation.recipient] -= 1; emit RevokeBadge(attestation.uid); return true; } /// @notice A resolver callback that should be implemented by child contracts. /// @param {attestation} The new attestation. /// @return Whether the attestation is valid. function onIssueBadge(Attestation calldata /*attestation*/ ) internal virtual returns (bool) { return true; } /// @notice A resolver callback that should be implemented by child contracts. /// @param {attestation} The existing attestation to be revoked. /// @return Whether the attestation can be revoked. function onRevokeBadge(Attestation calldata /*attestation*/ ) internal virtual returns (bool) { return true; } /// @inheritdoc IScrollBadge function getAndValidateBadge(bytes32 uid) public view returns (Attestation memory) { Attestation memory attestation = IScrollBadgeResolver(resolver).getAndValidateBadge(uid); (address badge,) = decodeBadgeData(attestation.data); if (badge != address(this)) { revert AttestationBadgeMismatch(uid); } return attestation; } /// @inheritdoc IScrollBadge function badgeTokenURI(bytes32 uid) public view virtual returns (string memory); /// @inheritdoc IScrollBadge function hasBadge(address user) public view virtual returns (bool) { return _userBadgeCount[user] > 0; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.24; import {Attestation} from "@ethereum-attestation-service/eas-contracts/contracts/IEAS.sol"; interface IScrollBadge { event IssueBadge(bytes32 indexed uid); event RevokeBadge(bytes32 indexed uid); /// @notice A resolver callback invoked in the `issueBadge` function in the parent contract. /// @param attestation The new attestation. /// @return Whether the attestation is valid. function issueBadge(Attestation calldata attestation) external returns (bool); /// @notice A resolver callback invoked in the `revokeBadge` function in the parent contract. /// @param attestation The new attestation. /// @return Whether the attestation can be revoked. function revokeBadge(Attestation calldata attestation) external returns (bool); /// @notice Validate and return a Scroll badge attestation. /// @param uid The attestation UID. /// @return The attestation. function getAndValidateBadge(bytes32 uid) external view returns (Attestation memory); /// @notice Returns the token URI corresponding to a certain badge UID, or the default /// badge token URI if the pass UID is 0x0. /// @param uid The badge UID, or 0x0. /// @return The badge token URI (same format as ERC721). function badgeTokenURI(bytes32 uid) external view returns (string memory); /// @notice Returns true if the user has one or more of this badge. /// @param user The user's wallet address. /// @return True if the user has one or more of this badge. function hasBadge(address user) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.24; import {Attestation} from "@ethereum-attestation-service/eas-contracts/contracts/IEAS.sol"; interface IScrollBadgeResolver { /** * * Events * * */ /// @dev Emitted when a new badge is issued. /// @param uid The UID of the new badge attestation. event IssueBadge(bytes32 indexed uid); /// @dev Emitted when a badge is revoked. /// @param uid The UID of the revoked badge attestation. event RevokeBadge(bytes32 indexed uid); /// @dev Emitted when the auto-attach status of a badge is updated. /// @param badge The address of the badge contract. /// @param enable Auto-attach was enabled if true, disabled if false. event UpdateAutoAttachWhitelist(address indexed badge, bool indexed enable); /** * * Public View Functions * * */ /// @notice Return the Scroll badge attestation schema. /// @return The GUID of the Scroll badge attestation schema. function schema() external returns (bytes32); /// @notice The profile registry contract. /// @return The address of the profile registry. function registry() external returns (address); /// @notice The global EAS contract. /// @return The address of the global EAS contract. function eas() external returns (address); /// @notice Validate and return a Scroll badge attestation. /// @param uid The attestation UID. /// @return The attestation. function getAndValidateBadge(bytes32 uid) external view returns (Attestation memory); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.24; uint256 constant MAX_ATTACHED_BADGE_NUM = 48; string constant SCROLL_BADGE_SCHEMA = "address badge, bytes payload"; function decodeBadgeData(bytes memory data) pure returns (address, bytes memory) { return abi.decode(data, (address, bytes)); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.24; error Unauthorized(); error CannotUpgrade(bytes32 uid); // attestation errors // note: these don't include the uid since it is not known prior to the attestation. error BadgeNotAllowed(address badge); error BadgeNotFound(address badge); error ExpirationDisabled(); error MissingPayload(); error ResolverPaymentsDisabled(); error RevocationDisabled(); error SingletonBadge(); error UnknownSchema(); // query errors error AttestationBadgeMismatch(bytes32 uid); error AttestationExpired(bytes32 uid); error AttestationNotFound(bytes32 uid); error AttestationOwnerMismatch(bytes32 uid); error AttestationRevoked(bytes32 uid); error AttestationSchemaMismatch(bytes32 uid); // profile errors error BadgeCountReached(); error LengthMismatch(); error TokenNotOwnedByUser(address token, uint256 tokenId); // profile registry errors error CallerIsNotUserProfile(); error DuplicatedUsername(); error ExpiredSignature(); error ImplementationNotContract(); error InvalidReferrer(); error InvalidSignature(); error InvalidUsername(); error MsgValueMismatchWithMintFee(); error ProfileAlreadyMinted();
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"resolver_","type":"address"},{"internalType":"string","name":"tokenUri_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"bytes32","name":"uid","type":"bytes32"}],"name":"AttestationBadgeMismatch","type":"error"},{"inputs":[],"name":"SingletonBadge","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"uid","type":"bytes32"}],"name":"IssueBadge","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"uid","type":"bytes32"}],"name":"RevokeBadge","type":"event"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"badgeTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"uid","type":"bytes32"}],"name":"getAndValidateBadge","outputs":[{"components":[{"internalType":"bytes32","name":"uid","type":"bytes32"},{"internalType":"bytes32","name":"schema","type":"bytes32"},{"internalType":"uint64","name":"time","type":"uint64"},{"internalType":"uint64","name":"expirationTime","type":"uint64"},{"internalType":"uint64","name":"revocationTime","type":"uint64"},{"internalType":"bytes32","name":"refUID","type":"bytes32"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"attester","type":"address"},{"internalType":"bool","name":"revocable","type":"bool"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Attestation","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"hasBadge","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAttester","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"uid","type":"bytes32"},{"internalType":"bytes32","name":"schema","type":"bytes32"},{"internalType":"uint64","name":"time","type":"uint64"},{"internalType":"uint64","name":"expirationTime","type":"uint64"},{"internalType":"uint64","name":"revocationTime","type":"uint64"},{"internalType":"bytes32","name":"refUID","type":"bytes32"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"attester","type":"address"},{"internalType":"bool","name":"revocable","type":"bool"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Attestation","name":"attestation","type":"tuple"}],"name":"issueBadge","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resolver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"uid","type":"bytes32"},{"internalType":"bytes32","name":"schema","type":"bytes32"},{"internalType":"uint64","name":"time","type":"uint64"},{"internalType":"uint64","name":"expirationTime","type":"uint64"},{"internalType":"uint64","name":"revocationTime","type":"uint64"},{"internalType":"bytes32","name":"refUID","type":"bytes32"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"attester","type":"address"},{"internalType":"bool","name":"revocable","type":"bool"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Attestation","name":"attestation","type":"tuple"}],"name":"revokeBadge","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sharedTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"attester","type":"address"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"toggleAttester","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b5060405162001ef438038062001ef483398181016040528101906200003791906200036b565b81620000586200004c620000a760201b60201c565b620000af60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250505080600390816200009e91906200061c565b50505062000703565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620001b48262000187565b9050919050565b620001c681620001a7565b8114620001d257600080fd5b50565b600081519050620001e681620001bb565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200024182620001f6565b810181811067ffffffffffffffff8211171562000263576200026262000207565b5b80604052505050565b60006200027862000173565b905062000286828262000236565b919050565b600067ffffffffffffffff821115620002a957620002a862000207565b5b620002b482620001f6565b9050602081019050919050565b60005b83811015620002e1578082015181840152602081019050620002c4565b60008484015250505050565b600062000304620002fe846200028b565b6200026c565b905082815260208101848484011115620003235762000322620001f1565b5b62000330848285620002c1565b509392505050565b600082601f83011262000350576200034f620001ec565b5b815162000362848260208601620002ed565b91505092915050565b600080604083850312156200038557620003846200017d565b5b60006200039585828601620001d5565b925050602083015167ffffffffffffffff811115620003b957620003b862000182565b5b620003c78582860162000338565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200042457607f821691505b6020821081036200043a5762000439620003dc565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004a47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000465565b620004b0868362000465565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004fd620004f7620004f184620004c8565b620004d2565b620004c8565b9050919050565b6000819050919050565b6200051983620004dc565b62000531620005288262000504565b84845462000472565b825550505050565b600090565b6200054862000539565b620005558184846200050e565b505050565b5b818110156200057d57620005716000826200053e565b6001810190506200055b565b5050565b601f821115620005cc57620005968162000440565b620005a18462000455565b81016020851015620005b1578190505b620005c9620005c08562000455565b8301826200055a565b50505b505050565b600082821c905092915050565b6000620005f160001984600802620005d1565b1980831691505092915050565b60006200060c8383620005de565b9150826002028217905092915050565b6200062782620003d1565b67ffffffffffffffff81111562000643576200064262000207565b5b6200064f82546200040b565b6200065c82828562000581565b600060209050601f8311600181146200069457600084156200067f578287015190505b6200068b8582620005fe565b865550620006fb565b601f198416620006a48662000440565b60005b82811015620006ce57848901518255600182019150602085019450602081019050620006a7565b86831015620006ee5784890151620006ea601f891682620005de565b8355505b6001600288020188555050505b505050505050565b6080516117c0620007346000396000818161027701528181610481015281816105c9015261074201526117c06000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c80638298b030116100715780638298b0301461017b5780638c6f12f0146101ab5780638da5cb5b146101db578063b6ebe539146101f9578063d753a63d14610229578063f2fde38b14610259576100b4565b806304f3bcec146100b95780630ee48948146100d757806324830563146100f3578063412a05c3146101235780635e50864f14610141578063715018a614610171575b600080fd5b6100c1610275565b6040516100ce9190610d83565b60405180910390f35b6100f160048036038101906100ec9190610e16565b610299565b005b61010d60048036038101906101089190610e8c565b6102fc565b60405161011a9190610f49565b60405180910390f35b61012b610390565b6040516101389190610f49565b60405180910390f35b61015b60048036038101906101569190610f6b565b61041e565b6040516101689190610fa7565b60405180910390f35b610179610469565b005b61019560048036038101906101909190610fe7565b61047d565b6040516101a29190610fa7565b60405180910390f35b6101c560048036038101906101c09190610e8c565b6105bd565b6040516101d291906111af565b60405180910390f35b6101e36106f5565b6040516101f09190610d83565b60405180910390f35b610213600480360381019061020e9190610f6b565b61071e565b6040516102209190610fa7565b60405180910390f35b610243600480360381019061023e9190610fe7565b61073e565b6040516102509190610fa7565b60405180910390f35b610273600480360381019061026e9190610f6b565b61087e565b005b7f000000000000000000000000000000000000000000000000000000000000000081565b6102a1610901565b80600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60606003805461030b90611200565b80601f016020809104026020016040519081016040528092919081815260200182805461033790611200565b80156103845780601f1061035957610100808354040283529160200191610384565b820191906000526020600020905b81548152906001019060200180831161036757829003601f168201915b50505050509050919050565b6003805461039d90611200565b80601f01602080910402602001604051908101604052809291908181526020018280546103c990611200565b80156104165780601f106103eb57610100808354040283529160200191610416565b820191906000526020600020905b8154815290600101906020018083116103f957829003601f168201915b505050505081565b600080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054119050919050565b610471610901565b61047b600061097f565b565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610504576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61050d82610a43565b61051a57600090506105b8565b60018060008460c00160208101906105329190610f6b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461057b919061126a565b9250508190555081600001357f504e4727721de18c6bf7f66448a6ff6da00aa4b1f00b6034e71723ae7ce6373a60405160405180910390a2600190505b919050565b6105c5610c9a565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16638c6f12f0846040518263ffffffff1660e01b815260040161062091906112ad565b600060405180830381865afa15801561063d573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906106669190611575565b90506000610678826101200151610a55565b5090503073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106eb57836040517fb923d2610000000000000000000000000000000000000000000000000000000081526004016106e291906112ad565b60405180910390fd5b8192505050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60026020528060005260406000206000915054906101000a900460ff1681565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107c5576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107ce82610a76565b6107db5760009050610879565b60018060008460c00160208101906107f39190610f6b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461083c91906115be565b9250508190555081600001357fa0785ec0b9bf31a5475d33c716fb9f500f0ea0bb9e4bc10ec39d5db763c1da1560405160405180910390a2600190505b919050565b610886610901565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ec90611664565b60405180910390fd5b6108fe8161097f565b50565b610909610a88565b73ffffffffffffffffffffffffffffffffffffffff166109276106f5565b73ffffffffffffffffffffffffffffffffffffffff161461097d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610974906116d0565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610a4e82610a90565b9050919050565b6000606082806020019051810190610a6d919061172e565b91509150915091565b6000610a8182610aa2565b9050919050565b600033905090565b6000610a9b82610b16565b9050919050565b6000610aad82610bcd565b610aba5760009050610b11565b610ad58260c0016020810190610ad09190610f6b565b61041e565b15610b0c576040517f18b2623200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600190505b919050565b6000610b2182610c84565b610b2e5760009050610bc8565b600260008360e0016020810190610b459190610f6b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610bc3576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600190505b919050565b6000610bd882610c8f565b610be55760009050610c7f565b600260008360e0016020810190610bfc9190610f6b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c7a576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600190505b919050565b600060019050919050565b600060019050919050565b6040518061014001604052806000801916815260200160008019168152602001600067ffffffffffffffff168152602001600067ffffffffffffffff168152602001600067ffffffffffffffff16815260200160008019168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600015158152602001606081525090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610d6d82610d42565b9050919050565b610d7d81610d62565b82525050565b6000602082019050610d986000830184610d74565b92915050565b6000604051905090565b600080fd5b600080fd5b610dbb81610d62565b8114610dc657600080fd5b50565b600081359050610dd881610db2565b92915050565b60008115159050919050565b610df381610dde565b8114610dfe57600080fd5b50565b600081359050610e1081610dea565b92915050565b60008060408385031215610e2d57610e2c610da8565b5b6000610e3b85828601610dc9565b9250506020610e4c85828601610e01565b9150509250929050565b6000819050919050565b610e6981610e56565b8114610e7457600080fd5b50565b600081359050610e8681610e60565b92915050565b600060208284031215610ea257610ea1610da8565b5b6000610eb084828501610e77565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ef3578082015181840152602081019050610ed8565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f1b82610eb9565b610f258185610ec4565b9350610f35818560208601610ed5565b610f3e81610eff565b840191505092915050565b60006020820190508181036000830152610f638184610f10565b905092915050565b600060208284031215610f8157610f80610da8565b5b6000610f8f84828501610dc9565b91505092915050565b610fa181610dde565b82525050565b6000602082019050610fbc6000830184610f98565b92915050565b600080fd5b60006101408284031215610fde57610fdd610fc2565b5b81905092915050565b600060208284031215610ffd57610ffc610da8565b5b600082013567ffffffffffffffff81111561101b5761101a610dad565b5b61102784828501610fc7565b91505092915050565b61103981610e56565b82525050565b600067ffffffffffffffff82169050919050565b61105c8161103f565b82525050565b61106b81610d62565b82525050565b61107a81610dde565b82525050565b600081519050919050565b600082825260208201905092915050565b60006110a782611080565b6110b1818561108b565b93506110c1818560208601610ed5565b6110ca81610eff565b840191505092915050565b6000610140830160008301516110ee6000860182611030565b5060208301516111016020860182611030565b5060408301516111146040860182611053565b5060608301516111276060860182611053565b50608083015161113a6080860182611053565b5060a083015161114d60a0860182611030565b5060c083015161116060c0860182611062565b5060e083015161117360e0860182611062565b50610100830151611188610100860182611071565b506101208301518482036101208601526111a2828261109c565b9150508091505092915050565b600060208201905081810360008301526111c981846110d5565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061121857607f821691505b60208210810361122b5761122a6111d1565b5b50919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061127582611231565b915061128083611231565b92508282039050818111156112985761129761123b565b5b92915050565b6112a781610e56565b82525050565b60006020820190506112c2600083018461129e565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61130582610eff565b810181811067ffffffffffffffff82111715611324576113236112cd565b5b80604052505050565b6000611337610d9e565b905061134382826112fc565b919050565b600080fd5b60008151905061135c81610e60565b92915050565b61136b8161103f565b811461137657600080fd5b50565b60008151905061138881611362565b92915050565b60008151905061139d81610db2565b92915050565b6000815190506113b281610dea565b92915050565b600080fd5b600080fd5b600067ffffffffffffffff8211156113dd576113dc6112cd565b5b6113e682610eff565b9050602081019050919050565b6000611406611401846113c2565b61132d565b905082815260208101848484011115611422576114216113bd565b5b61142d848285610ed5565b509392505050565b600082601f83011261144a576114496113b8565b5b815161145a8482602086016113f3565b91505092915050565b6000610140828403121561147a576114796112c8565b5b61148561014061132d565b905060006114958482850161134d565b60008301525060206114a98482850161134d565b60208301525060406114bd84828501611379565b60408301525060606114d184828501611379565b60608301525060806114e584828501611379565b60808301525060a06114f98482850161134d565b60a08301525060c061150d8482850161138e565b60c08301525060e06115218482850161138e565b60e083015250610100611536848285016113a3565b6101008301525061012082015167ffffffffffffffff81111561155c5761155b611348565b5b61156884828501611435565b6101208301525092915050565b60006020828403121561158b5761158a610da8565b5b600082015167ffffffffffffffff8111156115a9576115a8610dad565b5b6115b584828501611463565b91505092915050565b60006115c982611231565b91506115d483611231565b92508282019050808211156115ec576115eb61123b565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061164e602683610ec4565b9150611659826115f2565b604082019050919050565b6000602082019050818103600083015261167d81611641565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006116ba602083610ec4565b91506116c582611684565b602082019050919050565b600060208201905081810360008301526116e9816116ad565b9050919050565b60006116fb82610d42565b9050919050565b61170b816116f0565b811461171657600080fd5b50565b60008151905061172881611702565b92915050565b6000806040838503121561174557611744610da8565b5b600061175385828601611719565b925050602083015167ffffffffffffffff81111561177457611773610dad565b5b61178085828601611435565b915050925092905056fea264697066735822122066189a2d7321c7f528bac019d2b90f62f0f3a4ab1666b9ecd723f4ce43334b3664736f6c634300081800330000000000000000000000004560fecd62b14a463be44d40fe5cfd595eec01130000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d624759646554446b704e3842336b5a5a69666e53487031377336445a4b56597a59336d374c414e67587962670000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100b45760003560e01c80638298b030116100715780638298b0301461017b5780638c6f12f0146101ab5780638da5cb5b146101db578063b6ebe539146101f9578063d753a63d14610229578063f2fde38b14610259576100b4565b806304f3bcec146100b95780630ee48948146100d757806324830563146100f3578063412a05c3146101235780635e50864f14610141578063715018a614610171575b600080fd5b6100c1610275565b6040516100ce9190610d83565b60405180910390f35b6100f160048036038101906100ec9190610e16565b610299565b005b61010d60048036038101906101089190610e8c565b6102fc565b60405161011a9190610f49565b60405180910390f35b61012b610390565b6040516101389190610f49565b60405180910390f35b61015b60048036038101906101569190610f6b565b61041e565b6040516101689190610fa7565b60405180910390f35b610179610469565b005b61019560048036038101906101909190610fe7565b61047d565b6040516101a29190610fa7565b60405180910390f35b6101c560048036038101906101c09190610e8c565b6105bd565b6040516101d291906111af565b60405180910390f35b6101e36106f5565b6040516101f09190610d83565b60405180910390f35b610213600480360381019061020e9190610f6b565b61071e565b6040516102209190610fa7565b60405180910390f35b610243600480360381019061023e9190610fe7565b61073e565b6040516102509190610fa7565b60405180910390f35b610273600480360381019061026e9190610f6b565b61087e565b005b7f0000000000000000000000004560fecd62b14a463be44d40fe5cfd595eec011381565b6102a1610901565b80600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60606003805461030b90611200565b80601f016020809104026020016040519081016040528092919081815260200182805461033790611200565b80156103845780601f1061035957610100808354040283529160200191610384565b820191906000526020600020905b81548152906001019060200180831161036757829003601f168201915b50505050509050919050565b6003805461039d90611200565b80601f01602080910402602001604051908101604052809291908181526020018280546103c990611200565b80156104165780601f106103eb57610100808354040283529160200191610416565b820191906000526020600020905b8154815290600101906020018083116103f957829003601f168201915b505050505081565b600080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054119050919050565b610471610901565b61047b600061097f565b565b60007f0000000000000000000000004560fecd62b14a463be44d40fe5cfd595eec011373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610504576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61050d82610a43565b61051a57600090506105b8565b60018060008460c00160208101906105329190610f6b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461057b919061126a565b9250508190555081600001357f504e4727721de18c6bf7f66448a6ff6da00aa4b1f00b6034e71723ae7ce6373a60405160405180910390a2600190505b919050565b6105c5610c9a565b60007f0000000000000000000000004560fecd62b14a463be44d40fe5cfd595eec011373ffffffffffffffffffffffffffffffffffffffff16638c6f12f0846040518263ffffffff1660e01b815260040161062091906112ad565b600060405180830381865afa15801561063d573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906106669190611575565b90506000610678826101200151610a55565b5090503073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106eb57836040517fb923d2610000000000000000000000000000000000000000000000000000000081526004016106e291906112ad565b60405180910390fd5b8192505050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60026020528060005260406000206000915054906101000a900460ff1681565b60007f0000000000000000000000004560fecd62b14a463be44d40fe5cfd595eec011373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107c5576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107ce82610a76565b6107db5760009050610879565b60018060008460c00160208101906107f39190610f6b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461083c91906115be565b9250508190555081600001357fa0785ec0b9bf31a5475d33c716fb9f500f0ea0bb9e4bc10ec39d5db763c1da1560405160405180910390a2600190505b919050565b610886610901565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ec90611664565b60405180910390fd5b6108fe8161097f565b50565b610909610a88565b73ffffffffffffffffffffffffffffffffffffffff166109276106f5565b73ffffffffffffffffffffffffffffffffffffffff161461097d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610974906116d0565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610a4e82610a90565b9050919050565b6000606082806020019051810190610a6d919061172e565b91509150915091565b6000610a8182610aa2565b9050919050565b600033905090565b6000610a9b82610b16565b9050919050565b6000610aad82610bcd565b610aba5760009050610b11565b610ad58260c0016020810190610ad09190610f6b565b61041e565b15610b0c576040517f18b2623200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600190505b919050565b6000610b2182610c84565b610b2e5760009050610bc8565b600260008360e0016020810190610b459190610f6b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610bc3576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600190505b919050565b6000610bd882610c8f565b610be55760009050610c7f565b600260008360e0016020810190610bfc9190610f6b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c7a576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600190505b919050565b600060019050919050565b600060019050919050565b6040518061014001604052806000801916815260200160008019168152602001600067ffffffffffffffff168152602001600067ffffffffffffffff168152602001600067ffffffffffffffff16815260200160008019168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600015158152602001606081525090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610d6d82610d42565b9050919050565b610d7d81610d62565b82525050565b6000602082019050610d986000830184610d74565b92915050565b6000604051905090565b600080fd5b600080fd5b610dbb81610d62565b8114610dc657600080fd5b50565b600081359050610dd881610db2565b92915050565b60008115159050919050565b610df381610dde565b8114610dfe57600080fd5b50565b600081359050610e1081610dea565b92915050565b60008060408385031215610e2d57610e2c610da8565b5b6000610e3b85828601610dc9565b9250506020610e4c85828601610e01565b9150509250929050565b6000819050919050565b610e6981610e56565b8114610e7457600080fd5b50565b600081359050610e8681610e60565b92915050565b600060208284031215610ea257610ea1610da8565b5b6000610eb084828501610e77565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ef3578082015181840152602081019050610ed8565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f1b82610eb9565b610f258185610ec4565b9350610f35818560208601610ed5565b610f3e81610eff565b840191505092915050565b60006020820190508181036000830152610f638184610f10565b905092915050565b600060208284031215610f8157610f80610da8565b5b6000610f8f84828501610dc9565b91505092915050565b610fa181610dde565b82525050565b6000602082019050610fbc6000830184610f98565b92915050565b600080fd5b60006101408284031215610fde57610fdd610fc2565b5b81905092915050565b600060208284031215610ffd57610ffc610da8565b5b600082013567ffffffffffffffff81111561101b5761101a610dad565b5b61102784828501610fc7565b91505092915050565b61103981610e56565b82525050565b600067ffffffffffffffff82169050919050565b61105c8161103f565b82525050565b61106b81610d62565b82525050565b61107a81610dde565b82525050565b600081519050919050565b600082825260208201905092915050565b60006110a782611080565b6110b1818561108b565b93506110c1818560208601610ed5565b6110ca81610eff565b840191505092915050565b6000610140830160008301516110ee6000860182611030565b5060208301516111016020860182611030565b5060408301516111146040860182611053565b5060608301516111276060860182611053565b50608083015161113a6080860182611053565b5060a083015161114d60a0860182611030565b5060c083015161116060c0860182611062565b5060e083015161117360e0860182611062565b50610100830151611188610100860182611071565b506101208301518482036101208601526111a2828261109c565b9150508091505092915050565b600060208201905081810360008301526111c981846110d5565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061121857607f821691505b60208210810361122b5761122a6111d1565b5b50919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061127582611231565b915061128083611231565b92508282039050818111156112985761129761123b565b5b92915050565b6112a781610e56565b82525050565b60006020820190506112c2600083018461129e565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61130582610eff565b810181811067ffffffffffffffff82111715611324576113236112cd565b5b80604052505050565b6000611337610d9e565b905061134382826112fc565b919050565b600080fd5b60008151905061135c81610e60565b92915050565b61136b8161103f565b811461137657600080fd5b50565b60008151905061138881611362565b92915050565b60008151905061139d81610db2565b92915050565b6000815190506113b281610dea565b92915050565b600080fd5b600080fd5b600067ffffffffffffffff8211156113dd576113dc6112cd565b5b6113e682610eff565b9050602081019050919050565b6000611406611401846113c2565b61132d565b905082815260208101848484011115611422576114216113bd565b5b61142d848285610ed5565b509392505050565b600082601f83011261144a576114496113b8565b5b815161145a8482602086016113f3565b91505092915050565b6000610140828403121561147a576114796112c8565b5b61148561014061132d565b905060006114958482850161134d565b60008301525060206114a98482850161134d565b60208301525060406114bd84828501611379565b60408301525060606114d184828501611379565b60608301525060806114e584828501611379565b60808301525060a06114f98482850161134d565b60a08301525060c061150d8482850161138e565b60c08301525060e06115218482850161138e565b60e083015250610100611536848285016113a3565b6101008301525061012082015167ffffffffffffffff81111561155c5761155b611348565b5b61156884828501611435565b6101208301525092915050565b60006020828403121561158b5761158a610da8565b5b600082015167ffffffffffffffff8111156115a9576115a8610dad565b5b6115b584828501611463565b91505092915050565b60006115c982611231565b91506115d483611231565b92508282019050808211156115ec576115eb61123b565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061164e602683610ec4565b9150611659826115f2565b604082019050919050565b6000602082019050818103600083015261167d81611641565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006116ba602083610ec4565b91506116c582611684565b602082019050919050565b600060208201905081810360008301526116e9816116ad565b9050919050565b60006116fb82610d42565b9050919050565b61170b816116f0565b811461171657600080fd5b50565b60008151905061172881611702565b92915050565b6000806040838503121561174557611744610da8565b5b600061175385828601611719565b925050602083015167ffffffffffffffff81111561177457611773610dad565b5b61178085828601611435565b915050925092905056fea264697066735822122066189a2d7321c7f528bac019d2b90f62f0f3a4ab1666b9ecd723f4ce43334b3664736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004560fecd62b14a463be44d40fe5cfd595eec01130000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d624759646554446b704e3842336b5a5a69666e53487031377336445a4b56597a59336d374c414e67587962670000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : resolver_ (address): 0x4560FECd62B14A463bE44D40fE5Cfd595eEc0113
Arg [1] : tokenUri_ (string): https://ipfs.io/ipfs/QmbGYdeTDkpN8B3kZZifnSHp17s6DZKVYzY3m7LANgXybg
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000004560fecd62b14a463be44d40fe5cfd595eec0113
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [3] : 68747470733a2f2f697066732e696f2f697066732f516d624759646554446b70
Arg [4] : 4e3842336b5a5a69666e53487031377336445a4b56597a59336d374c414e6758
Arg [5] : 7962670000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.