Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 27 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Cast | 12659704 | 1238 days ago | IN | 0 ETH | 0.04734156 | ||||
Cast | 10583613 | 1558 days ago | IN | 0 ETH | 0.00368838 | ||||
Cast | 10583599 | 1558 days ago | IN | 0 ETH | 0.00390686 | ||||
Cast | 10583525 | 1558 days ago | IN | 0 ETH | 0.02499922 | ||||
Cast | 10582093 | 1558 days ago | IN | 0 ETH | 0.01282756 | ||||
Cast | 10570266 | 1560 days ago | IN | 0 ETH | 0.0053925 | ||||
Cast | 10544507 | 1564 days ago | IN | 0 ETH | 0.0058102 | ||||
Transfer | 10470476 | 1575 days ago | IN | 0.5 ETH | 0.00150502 | ||||
Cast | 10429800 | 1582 days ago | IN | 0 ETH | 0.00341412 | ||||
Cast | 10428977 | 1582 days ago | IN | 0 ETH | 0.01088799 | ||||
Cast | 10394949 | 1587 days ago | IN | 0 ETH | 0.00220165 | ||||
Cast | 10394564 | 1587 days ago | IN | 0 ETH | 0.00822348 | ||||
Cast | 10335042 | 1596 days ago | IN | 0 ETH | 0.00937368 | ||||
Transfer | 10325672 | 1598 days ago | IN | 1.25 ETH | 0.00082885 | ||||
Cast | 10325633 | 1598 days ago | IN | 0 ETH | 0.00361968 | ||||
Transfer | 10325578 | 1598 days ago | IN | 2 ETH | 0.0007416 | ||||
Cast | 10325342 | 1598 days ago | IN | 0 ETH | 0.00819496 | ||||
Cast | 10313609 | 1600 days ago | IN | 0 ETH | 0.00860376 | ||||
Cast | 10312519 | 1600 days ago | IN | 0 ETH | 0.00348269 | ||||
Cast | 10312476 | 1600 days ago | IN | 0 ETH | 0.00542707 | ||||
Cast | 10299307 | 1602 days ago | IN | 0 ETH | 0.00372668 | ||||
Cast | 10276407 | 1605 days ago | IN | 0 ETH | 0.00762772 | ||||
Cast | 10276407 | 1605 days ago | IN | 0 ETH | 0.00975196 | ||||
Cast | 10274742 | 1606 days ago | IN | 0 ETH | 0.00761586 | ||||
Cast | 10274742 | 1606 days ago | IN | 0 ETH | 0.01107942 |
Latest 12 internal transactions
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
10583599 | 1558 days ago | 4.28 ETH | ||||
10583525 | 1558 days ago | 4.28 ETH | ||||
10544507 | 1564 days ago | 0.5 ETH | ||||
10356356 | 1593 days ago | 0.2655978 ETH | ||||
10356356 | 1593 days ago | 0.2655978 ETH | ||||
10325752 | 1598 days ago | 1.25 ETH | ||||
10325596 | 1598 days ago | 2 ETH | ||||
10325381 | 1598 days ago | 0.24717567 ETH | ||||
10325381 | 1598 days ago | 0.24717567 ETH | ||||
10313609 | 1600 days ago | 0.525 ETH | ||||
10299790 | 1602 days ago | 0.05 ETH | ||||
10037912 | 1642 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Minimal Proxy Contract for 0x939daad09fc4a9b8f8a9352a485dab2df4f4b3f8
Contract Name:
InstaAccount
Compiler Version
v0.6.0+commit.26b70077
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-03-26 */ pragma solidity ^0.6.0; pragma experimental ABIEncoderV2; /** * @title InstaAccount. * @dev DeFi Smart Account Wallet. */ interface IndexInterface { function connectors(uint version) external view returns (address); function check(uint version) external view returns (address); function list() external view returns (address); } interface ConnectorsInterface { function isConnector(address[] calldata logicAddr) external view returns (bool); function isStaticConnector(address[] calldata logicAddr) external view returns (bool); } interface CheckInterface { function isOk() external view returns (bool); } interface ListInterface { function addAuth(address user) external; function removeAuth(address user) external; } contract Record { event LogEnable(address indexed user); event LogDisable(address indexed user); event LogSwitchShield(bool _shield); // InstaIndex Address. address public constant instaIndex = 0x2971AdFa57b20E5a416aE5a708A8655A9c74f723; // The Account Module Version. uint public constant version = 1; // Auth Module(Address of Auth => bool). mapping (address => bool) private auth; // Is shield true/false. bool public shield; /** * @dev Check for Auth if enabled. * @param user address/user/owner. */ function isAuth(address user) public view returns (bool) { return auth[user]; } /** * @dev Change Shield State. */ function switchShield(bool _shield) external { require(auth[msg.sender], "not-self"); require(shield != _shield, "shield is set"); shield = _shield; emit LogSwitchShield(shield); } /** * @dev Enable New User. * @param user Owner of the Smart Account. */ function enable(address user) public { require(msg.sender == address(this) || msg.sender == instaIndex, "not-self-index"); require(user != address(0), "not-valid"); require(!auth[user], "already-enabled"); auth[user] = true; ListInterface(IndexInterface(instaIndex).list()).addAuth(user); emit LogEnable(user); } /** * @dev Disable User. * @param user Owner of the Smart Account. */ function disable(address user) public { require(msg.sender == address(this), "not-self"); require(user != address(0), "not-valid"); require(auth[user], "already-disabled"); delete auth[user]; ListInterface(IndexInterface(instaIndex).list()).removeAuth(user); emit LogDisable(user); } } contract InstaAccount is Record { event LogCast(address indexed origin, address indexed sender, uint value); receive() external payable {} /** * @dev Delegate the calls to Connector And this function is ran by cast(). * @param _target Target to of Connector. * @param _data CallData of function in Connector. */ function spell(address _target, bytes memory _data) internal { require(_target != address(0), "target-invalid"); assembly { let succeeded := delegatecall(gas(), _target, add(_data, 0x20), mload(_data), 0, 0) switch iszero(succeeded) case 1 { // throw if delegatecall failed let size := returndatasize() returndatacopy(0x00, 0x00, size) revert(0x00, size) } } } /** * @dev This is the main function, Where all the different functions are called * from Smart Account. * @param _targets Array of Target(s) to of Connector. * @param _datas Array of Calldata(S) of function. */ function cast( address[] calldata _targets, bytes[] calldata _datas, address _origin ) external payable { require(isAuth(msg.sender) || msg.sender == instaIndex, "permission-denied"); require(_targets.length == _datas.length , "array-length-invalid"); IndexInterface indexContract = IndexInterface(instaIndex); bool isShield = shield; if (!isShield) { require(ConnectorsInterface(indexContract.connectors(version)).isConnector(_targets), "not-connector"); } else { require(ConnectorsInterface(indexContract.connectors(version)).isStaticConnector(_targets), "not-static-connector"); } for (uint i = 0; i < _targets.length; i++) { spell(_targets[i], _datas[i]); } address _check = indexContract.check(version); if (_check != address(0) && !isShield) require(CheckInterface(_check).isOk(), "not-ok"); emit LogCast(_origin, msg.sender, msg.value); } }
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"origin","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"LogCast","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"}],"name":"LogDisable","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"}],"name":"LogEnable","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_shield","type":"bool"}],"name":"LogSwitchShield","type":"event"},{"inputs":[{"internalType":"address[]","name":"_targets","type":"address[]"},{"internalType":"bytes[]","name":"_datas","type":"bytes[]"},{"internalType":"address","name":"_origin","type":"address"}],"name":"cast","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"disable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"enable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"instaIndex","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"isAuth","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"shield","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_shield","type":"bool"}],"name":"switchShield","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.