CRO Price: $0.08 (-2.37%)

Contract

0xCB980A28034bf6B95694D0Bf0c3A43f73E2bE401
Transaction Hash
Method
Block
From
To
Transfer Ownersh...130159772024-03-15 8:13:16207 days ago1710490396IN
0xCB980A28...73E2bE401
0 CRO0.144697655,050
Transfer Ownersh...126510332024-02-20 18:51:56230 days ago1708455116IN
0xCB980A28...73E2bE401
0 CRO0.2890072910,086.45840509
Update Share Dis...93271822023-07-19 6:18:02447 days ago1689747482IN
0xCB980A28...73E2bE401
0 CRO0.488411744,704.86224096
Update Share Dis...87908262023-06-14 7:33:58482 days ago1686728038IN
0xCB980A28...73E2bE401
0 CRO0.490900834,728.83959256
Release Tokens74015912023-03-15 8:30:41573 days ago1678869041IN
0xCB980A28...73E2bE401
0 CRO0.393667414,792.63961972
Update Share Dis...74015352023-03-15 8:25:25573 days ago1678868725IN
0xCB980A28...73E2bE401
0 CRO0.497524184,792.64220254
Transfer Ownersh...72954202023-03-08 9:39:16580 days ago1678268356IN
0xCB980A28...73E2bE401
0 CRO0.137403224,797.43104132
Release Tokens70750882023-02-22 0:07:17594 days ago1677024437IN
0xCB980A28...73E2bE401
0 CRO0.394896954,807.60840553
Update Share Dis...70750502023-02-22 0:03:42594 days ago1677024222IN
0xCB980A28...73E2bE401
0 CRO0.4990784,807.61014806
Update Share Dis...64642732023-01-13 0:05:38634 days ago1673568338IN
0xCB980A28...73E2bE401
0 CRO0.689117224,835.57101916
Update Share Dis...55531562022-11-14 6:21:04694 days ago1668406864IN
0xCB980A28...73E2bE401
0 CRO0.695110264,877.62450625
Update Share Dis...47768592022-09-24 5:13:18745 days ago1663996398IN
0xCB980A28...73E2bE401
0 CRO0.649095084,913.14387488
Update Share Dis...39904652022-08-03 15:02:42796 days ago1659538962IN
0xCB980A28...73E2bE401
0 CRO0.476478034,948.31326526
0x60a0604039904642022-08-03 15:02:36796 days ago1659538956IN
 Create: TokenSplitter
