Polygon Sponsored slots available. Book your slot here!
Latest 21 from a total of 21 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Cast | 53834678 | 701 days ago | IN | 0 POL | 0.00886466 | ||||
| Cast | 53834664 | 701 days ago | IN | 0 POL | 0.00824149 | ||||
| Cast | 53834648 | 701 days ago | IN | 0 POL | 0.01031593 | ||||
| Cast | 53834603 | 701 days ago | IN | 0 POL | 0.01264476 | ||||
| Cast | 53832393 | 701 days ago | IN | 0 POL | 0.03703263 | ||||
| Cast | 48769179 | 831 days ago | IN | 0 POL | 0.00806051 | ||||
| Cast | 48769155 | 831 days ago | IN | 0 POL | 0.10116036 | ||||
| Cast | 48769083 | 831 days ago | IN | 0 POL | 0.04532688 | ||||
| Cast | 48769054 | 831 days ago | IN | 0 POL | 0.02590257 | ||||
| Cast | 47504788 | 863 days ago | IN | 0 POL | 0.01439411 | ||||
| Cast | 35298378 | 1174 days ago | IN | 0 POL | 0.0655344 | ||||
| Cast | 33062788 | 1228 days ago | IN | 0 POL | 0.05258448 | ||||
| Cast | 33062689 | 1228 days ago | IN | 0 POL | 0.0345335 | ||||
| Cast | 31706648 | 1263 days ago | IN | 0 POL | 0.0565304 | ||||
| Cast | 31706598 | 1263 days ago | IN | 0 POL | 0.057898 | ||||
| Cast | 31706546 | 1263 days ago | IN | 0 POL | 0.0624922 | ||||
| Cast | 31706531 | 1263 days ago | IN | 0 POL | 0.0098299 | ||||
| Cast | 31706440 | 1263 days ago | IN | 0 POL | 0.0300702 | ||||
| Cast | 29734220 | 1315 days ago | IN | 0 POL | 0.02043622 | ||||
| Cast | 29103936 | 1331 days ago | IN | 0 POL | 0.02022008 | ||||
| Cast | 29103873 | 1331 days ago | IN | 0 POL | 0.00954569 |
Latest 1 internal transaction
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 16260744 | 1670 days ago | Contract Creation | 0 POL |
Cross-Chain Transactions
Loading...
Loading
Minimal Proxy Contract for 0x28846f4051eb05594b3ff9de76b7b5bf00431155
Contract Name:
InstaAccountV2
Compiler Version
v0.7.0+commit.9e61f92b
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"}]Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in POL
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
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.