Discover more of Etherscan's tools and services in one place.
Sponsored
Contract Source Code:
File 1 of 1 : DepositProxy
/** *Submitted for verification at Etherscan.io on 2019-08-01 */ pragma solidity 0.5.10; contract AbstractAccount { event DeviceAdded(address device, bool isOwner); event DeviceRemoved(address device); event TransactionExecuted(address recipient, uint256 value, bytes data, bytes response); struct Device { bool isOwner; bool exists; bool existed; } mapping(address => Device) public devices; function addDevice(address _device, bool _isOwner) public; function removeDevice(address _device) public; function executeTransaction(address payable _recipient, uint256 _value, bytes memory _data) public returns (bytes memory _response); } contract DepositProxy { address payable public account; address payable public paymentManager; constructor (address payable _account, address payable _paymentManager) public { account = _account; paymentManager = _paymentManager; } function () payable external { address(account).transfer(msg.value); bytes memory empty; AbstractAccount(account).executeTransaction(paymentManager, msg.value, empty); } }
Please enter a contract address above to load the contract details and source code.
Please DO NOT store any passwords or private keys here. A private note (up to 100 characters) can be saved and is useful for transaction tracking.
My Name Tag:
Private Note:
This website uses cookies to improve your experience. By continuing to use this website, you agree to its Terms and Privacy Policy.