0 CRO6.724065024,948.31330801

Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
TokenSplitter

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : TokenSplitter.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import {IERC20, SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";

/**
 * @title TokenSplitter
 * @notice It splits MTD to team/treasury/trading volume reward accounts based on shares.
 */
contract TokenSplitter is Ownable, ReentrancyGuard {
    using SafeERC20 for IERC20;

    struct AccountInfo {
        uint256 shares;
        uint256 tokensDistributedToAccount;
        bool active;
    }

    uint256 public constant TOTAL_SHARES = 10000; //100 percent
    IERC20 public immutable mintedToken;

    uint256 public lastReleaseTokensBlock;

    // Total MTD tokens distributed across all accounts
    uint256 public totalTokensDistributed;

    // List of accounts
    address[] public accounts;
    mapping(address => AccountInfo) public accountInfo;

    event NewSharesOwner(address indexed oldRecipient, address indexed newRecipient);
    event TokensTransferred(address indexed account, uint256 amount);
    event NewAccount(address indexed account);
    event UpdateShareDistribution(address[] accounts, uint256[] shares);

    /**
     * @notice Constructor
     * @param _accounts array of accounts addresses
     * @param _shares array of shares per account
     * @param _mintedToken address of the MTD token
     */
    constructor(
        address[] memory _accounts,
        uint256[] memory _shares,
        address _mintedToken
    ) {
        require(_accounts.length == _shares.length, "Splitter: Length differ");
        require(_accounts.length > 0, "Splitter: Length must be > 0");

        uint256 currentShares;
        for (uint256 i = 0; i < _accounts.length; i++) {
            require(_shares[i] > 0, "Splitter: Shares are 0");

            currentShares += _shares[i];
            accountInfo[_accounts[i]].shares = _shares[i];
            accountInfo[_accounts[i]].active = true;
            accounts.push(_accounts[i]);
        }

        require(currentShares == TOTAL_SHARES, "invalid share distribution");
        mintedToken = IERC20(_mintedToken);
    }

    /**
     * @notice distribute current mtd balance across various account
     */
    function releaseTokens() public nonReentrant {
        if (block.number <= lastReleaseTokensBlock) {
            return;
        }

        lastReleaseTokensBlock = block.number;
        uint256 mtdBal = mintedToken.balanceOf(address(this));

        for (uint256 i = 0; i < accounts.length; i++) {
            address account = accounts[i];
            uint256 pendingRewards = (mtdBal * accountInfo[account].shares) / TOTAL_SHARES;

            if (pendingRewards > 0) {
                // Update and transfer fund to account
                accountInfo[account].tokensDistributedToAccount += pendingRewards;
                totalTokensDistributed += pendingRewards;
                mintedToken.safeTransfer(account, pendingRewards);

                emit TokensTransferred(account, pendingRewards);
            }
        }
    }

    /**
     * @notice Update share recipient
     * @param _newRecipient address of the new recipient
     * @param _currentRecipient address of the current recipient
     */
    function updateSharesOwner(address _newRecipient, address _currentRecipient) external onlyOwner {
        require(accountInfo[_currentRecipient].shares > 0, "Owner: Current recipient has no shares");
        require(accountInfo[_newRecipient].shares == 0, "Owner: New recipient has existing shares");

        // Copy shares to new recipient
        accountInfo[_newRecipient].shares = accountInfo[_currentRecipient].shares;
        accountInfo[_newRecipient].tokensDistributedToAccount = accountInfo[_currentRecipient]
            .tokensDistributedToAccount;

        // Add new account into array
        accounts.push(_newRecipient);

        // Reset existing shares
        accountInfo[_currentRecipient].shares = 0;
        accountInfo[_currentRecipient].tokensDistributedToAccount = 0;
        accountInfo[_currentRecipient].active = false;
        emit NewSharesOwner(_currentRecipient, _newRecipient);
    }

    function addNewAccount(address _account) external onlyOwner {
        require(_account != address(0), "invalid address");
        require(accountInfo[_account].active == false, "account already exist");
        accountInfo[_account].shares = 0;
        accountInfo[_account].active = true;
        accounts.push(_account);

        emit NewAccount(_account);
    }

    function updateShareDistribution(address[] memory _accounts, uint256[] memory _shares)
        external
        onlyOwner
    {
        require(_accounts.length == _shares.length, "Splitter: Length differ");
        require(_accounts.length > 0, "Splitter: Length must be > 0");

        // release token based on current share before update
        releaseTokens();

        for (uint256 i = 0; i < _accounts.length; i++) {
            AccountInfo storage account = accountInfo[_accounts[i]];
            require(account.active == true, "invalid account");
            if (account.shares != _shares[i]) {
                account.shares = _shares[i];
            }
        }

        // Verify if all existing accounts still add up to TOTAL_SHARE
        uint256 currentShares;
        for (uint256 i = 0; i < accounts.length; i++) {
            currentShares += accountInfo[accounts[i]].shares;
        }
        require(currentShares == TOTAL_SHARES, "total existing account share != TOTAL_SHARES");

        emit UpdateShareDistribution(_accounts, _shares);
    }

    /**
     * @notice Retrieve amount of MTD tokens that can be transferred
     * @param account address of the account
     */
    function calculatePendingRewards(address account) external view returns (uint256) {
        if (accountInfo[account].shares == 0) {
            return 0;
        }

        uint256 mtdBal = mintedToken.balanceOf(address(this));
        uint256 pendingRewards = (mtdBal * accountInfo[account].shares) / TOTAL_SHARES;

        return pendingRewards;
    }
}

File 2 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 8 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 4 of 8 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 5 of 8 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 6 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 7 of 8 : draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 8 of 8 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"},{"internalType":"uint256[]","name":"_shares","type":"uint256[]"},{"internalType":"address","name":"_mintedToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"NewAccount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldRecipient","type":"address"},{"indexed":true,"internalType":"address","name":"newRecipient","type":"address"}],"name":"NewSharesOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"shares","type":"uint256[]"}],"name":"UpdateShareDistribution","type":"event"},{"inputs":[],"name":"TOTAL_SHARES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"accountInfo","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"tokensDistributedToAccount","type":"uint256"},{"internalType":"bool","name":"active","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"accounts","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"addNewAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"calculatePendingRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastReleaseTokensBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"releaseTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalTokensDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"},{"internalType":"uint256[]","name":"_shares","type":"uint256[]"}],"name":"updateShareDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newRecipient","type":"address"},{"internalType":"address","name":"_currentRecipient","type":"address"}],"name":"updateSharesOwner","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b50604051620019aa380380620019aa833981016040819052620000349162000458565b6200003f3362000374565b6001805581518351146200009a5760405162461bcd60e51b815260206004820152601760248201527f53706c69747465723a204c656e6774682064696666657200000000000000000060448201526064015b60405180910390fd5b6000835111620000ed5760405162461bcd60e51b815260206004820152601c60248201527f53706c69747465723a204c656e677468206d757374206265203e203000000000604482015260640162000091565b6000805b8451811015620003065760008482815181106200011e57634e487b7160e01b600052603260045260246000fd5b602002602001015111620001755760405162461bcd60e51b815260206004820152601660248201527f53706c69747465723a2053686172657320617265203000000000000000000000604482015260640162000091565b8381815181106200019657634e487b7160e01b600052603260045260246000fd5b602002602001015182620001ab919062000594565b9150838181518110620001ce57634e487b7160e01b600052603260045260246000fd5b602002602001015160056000878481518110620001fb57634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020600001819055506001600560008784815181106200025157634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060020160006101000a81548160ff0219169083151502179055506004858281518110620002b657634e487b7160e01b600052603260045260246000fd5b60209081029190910181015182546001810184556000938452919092200180546001600160a01b0319166001600160a01b0390921691909117905580620002fd81620005af565b915050620000f1565b5061271081146200035a5760405162461bcd60e51b815260206004820152601a60248201527f696e76616c696420736861726520646973747269627574696f6e000000000000604482015260640162000091565b5060601b6001600160601b03191660805250620005f99050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b0381168114620003dc57600080fd5b919050565b600082601f830112620003f2578081fd5b815160206200040b62000405836200056e565b6200053b565b80838252828201915082860187848660051b89010111156200042b578586fd5b855b858110156200044b578151845292840192908401906001016200042d565b5090979650505050505050565b6000806000606084860312156200046d578283fd5b83516001600160401b038082111562000484578485fd5b818601915086601f83011262000498578485fd5b81516020620004ab62000405836200056e565b8083825282820191508286018b848660051b8901011115620004cb57898afd5b8996505b84871015620004f857620004e381620003c4565b835260019690960195918301918301620004cf565b509189015191975090935050508082111562000512578384fd5b506200052186828701620003e1565b9250506200053260408501620003c4565b90509250925092565b604051601f8201601f191681016001600160401b0381118282101715620005665762000566620005e3565b604052919050565b60006001600160401b038211156200058a576200058a620005e3565b5060051b60200190565b60008219821115620005aa57620005aa620005cd565b500190565b6000600019821415620005c657620005c6620005cd565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b60805160601c61137d6200062d600039600081816101370152818161027d015281816109a30152610af5015261137d6000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063a5f346e61161008c578063cfd7f40b11610066578063cfd7f40b14610208578063d8f163ab14610211578063f2a40db81461021a578063f2fde38b1461022d57600080fd5b8063a5f346e61461019e578063a7310b58146101b1578063a96f86681461020057600080fd5b80638542925a116100c85780638542925a1461013257806385e3f997146101715780638da5cb5b1461017a578063962be7111461018b57600080fd5b8063097aad10146100ef57806319281afd14610115578063715018a61461012a575b600080fd5b6101026100fd366004611002565b610240565b6040519081526020015b60405180910390f35b61012861012336600461101c565b61033c565b005b6101286104e3565b6101597f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161010c565b61010261271081565b6000546001600160a01b0316610159565b61012861019936600461104e565b6104f7565b6101286101ac366004611002565b6107db565b6101e36101bf366004611002565b60056020526000908152604090208054600182015460029092015490919060ff1683565b60408051938452602084019290925215159082015260600161010c565b610128610921565b61010260025481565b61010260035481565b61015961022836600461112f565b610b7e565b61012861023b366004611002565b610ba8565b6001600160a01b03811660009081526005602052604081205461026557506000919050565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a082319060240160206040518083038186803b1580156102c757600080fd5b505afa1580156102db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102ff9190611147565b6001600160a01b038416600090815260056020526040812054919250906127109061032a90846112b1565b6103349190611291565b949350505050565b610344610c21565b6001600160a01b0381166000908152600560205260409020546103bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e65723a2043757272656e7420726563697069656e7420686173206e6f2060448201526573686172657360d01b60648201526084015b60405180910390fd5b6001600160a01b038216600090815260056020526040902054156104345760405162461bcd60e51b815260206004820152602860248201527f4f776e65723a204e657720726563697069656e7420686173206578697374696e604482015267672073686172657360c01b60648201526084016103b4565b6001600160a01b03808216600081815260056020526040808220805494871680845282842095865560018083018054978201979097556004805491820190557f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0319168217905584845283825594839055600201805460ff19169055517f47eba4993da31bfed0680c802fb8577f1a9d57bb4c0881372fbe7ad29995a8809190a35050565b6104eb610c21565b6104f56000610c7b565b565b6104ff610c21565b80518251146105505760405162461bcd60e51b815260206004820152601760248201527f53706c69747465723a204c656e6774682064696666657200000000000000000060448201526064016103b4565b60008251116105a15760405162461bcd60e51b815260206004820152601c60248201527f53706c69747465723a204c656e677468206d757374206265203e20300000000060448201526064016103b4565b6105a9610921565b60005b82518110156106bf576000600560008584815181106105db57634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020600281015490915060ff16151560011461064c5760405162461bcd60e51b815260206004820152600f60248201526e1a5b9d985b1a59081858d8dbdd5b9d608a1b60448201526064016103b4565b82828151811061066c57634e487b7160e01b600052603260045260246000fd5b60200260200101518160000154146106ac5782828151811061069e57634e487b7160e01b600052603260045260246000fd5b602090810291909101015181555b50806106b781611300565b9150506105ac565b506000805b6004548110156107365760056000600483815481106106f357634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020546107229083611279565b91508061072e81611300565b9150506106c4565b50612710811461079d5760405162461bcd60e51b815260206004820152602c60248201527f746f74616c206578697374696e67206163636f756e7420736861726520213d2060448201526b544f54414c5f53484152455360a01b60648201526084016103b4565b7f72b7bfa8d665e354a1490c7a1465cee8cbbd99b78d369919cc8a10ca9ab816b283836040516107ce92919061117b565b60405180910390a1505050565b6107e3610c21565b6001600160a01b03811661082b5760405162461bcd60e51b815260206004820152600f60248201526e696e76616c6964206164647265737360881b60448201526064016103b4565b6001600160a01b03811660009081526005602052604090206002015460ff161561088f5760405162461bcd60e51b81526020600482015260156024820152741858d8dbdd5b9d08185b1c9958591e48195e1a5cdd605a1b60448201526064016103b4565b6001600160a01b038116600081815260056020526040808220828155600201805460ff1916600190811790915560048054918201815583527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b03191684179055517fef4ab4f35cd2027fcc6364f430a86765b6bbd24462cd31f5a6d09bb74241aaf19190a250565b600260015414156109745760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103b4565b6002600181905554431161098757610b78565b436002556040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a082319060240160206040518083038186803b1580156109ed57600080fd5b505afa158015610a01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a259190611147565b905060005b600454811015610b7557600060048281548110610a5757634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168083526005909152604082205490925061271090610a8c90866112b1565b610a969190611291565b90508015610b60576001600160a01b03821660009081526005602052604081206001018054839290610ac9908490611279565b925050819055508060036000828254610ae29190611279565b90915550610b1c90506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168383610ccb565b816001600160a01b03167f12f4533b5cbd2c9f8a0752a2d0b16379af992dbb2a0844a5007a19d983b3a93482604051610b5791815260200190565b60405180910390a25b50508080610b6d90611300565b915050610a2a565b50505b60018055565b60048181548110610b8e57600080fd5b6000918252602090912001546001600160a01b0316905081565b610bb0610c21565b6001600160a01b038116610c155760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103b4565b610c1e81610c7b565b50565b6000546001600160a01b031633146104f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103b4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610d1d908490610d22565b505050565b6000610d77826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610df49092919063ffffffff16565b805190915015610d1d5780806020019051810190610d95919061110f565b610d1d5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016103b4565b6060610e038484600085610e0d565b90505b9392505050565b606082471015610e6e5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016103b4565b6001600160a01b0385163b610ec55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016103b4565b600080866001600160a01b03168587604051610ee1919061115f565b60006040518083038185875af1925050503d8060008114610f1e576040519150601f19603f3d011682016040523d82523d6000602084013e610f23565b606091505b5091509150610f33828286610f3e565b979650505050505050565b60608315610f4d575081610e06565b825115610f5d5782518084602001fd5b8160405162461bcd60e51b81526004016103b491906111f1565b80356001600160a01b0381168114610f8e57600080fd5b919050565b600082601f830112610fa3578081fd5b81356020610fb8610fb383611255565b611224565b80838252828201915082860187848660051b8901011115610fd7578586fd5b855b85811015610ff557813584529284019290840190600101610fd9565b5090979650505050505050565b600060208284031215611013578081fd5b610e0682610f77565b6000806040838503121561102e578081fd5b61103783610f77565b915061104560208401610f77565b90509250929050565b60008060408385031215611060578182fd5b823567ffffffffffffffff80821115611077578384fd5b818501915085601f83011261108a578384fd5b8135602061109a610fb383611255565b8083825282820191508286018a848660051b89010111156110b9578889fd5b8896505b848710156110e2576110ce81610f77565b8352600196909601959183019183016110bd565b50965050860135925050808211156110f8578283fd5b5061110585828601610f93565b9150509250929050565b600060208284031215611120578081fd5b81518015158114610e06578182fd5b600060208284031215611140578081fd5b5035919050565b600060208284031215611158578081fd5b5051919050565b600082516111718184602087016112d0565b9190910192915050565b604080825283519082018190526000906020906060840190828701845b828110156111bd5781516001600160a01b031684529284019290840190600101611198565b50505083810382850152845180825285830191830190845b81811015610ff5578351835292840192918401916001016111d5565b60208152600082518060208401526112108160408501602087016112d0565b601f01601f19169190910160400192915050565b604051601f8201601f1916810167ffffffffffffffff8111828210171561124d5761124d611331565b604052919050565b600067ffffffffffffffff82111561126f5761126f611331565b5060051b60200190565b6000821982111561128c5761128c61131b565b500190565b6000826112ac57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156112cb576112cb61131b565b500290565b60005b838110156112eb5781810151838201526020016112d3565b838111156112fa576000848401525b50505050565b60006000198214156113145761131461131b565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220574212f5c0bebab9dfd0e3e379cc9a34dabe10fac575c2f869d132753636269564736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000224010ba2d567ffa014222ed960d1fa43b8c8e10000000000000000000000000000000000000000000000000000000000000002000000000000000000000000195b8fb58e9e8df10c7f08daa05efdc39ccd9bdc000000000000000000000000ffb43be7b3ee6f82354aef7fa266a29796fca4b5000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000001388

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063a5f346e61161008c578063cfd7f40b11610066578063cfd7f40b14610208578063d8f163ab14610211578063f2a40db81461021a578063f2fde38b1461022d57600080fd5b8063a5f346e61461019e578063a7310b58146101b1578063a96f86681461020057600080fd5b80638542925a116100c85780638542925a1461013257806385e3f997146101715780638da5cb5b1461017a578063962be7111461018b57600080fd5b8063097aad10146100ef57806319281afd14610115578063715018a61461012a575b600080fd5b6101026100fd366004611002565b610240565b6040519081526020015b60405180910390f35b61012861012336600461101c565b61033c565b005b6101286104e3565b6101597f0000000000000000000000000224010ba2d567ffa014222ed960d1fa43b8c8e181565b6040516001600160a01b03909116815260200161010c565b61010261271081565b6000546001600160a01b0316610159565b61012861019936600461104e565b6104f7565b6101286101ac366004611002565b6107db565b6101e36101bf366004611002565b60056020526000908152604090208054600182015460029092015490919060ff1683565b60408051938452602084019290925215159082015260600161010c565b610128610921565b61010260025481565b61010260035481565b61015961022836600461112f565b610b7e565b61012861023b366004611002565b610ba8565b6001600160a01b03811660009081526005602052604081205461026557506000919050565b6040516370a0823160e01b81523060048201526000907f0000000000000000000000000224010ba2d567ffa014222ed960d1fa43b8c8e16001600160a01b0316906370a082319060240160206040518083038186803b1580156102c757600080fd5b505afa1580156102db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102ff9190611147565b6001600160a01b038416600090815260056020526040812054919250906127109061032a90846112b1565b6103349190611291565b949350505050565b610344610c21565b6001600160a01b0381166000908152600560205260409020546103bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e65723a2043757272656e7420726563697069656e7420686173206e6f2060448201526573686172657360d01b60648201526084015b60405180910390fd5b6001600160a01b038216600090815260056020526040902054156104345760405162461bcd60e51b815260206004820152602860248201527f4f776e65723a204e657720726563697069656e7420686173206578697374696e604482015267672073686172657360c01b60648201526084016103b4565b6001600160a01b03808216600081815260056020526040808220805494871680845282842095865560018083018054978201979097556004805491820190557f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0319168217905584845283825594839055600201805460ff19169055517f47eba4993da31bfed0680c802fb8577f1a9d57bb4c0881372fbe7ad29995a8809190a35050565b6104eb610c21565b6104f56000610c7b565b565b6104ff610c21565b80518251146105505760405162461bcd60e51b815260206004820152601760248201527f53706c69747465723a204c656e6774682064696666657200000000000000000060448201526064016103b4565b60008251116105a15760405162461bcd60e51b815260206004820152601c60248201527f53706c69747465723a204c656e677468206d757374206265203e20300000000060448201526064016103b4565b6105a9610921565b60005b82518110156106bf576000600560008584815181106105db57634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020600281015490915060ff16151560011461064c5760405162461bcd60e51b815260206004820152600f60248201526e1a5b9d985b1a59081858d8dbdd5b9d608a1b60448201526064016103b4565b82828151811061066c57634e487b7160e01b600052603260045260246000fd5b60200260200101518160000154146106ac5782828151811061069e57634e487b7160e01b600052603260045260246000fd5b602090810291909101015181555b50806106b781611300565b9150506105ac565b506000805b6004548110156107365760056000600483815481106106f357634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b031683528201929092526040019020546107229083611279565b91508061072e81611300565b9150506106c4565b50612710811461079d5760405162461bcd60e51b815260206004820152602c60248201527f746f74616c206578697374696e67206163636f756e7420736861726520213d2060448201526b544f54414c5f53484152455360a01b60648201526084016103b4565b7f72b7bfa8d665e354a1490c7a1465cee8cbbd99b78d369919cc8a10ca9ab816b283836040516107ce92919061117b565b60405180910390a1505050565b6107e3610c21565b6001600160a01b03811661082b5760405162461bcd60e51b815260206004820152600f60248201526e696e76616c6964206164647265737360881b60448201526064016103b4565b6001600160a01b03811660009081526005602052604090206002015460ff161561088f5760405162461bcd60e51b81526020600482015260156024820152741858d8dbdd5b9d08185b1c9958591e48195e1a5cdd605a1b60448201526064016103b4565b6001600160a01b038116600081815260056020526040808220828155600201805460ff1916600190811790915560048054918201815583527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b03191684179055517fef4ab4f35cd2027fcc6364f430a86765b6bbd24462cd31f5a6d09bb74241aaf19190a250565b600260015414156109745760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103b4565b6002600181905554431161098757610b78565b436002556040516370a0823160e01b81523060048201526000907f0000000000000000000000000224010ba2d567ffa014222ed960d1fa43b8c8e16001600160a01b0316906370a082319060240160206040518083038186803b1580156109ed57600080fd5b505afa158015610a01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a259190611147565b905060005b600454811015610b7557600060048281548110610a5757634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168083526005909152604082205490925061271090610a8c90866112b1565b610a969190611291565b90508015610b60576001600160a01b03821660009081526005602052604081206001018054839290610ac9908490611279565b925050819055508060036000828254610ae29190611279565b90915550610b1c90506001600160a01b037f0000000000000000000000000224010ba2d567ffa014222ed960d1fa43b8c8e1168383610ccb565b816001600160a01b03167f12f4533b5cbd2c9f8a0752a2d0b16379af992dbb2a0844a5007a19d983b3a93482604051610b5791815260200190565b60405180910390a25b50508080610b6d90611300565b915050610a2a565b50505b60018055565b60048181548110610b8e57600080fd5b6000918252602090912001546001600160a01b0316905081565b610bb0610c21565b6001600160a01b038116610c155760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103b4565b610c1e81610c7b565b50565b6000546001600160a01b031633146104f55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103b4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610d1d908490610d22565b505050565b6000610d77826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610df49092919063ffffffff16565b805190915015610d1d5780806020019051810190610d95919061110f565b610d1d5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016103b4565b6060610e038484600085610e0d565b90505b9392505050565b606082471015610e6e5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016103b4565b6001600160a01b0385163b610ec55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016103b4565b600080866001600160a01b03168587604051610ee1919061115f565b60006040518083038185875af1925050503d8060008114610f1e576040519150601f19603f3d011682016040523d82523d6000602084013e610f23565b606091505b5091509150610f33828286610f3e565b979650505050505050565b60608315610f4d575081610e06565b825115610f5d5782518084602001fd5b8160405162461bcd60e51b81526004016103b491906111f1565b80356001600160a01b0381168114610f8e57600080fd5b919050565b600082601f830112610fa3578081fd5b81356020610fb8610fb383611255565b611224565b80838252828201915082860187848660051b8901011115610fd7578586fd5b855b85811015610ff557813584529284019290840190600101610fd9565b5090979650505050505050565b600060208284031215611013578081fd5b610e0682610f77565b6000806040838503121561102e578081fd5b61103783610f77565b915061104560208401610f77565b90509250929050565b60008060408385031215611060578182fd5b823567ffffffffffffffff80821115611077578384fd5b818501915085601f83011261108a578384fd5b8135602061109a610fb383611255565b8083825282820191508286018a848660051b89010111156110b9578889fd5b8896505b848710156110e2576110ce81610f77565b8352600196909601959183019183016110bd565b50965050860135925050808211156110f8578283fd5b5061110585828601610f93565b9150509250929050565b600060208284031215611120578081fd5b81518015158114610e06578182fd5b600060208284031215611140578081fd5b5035919050565b600060208284031215611158578081fd5b5051919050565b600082516111718184602087016112d0565b9190910192915050565b604080825283519082018190526000906020906060840190828701845b828110156111bd5781516001600160a01b031684529284019290840190600101611198565b50505083810382850152845180825285830191830190845b81811015610ff5578351835292840192918401916001016111d5565b60208152600082518060208401526112108160408501602087016112d0565b601f01601f19169190910160400192915050565b604051601f8201601f1916810167ffffffffffffffff8111828210171561124d5761124d611331565b604052919050565b600067ffffffffffffffff82111561126f5761126f611331565b5060051b60200190565b6000821982111561128c5761128c61131b565b500190565b6000826112ac57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156112cb576112cb61131b565b500290565b60005b838110156112eb5781810151838201526020016112d3565b838111156112fa576000848401525b50505050565b60006000198214156113145761131461131b565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea2646970667358221220574212f5c0bebab9dfd0e3e379cc9a34dabe10fac575c2f869d132753636269564736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000224010ba2d567ffa014222ed960d1fa43b8c8e10000000000000000000000000000000000000000000000000000000000000002000000000000000000000000195b8fb58e9e8df10c7f08daa05efdc39ccd9bdc000000000000000000000000ffb43be7b3ee6f82354aef7fa266a29796fca4b5000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000001388

-----Decoded View---------------
Arg [0] : _accounts (address[]): 0x195B8fb58e9E8Df10c7F08daA05efdc39cCd9bdC,0xFFb43BE7B3ee6f82354aEF7FA266A29796fca4B5
Arg [1] : _shares (uint256[]): 5000,5000
Arg [2] : _mintedToken (address): 0x0224010BA2d567ffa014222eD960D1fa43B8C8E1

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000224010ba2d567ffa014222ed960d1fa43b8c8e1
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [4] : 000000000000000000000000195b8fb58e9e8df10c7f08daa05efdc39ccd9bdc
Arg [5] : 000000000000000000000000ffb43be7b3ee6f82354aef7fa266a29796fca4b5
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [8] : 0000000000000000000000000000000000000000000000000000000000001388


Block Transaction Gas Used Reward
view all blocks validated

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
[ 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.