ETH Price: $2,126.72 (+4.33%)

Contract Diff Checker

Contract Name:
Vyper_contract

Contract Source Code:

File 1 of 1 : Vyper_contract

# @version 0.3.7


interface Factory:
    def sweeper_implementation() -> address: view


FACTORY: immutable(Factory)


@external
def __init__(_factory: Factory):
    FACTORY = _factory


@external
def __default__():
    implementation: address = FACTORY.sweeper_implementation()
    raw_call(implementation, msg.data, is_delegate_call=True)


@view
@external
def implementation() -> address:
    return FACTORY.sweeper_implementation()

Please enter a contract address above to load the contract details and source code.

Context size (optional):