POL Price: $0.125614 (-3.29%)
 

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Block
From
To
Cast538346782024-02-22 19:13:22701 days ago1708629202IN
0x253236f8...A7030C7b3
0 POL0.00886466101
Cast538346642024-02-22 19:12:52701 days ago1708629172IN
0x253236f8...A7030C7b3
0 POL0.00824149101
Cast538346482024-02-22 19:12:18701 days ago1708629138IN
0x253236f8...A7030C7b3
0 POL0.01031593101
Cast538346032024-02-22 19:10:40701 days ago1708629040IN
0x253236f8...A7030C7b3
0 POL0.01264476114
Cast538323932024-02-22 17:44:18701 days ago1708623858IN
0x253236f8...A7030C7b3
0 POL0.03703263104
Cast487691792023-10-16 2:30:10831 days ago1697423410IN
0x253236f8...A7030C7b3
0 POL0.0080605182
Cast487691552023-10-16 2:29:20831 days ago1697423360IN
0x253236f8...A7030C7b3
0 POL0.1011603682
Cast487690832023-10-16 2:26:27831 days ago1697423187IN
0x253236f8...A7030C7b3
0 POL0.0453268880
Cast487690542023-10-16 2:25:01831 days ago1697423101IN
0x253236f8...A7030C7b3
0 POL0.0259025784
Cast475047882023-09-13 20:09:22863 days ago1694635762IN
0x253236f8...A7030C7b3
0 POL0.01439411164
Cast352983782022-11-07 3:27:471174 days ago1667791667IN
0x253236f8...A7030C7b3
0 POL0.0655344192
Cast330627882022-09-13 18:10:501228 days ago1663092650IN
0x253236f8...A7030C7b3
0 POL0.0525844860
Cast330626892022-09-13 18:07:241228 days ago1663092444IN
0x253236f8...A7030C7b3
0 POL0.034533561
Cast317066482022-08-09 19:31:051263 days ago1660073465IN
0x253236f8...A7030C7b3
0 POL0.0565304100
Cast317065982022-08-09 19:29:211263 days ago1660073361IN
0x253236f8...A7030C7b3
0 POL0.057898100
Cast317065462022-08-09 19:27:331263 days ago1660073253IN
0x253236f8...A7030C7b3
0 POL0.0624922100
Cast317065312022-08-09 19:27:031263 days ago1660073223IN
0x253236f8...A7030C7b3
0 POL0.0098299100
Cast317064402022-08-09 19:23:571263 days ago1660073037IN
0x253236f8...A7030C7b3
0 POL0.0300702100
Cast297342202022-06-19 0:48:331315 days ago1655599713IN
0x253236f8...A7030C7b3
0 POL0.0204362270
Cast291039362022-06-03 6:08:221331 days ago1654236502IN
0x253236f8...A7030C7b3
0 POL0.0202200840
Cast291038732022-06-03 6:06:121331 days ago1654236372IN
0x253236f8...A7030C7b3
0 POL0.0095456949

Latest 1 internal transaction

Parent Transaction Hash Block From To
162607442021-06-28 20:15:361670 days ago1624911336  Contract Creation0 POL
Cross-Chain Transactions
Loading...
Loading

Minimal Proxy Contract for 0x28846f4051eb05594b3ff9de76b7b5bf00431155

Contract Name:
InstaAccountV2

Compiler Version
v0.7.0+commit.9e61f92b

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2021-06-30
*/

// Sources flattened with hardhat v2.0.8 https://hardhat.org

// File contracts/v2/proxy/accountProxy.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;

interface AccountImplementations {
    function getImplementation(bytes4 _sig) external view returns (address);
}

/**
 * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
 * instruction `delegatecall`.
 */
contract InstaAccountV2 {

    AccountImplementations public immutable implementations;

    constructor(address _implementations) {
        implementations = AccountImplementations(_implementations);
    }

    /**
     * @dev Delegates the current call to `implementation`.
     * 
     * This function does not return to its internall call site, it will return directly to the external caller.
     */
    function _delegate(address implementation) internal {
        // solhint-disable-next-line no-inline-assembly
        assembly {
            // 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(), implementation, 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()) }
        }
    }

    /**
     * @dev Delegates the current call to the address returned by Implementations registry.
     * 
     * This function does not return to its internall call site, it will return directly to the external caller.
     */
    function _fallback(bytes4 _sig) internal {
        address _implementation = implementations.getImplementation(_sig);
        require(_implementation != address(0), "InstaAccountV2: Not able to find _implementation");
        _delegate(_implementation);
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by Implementations registry.
     */
    fallback () external payable {
        _fallback(msg.sig);
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by Implementations registry.
     */
    receive () external payable {
        if (msg.sig != 0x00000000) {
            _fallback(msg.sig);
        }
    }
}

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_implementations","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementations","outputs":[{"internalType":"contract AccountImplementations","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

Block Transaction Gas Used Reward
view all blocks produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
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.