Skip to main content
PulseScanner.io

Address

0xc64c4fb38ef531488bc1e8a0dcaef2b3ed18a048
Current Holdings
$0.00
TXs sent
not counted
First Active
2023-05-25
block 17,357,734
Last Active
1,210 days ago
block 17,357,734
Funded By
not identified

Net worth historyi

1 snapshot · to block 18,926,199
exact matchMovieShotWOW37solc 0.8.13+commit.abaa5c0eruntime exact · creation exact
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {OperatorFilterer} from "./OperatorFilterer.sol";

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION =
        address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}