Skip to main content
PulseScanner.io

Address

0x64feedfa14ca8fe8a366ac83e5c5788febd76eb9
Current Holdings
$0.00
TXs sent
not counted
First Active
2024-08-30
block 21,279,783
Last Active
746 days ago
block 21,279,783
Funded By
not identified

Net worth historyi

No net-worth snapshots recorded yet
exact matchGimmeTheLootByChainzokusolc 0.8.17+commit.8df45f5fruntime exact · creation exact
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import "./MultiSigProxy.sol";
import "./Initialize.sol";

// @author: miinded.com

abstract contract ShareProxy is MultiSigProxy {

    address public shareContract;

    function setShareContract(address _shareContract) public {
        MultiSigProxy.validate("setShareContract");

        _setShareContract(_shareContract);
    }

    function _setShareContract(address _shareContract) internal {
        shareContract = _shareContract;
    }
    function withdraw() public onlyOwnerOrAdmins {
        (bool success, ) = shareContract.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

}