ETH Price: $2,679.37 (-0.60%)

Contract

0x93A5B25022aD5Ac93Dc13DFFd1C5c5269153b154
 

Multichain Info

Transaction Hash
Method
Block
From
To
Transfer174139262023-06-05 11:08:23481 days ago1685963303IN
0x93A5B250...69153b154
15 ETH0.0005525621.35424323
Transfer171452922023-04-28 14:43:11519 days ago1682692991IN
0x93A5B250...69153b154
150 ETH0.0010352940.00984058
Transfer171161482023-04-24 12:28:35523 days ago1682339315IN
0x93A5B250...69153b154
100 ETH0.0009468136.59042495
Transfer169683852023-04-03 12:06:11544 days ago1680523571IN
0x93A5B250...69153b154
25 ETH0.0006764426.14190209

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
184917692023-11-03 13:15:59330 days ago1699017359
0x93A5B250...69153b154
4.360706 ETH
178448762023-08-04 23:24:35421 days ago1691191475
0x93A5B250...69153b154
51 ETH
178448652023-08-04 23:22:23421 days ago1691191343
0x93A5B250...69153b154
54.69618173 ETH
175853552023-06-29 13:48:47457 days ago1688046527
0x93A5B250...69153b154
152 ETH
175853472023-06-29 13:47:11457 days ago1688046431
0x93A5B250...69153b154
152.53108195 ETH
175708802023-06-27 13:07:35459 days ago1687871255
0x93A5B250...69153b154
10 ETH
175708012023-06-27 12:51:35459 days ago1687870295
0x93A5B250...69153b154
9.98678253 ETH
174287982023-06-07 13:29:47479 days ago1686144587
0x93A5B250...69153b154
2 ETH
174286682023-06-07 13:03:23479 days ago1686143003
0x93A5B250...69153b154
2.09399473 ETH
174146022023-06-05 13:26:11481 days ago1685971571
0x93A5B250...69153b154
0.00045039 ETH
174141192023-06-05 11:47:23481 days ago1685965643
0x93A5B250...69153b154
0.00037827 ETH
174141092023-06-05 11:45:23481 days ago1685965523
0x93A5B250...69153b154
0.05349309 ETH
174140462023-06-05 11:32:47481 days ago1685964767
0x93A5B250...69153b154
13.482038 ETH
174140392023-06-05 11:31:23481 days ago1685964683
0x93A5B250...69153b154
13.482038 ETH
174140102023-06-05 11:25:23481 days ago1685964323
0x93A5B250...69153b154
15.008357 ETH
172719452023-05-16 11:22:47501 days ago1684236167
0x93A5B250...69153b154
0.0005907 ETH
171856652023-05-04 6:56:11513 days ago1683183371
0x93A5B250...69153b154
149.99105177 ETH
171161722023-04-24 12:33:23523 days ago1682339603
0x93A5B250...69153b154
100 ETH
169832622023-04-05 14:46:47542 days ago1680706007
0x93A5B250...69153b154
10.578385 ETH
169828392023-04-05 13:20:59542 days ago1680700859
0x93A5B250...69153b154
10.57838522 ETH
169684002023-04-03 12:09:11544 days ago1680523751
0x93A5B250...69153b154
25 ETH
168834112023-03-22 13:24:47556 days ago1679491487
0x93A5B250...69153b154
4.426909 ETH
168830652023-03-22 12:14:35556 days ago1679487275
0x93A5B250...69153b154
0.00027874 ETH
168822902023-03-22 9:38:11556 days ago1679477891
0x93A5B250...69153b154
4.39952118 ETH
168822122023-03-22 9:22:35556 days ago1679476955
0x93A5B250...69153b154
0.00025757 ETH
View All Internal Transactions
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x470A4c4A...50cb95632
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
AvoSafe

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : AvoSafe.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.17;

/// @title   IAvoSafe
/// @notice  interface to access _avoWalletImpl on-chain
interface IAvoSafe {
    function _avoWalletImpl() external view returns (address);
}

/// @title      AvoSafe
/// @notice     Proxy for AvoWallets as deployed by the AvoFactory.
///             Basic Proxy with fallback to delegate and address for implementation contract at storage 0x0
/// @dev        If this contract changes then the deployment addresses for new AvoSafes through factory change too!!
///             Relayers might want to pass in version as new param then to forward to the correct factory
contract AvoSafe {
    /// @notice address of the Avo wallet logic / implementation contract. IMPORTANT: SAME STORAGE SLOT AS FOR PROXY
    /// @dev    _avoWalletImpl MUST ALWAYS be the first declared variable here in the proxy and in the logic contract
    ///         when upgrading, the storage at memory address 0x0 is upgraded (first slot).
    ///         To reduce deployment costs this variable is internal but can still be retrieved with
    ///         _avoWalletImpl(), see code and comments in fallback below
    address internal _avoWalletImpl;

    /// @notice   sets _avoWalletImpl address, fetching it from msg.sender via avoWalletImpl()
    /// @dev      avoWalletImpl_ is not an input param to not influence the deterministic Create2 address!
    constructor() {
        // "\x8e\x7d\xaf\x69" is hardcoded bytes of function selector for avoWalletImpl()
        (bool success_, bytes memory data_) = msg.sender.call(bytes("\x8e\x7d\xaf\x69"));

        address avoWalletImpl_;
        assembly {
            // cast last 20 bytes of hash to address
            avoWalletImpl_ := mload(add(data_, 32))
        }

        if (!success_ || avoWalletImpl_.code.length == 0) {
            revert();
        }

        _avoWalletImpl = avoWalletImpl_;
    }

    /// @notice Delegates the current call to `_avoWalletImpl` unless _avoWalletImpl() is called
    ///         if _avoWalletImpl() is called then the address for _avoWalletImpl is returned
    /// @dev    Mostly based on OpenZeppelin Proxy.sol
    fallback() external payable {
        assembly {
            // load address avoWalletImpl_ from storage
            let avoWalletImpl_ := and(sload(0), 0xffffffffffffffffffffffffffffffffffffffff)

            // first 4 bytes of calldata specify which function to call.
            // if those first 4 bytes == 87e9052a (function selector for _avoWalletImpl()) then we return the _avoWalletImpl address
            // The value is right padded to 32-bytes with 0s
            if eq(calldataload(0), 0x87e9052a00000000000000000000000000000000000000000000000000000000) {
                mstore(0, avoWalletImpl_) // store address avoWalletImpl_ at memory address 0x0
                return(0, 0x20) // send first 20 bytes of address at memory address 0x0
            }

            // @dev code below is taken from OpenZeppelin Proxy.sol _delegate function

            // Copy msg.data. We take full control of memory in this inline assembly
            // block because it will not return to Solidity code. We overwrite the
            // Solidity scratch pad at memory position 0.
            calldatacopy(0, 0, calldatasize())

            // Call the implementation.
            // out and outsize are 0 because we don't know the size yet.
            let result := delegatecall(gas(), avoWalletImpl_, 0, calldatasize(), 0, 0)

            // Copy the returned data.
            returndatacopy(0, 0, returndatasize())

            switch result
            // delegatecall returns 0 on error.
            case 0 {
                revert(0, returndatasize())
            }
            default {
                return(0, returndatasize())
            }
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167f87e9052a0000000000000000000000000000000000000000000000000000000060003503604f578060005260206000f35b3660008037600080366000845af43d6000803e8060008114606f573d6000f35b3d6000fdfea26469706673582212206b87e9571aaea9ed523b568c544f1e27605a9e60767f9b6c9efbab3ad8293ea864736f6c63430008110033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.