ETH Price: $3,242.70 (+1.78%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Withdraw211562882024-11-10 9:11:5981 days ago1731229919IN
0x03dBdf7B...A691eE88a
0 ETH0.0035289113.46211068
Withdraw210730752024-10-29 18:26:1193 days ago1730226371IN
0x03dBdf7B...A691eE88a
0 ETH0.0015318113.73894842
Withdraw210540372024-10-27 2:40:3596 days ago1729996835IN
0x03dBdf7B...A691eE88a
0 ETH0.000406513.25542879
Withdraw209841362024-10-17 8:37:23105 days ago1729154243IN
0x03dBdf7B...A691eE88a
0 ETH0.0034617724.86658726
Withdraw209052552024-10-06 8:15:35116 days ago1728202535IN
0x03dBdf7B...A691eE88a
0 ETH0.000702725.64730503
Withdraw208555042024-09-29 9:49:23123 days ago1727603363IN
0x03dBdf7B...A691eE88a
0 ETH0.000903316.27977041
Withdraw208467892024-09-28 4:37:23125 days ago1727498243IN
0x03dBdf7B...A691eE88a
0 ETH0.000873677.07425626
Withdraw208080742024-09-22 19:00:59130 days ago1727031659IN
0x03dBdf7B...A691eE88a
0 ETH0.0018324614.9495912
Withdraw208052572024-09-22 9:35:35130 days ago1726997735IN
0x03dBdf7B...A691eE88a
0 ETH0.0021792117.57967451
Withdraw208009652024-09-21 19:12:59131 days ago1726945979IN
0x03dBdf7B...A691eE88a
0 ETH0.0017100911.92766022
Withdraw207925202024-09-20 14:52:59132 days ago1726843979IN
0x03dBdf7B...A691eE88a
0 ETH0.0020723318.98226077
Withdraw207851152024-09-19 14:03:47133 days ago1726754627IN
0x03dBdf7B...A691eE88a
0 ETH0.0027836825.60368011
Withdraw207844452024-09-19 11:48:59133 days ago1726746539IN
0x03dBdf7B...A691eE88a
0 ETH0.002398916.73200226
Withdraw207841652024-09-19 10:52:47133 days ago1726743167IN
0x03dBdf7B...A691eE88a
0 ETH0.0031043624.58474898
Withdraw207540822024-09-15 5:59:59138 days ago1726379999IN
0x03dBdf7B...A691eE88a
0 ETH0.000213241.49215512
Withdraw206496112024-08-31 16:01:35152 days ago1725120095IN
0x03dBdf7B...A691eE88a
0 ETH0.000234621.74416149
Deposit206237592024-08-28 1:18:59156 days ago1724807939IN
0x03dBdf7B...A691eE88a
0 ETH0.000187951.33600822
Withdraw206237242024-08-28 1:11:59156 days ago1724807519IN
0x03dBdf7B...A691eE88a
0 ETH0.000451323.35479329
Withdraw205969242024-08-24 7:19:35159 days ago1724483975IN
0x03dBdf7B...A691eE88a
0 ETH0.00019451.30673692
Deposit205838612024-08-22 11:31:35161 days ago1724326295IN
0x03dBdf7B...A691eE88a
0 ETH0.00029141.85780437
Withdraw205765862024-08-21 11:05:35162 days ago1724238335IN
0x03dBdf7B...A691eE88a
0 ETH0.000225021.71420959
Deposit205644942024-08-19 18:34:59164 days ago1724092499IN
0x03dBdf7B...A691eE88a
0 ETH0.000372012.3715046
Withdraw205492682024-08-17 15:33:47166 days ago1723908827IN
0x03dBdf7B...A691eE88a
0 ETH0.000510583.40910799
Deposit205474172024-08-17 9:21:59166 days ago1723886519IN
0x03dBdf7B...A691eE88a
0 ETH0.000161031.03274635
Deposit204840302024-08-08 13:01:11175 days ago1723122071IN
0x03dBdf7B...A691eE88a
0 ETH0.0017626610.70906459
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xF743E4Cf...A785932C5
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Staking

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 1000 runs

Other Settings:
paris EvmVersion
File 1 of 6 : Staking.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;

import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {IStaking} from "./IStaking.sol";

/**
 *  ____                             _ 
 * |  _ \    ___  __  __   ___    __| |
 * | | | |  / _ \ \ \/ /  / _ \  / _` |
 * | |_| | |  __/  >  <  |  __/ | (_| |
 * |____/   \___| /_/\_\  \___|  \__,_|
 * 
 * All in one DeFi suite for traders & Degens
 *
 * @title $DEXED staking contract
 * @author https://dexed.io
 * @notice Stake your $DEXED and receive airdrop points
 * @custom:website https://dexed.io
 * @custom:telegram https://t.me/dexed_app
 * @custom:twitter https://twitter.com/DexedApp
 * @custom:docs https://docs.dexed.io
 */
contract Staking is IStaking{
    /// @openzeppelin's SafeTransfer library
    using SafeERC20 for IERC20;

    /// @notice Dexed token contract address in mainnet
    address public constant DEXED_TOKEN = 0x6dD5F0038474dC29A0ADc6aD34d37B0Ba53E5435;

    /// @notice When epochs starts
    uint32 public constant EPOCH_STARTS = 1712574000;

    /// @notice How long epoch in seconds?
    uint24 public constant EPOCH_DURATION = 7 days;

    /// @notice When staking ends
    uint32 public immutable epochEnds;

    /// @notice Points divider
    uint24 public immutable divider;

    /// @notice Minimal staking period to get rewards
    uint24 public immutable period;
    
    /// @notice How many epochs it will be?
    uint8 public immutable totalEpochs;

    /// @notice User's deposits
    mapping(address => uint128) public deposited;

    /// @notice User's airdrop points
    mapping(address => uint128) public claimed;

    /// @notice User's last action timestamp in seconds (deposit, withdraw or claim)
    mapping(address => uint32) public lastActionAt;

    /** 
     * @notice Executes ones on deploy
     * @param _divider Pool rewards divider
     * @param _totalEpochs How many epochs it will be
     */
    constructor(uint24 _divider, uint8 _totalEpochs, uint24 _period) {
        // Check values
        if (_divider == 0) revert ZeroAmount();
        if (_totalEpochs == 0) revert ZeroAmount();
        if (_period == 0) revert ZeroAmount();
        // Set values
        divider = _divider;
        totalEpochs = _totalEpochs;
        period = _period;
        // Calc last timestamp
        epochEnds = uint32(EPOCH_DURATION) * uint32(_totalEpochs) + uint32(EPOCH_STARTS);
    }

    /**
     * @notice Deposit DEXED token to staking contract
     * @param amount Deposit amount in DEXED tokens
     */
    function deposit(uint128 amount) external {
        if (block.timestamp < EPOCH_STARTS) revert StakingIsNotStartedYet();
        if (block.timestamp > epochEnds) revert StakingEnded();
        // Deposit processing 
        uint128 _claimed = _claim(); 
        IERC20(DEXED_TOKEN).safeTransferFrom(msg.sender, address(this), amount);
        deposited[msg.sender] += amount;
        lastActionAt[msg.sender] = uint32(block.timestamp);
        // Notify services
        emit Deposit(msg.sender, amount, _claimed);
    }

    /**
     * @notice Withdraw DEXED token from staking contract
     * @param amount Withdraw amount in DEXED tokens
     */
    function withdraw(uint128 amount) external {
        if (block.timestamp < EPOCH_STARTS) revert StakingIsNotStartedYet();
        if (deposited[msg.sender] < amount) revert AmountTooBig();
        if (block.timestamp < (period + lastActionAt[msg.sender])) revert StakingPeriodIsNotOver();
        // Withdraw processing
        uint128 _claimed = _claim();
        IERC20(DEXED_TOKEN).safeTransfer(msg.sender, amount);
        deposited[msg.sender] -= amount;
        lastActionAt[msg.sender] = uint32(block.timestamp);
        // Notify services
        emit Withdraw(msg.sender, amount, _claimed);
    }

    /**
     * @notice Get current epoch
     * @return Epoch number
     */
    function currentEpoch() external view returns (uint8) {
        return _getEpoch(0);
    }

    /**
     * @notice Total points amount of the user
     * @param user Address of the user
     * @return Total points amount
     */
    function totalPoints(address user) external view returns (uint128) {
        return _claimable(user) + claimed[user];
    }

    /**
     * @dev Claims processing
     * @return points Claimed points
     */
    function _claim() internal returns (uint128 points) {
        points = _claimable(msg.sender);
        claimed[msg.sender] += points;
        lastActionAt[msg.sender] = uint32(block.timestamp);
    }

    /**
     * @dev Get epoch by timestamp
     * @param timestamp Timestamp in seconds (0 => current timestamp)
     * @return epoch Epoch number
     */
    function _getEpoch(uint32 timestamp) internal view returns (uint8 epoch) {
        if (timestamp == 0) timestamp = uint32(block.timestamp);
        if (epochEnds <= timestamp) epoch = totalEpochs;
        else if (timestamp <= EPOCH_STARTS) epoch = 0;
        else {
            for(; epoch < totalEpochs;) {
                if (timestamp >= EPOCH_STARTS + (uint32(EPOCH_DURATION) * uint32(epoch + 1))) ++epoch;
                else break;
            }
        }
    }

    /**
     * @dev Get claimable points
     * @param user User address
     * @return Points amount
     */
    function _claimable(address user) internal view returns (uint128) {
        return (_getEpoch(0) - _getEpoch(lastActionAt[user])) * (deposited[user] / divider);
    }
}

File 2 of 6 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.20;

/**
 * @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.
 *
 * ==== Security Considerations
 *
 * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
 * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
 * considered as an intention to spend the allowance in any specific way. The second is that because permits have
 * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
 * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
 * generally recommended is:
 *
 * ```solidity
 * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
 *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
 *     doThing(..., value);
 * }
 *
 * function doThing(..., uint256 value) public {
 *     token.safeTransferFrom(msg.sender, address(this), value);
 *     ...
 * }
 * ```
 *
 * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
 * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
 * {SafeERC20-safeTransferFrom}).
 *
 * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
 * contracts should have entry points that don't rely on permit.
 */
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].
     *
     * CAUTION: See Security Considerations above.
     */
    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 3 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

File 4 of 6 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";
import {IERC20Permit} from "../extensions/IERC20Permit.sol";
import {Address} from "../../../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;

    /**
     * @dev An operation with an ERC20 token failed.
     */
    error SafeERC20FailedOperation(address token);

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        forceApprove(token, spender, oldAllowance + value);
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
     * value, non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
        unchecked {
            uint256 currentAllowance = token.allowance(address(this), spender);
            if (currentAllowance < requestedDecrease) {
                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
            }
            forceApprove(token, spender, currentAllowance - requestedDecrease);
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @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);
        if (returndata.length != 0 && !abi.decode(returndata, (bool))) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @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).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // 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 cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0;
    }
}

File 5 of 6 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @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://consensys.net/diligence/blog/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.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @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 or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * 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.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @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`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // 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 FailedInnerCall();
        }
    }
}

File 6 of 6 : IStaking.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.24;

interface IStaking {
    event Deposit(address indexed user, uint128 amount, uint128 claimed);
    event Withdraw(address indexed user, uint128 amount, uint128 claimed);

    error ZeroAmount();
    error StakingEnded();
    error StakingIsNotStartedYet();
    error AmountTooBig();
    error StakingPeriodIsNotOver();

    function deposit(uint128 amount) external;
    function withdraw(uint128 amount) external;
    function currentEpoch() external view returns (uint8);
    function totalPoints(address user) external view returns (uint128);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint24","name":"_divider","type":"uint24"},{"internalType":"uint8","name":"_totalEpochs","type":"uint8"},{"internalType":"uint24","name":"_period","type":"uint24"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"AmountTooBig","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"StakingEnded","type":"error"},{"inputs":[],"name":"StakingIsNotStartedYet","type":"error"},{"inputs":[],"name":"StakingPeriodIsNotOver","type":"error"},{"inputs":[],"name":"ZeroAmount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint128","name":"amount","type":"uint128"},{"indexed":false,"internalType":"uint128","name":"claimed","type":"uint128"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint128","name":"amount","type":"uint128"},{"indexed":false,"internalType":"uint128","name":"claimed","type":"uint128"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"DEXED_TOKEN","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EPOCH_DURATION","outputs":[{"internalType":"uint24","name":"","type":"uint24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EPOCH_STARTS","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentEpoch","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint128","name":"amount","type":"uint128"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"deposited","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"divider","outputs":[{"internalType":"uint24","name":"","type":"uint24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epochEnds","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastActionAt","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"period","outputs":[{"internalType":"uint24","name":"","type":"uint24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalEpochs","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"totalPoints","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint128","name":"amount","type":"uint128"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c80636c5ec94d1161008c578063a70b9f0c11610066578063a70b9f0c14610263578063c884ef831461026d578063cb13cddb14610296578063ef78d4fd146102bf57600080fd5b80636c5ec94d146101ef57806376671808146102285780639d4320311461023057600080fd5b806341346be7116100c857806341346be71461016f57806346b4f7021461018f57806348a15a73146101b557806354469aea146101dc57600080fd5b806302387a7b146100ef5780630fac910014610104578063378efa3714610134575b600080fd5b6101026100fd366004610b50565b6102e6565b005b610117610112366004610b79565b6104c7565b6040516001600160801b0390911681526020015b60405180910390f35b61015b7f0000000000000000000000000000000000000000000000000000000000004e2081565b60405162ffffff909116815260200161012b565b61017a636613ce3081565b60405163ffffffff909116815260200161012b565b61017a61019d366004610b79565b60026020526000908152604090205463ffffffff1681565b61017a7f0000000000000000000000000000000000000000000000000000000066d59ab081565b6101026101ea366004610b50565b610502565b6102167f000000000000000000000000000000000000000000000000000000000000001581565b60405160ff909116815260200161012b565b610216610663565b61024b736dd5f0038474dc29a0adc6ad34d37b0ba53e543581565b6040516001600160a01b03909116815260200161012b565b61015b62093a8081565b61011761027b366004610b79565b6001602052600090815260409020546001600160801b031681565b6101176102a4366004610b79565b6000602081905290815260409020546001600160801b031681565b61015b7f000000000000000000000000000000000000000000000000000000000076a70081565b636613ce3042101561030b57604051631dc526ff60e01b815260040160405180910390fd5b336000908152602081905260409020546001600160801b0380831691161015610360576040517f6b2f218300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000908152600260205260409020546103a59063ffffffff1662ffffff7f000000000000000000000000000000000000000000000000000000000076a70016610bb8565b63ffffffff164210156103e4576040517f35daa63400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006103ee610674565b9050610418736dd5f0038474dc29a0adc6ad34d37b0ba53e5435336001600160801b0385166106f5565b33600090815260208190526040812080548492906104409084906001600160801b0316610bdc565b82546101009290920a6001600160801b0381810219909316918316021790915533600081815260026020908152604091829020805463ffffffff19164263ffffffff1617905581518785168152938616908401529092507f21aa6419b13c9ff9c675d07920f191d27ef8ae6810c6f4a1cc447b5878af7ed691015b60405180910390a25050565b6001600160a01b0381166000908152600160205260408120546001600160801b03166104f28361076e565b6104fc9190610bfc565b92915050565b636613ce3042101561052757604051631dc526ff60e01b815260040160405180910390fd5b7f0000000000000000000000000000000000000000000000000000000066d59ab063ffffffff16421115610587576040517f12776a0700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610591610674565b90506105bc736dd5f0038474dc29a0adc6ad34d37b0ba53e543533306001600160801b038616610809565b33600090815260208190526040812080548492906105e49084906001600160801b0316610bfc565b82546101009290920a6001600160801b0381810219909316918316021790915533600081815260026020908152604091829020805463ffffffff19164263ffffffff1617905581518785168152938616908401529092507fe2e5fc3c05cb3137a63360de89a5237ed4bf321e300be4c1c543170ed5a7250d91016104bb565b600061066f6000610848565b905090565b600061067f3361076e565b336000908152600160205260408120805492935083929091906106ac9084906001600160801b0316610bfc565b82546101009290920a6001600160801b0381810219909316919092169190910217905550336000908152600260205260409020805463ffffffff19164263ffffffff1617905590565b6040516001600160a01b0383811660248301526044820183905261076991859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061094d565b505050565b6001600160a01b0381166000908152602081905260408120546107c09062ffffff7f0000000000000000000000000000000000000000000000000000000000004e2016906001600160801b0316610c1c565b6001600160a01b0383166000908152600260205260409020546107e89063ffffffff16610848565b6107f26000610848565b6107fc9190610c50565b60ff166104fc9190610c69565b6040516001600160a01b0384811660248301528381166044830152606482018390526108429186918216906323b872dd90608401610722565b50505050565b60008163ffffffff1660000361085c574291505b8163ffffffff167f0000000000000000000000000000000000000000000000000000000066d59ab063ffffffff16116108b657507f0000000000000000000000000000000000000000000000000000000000000015919050565b636613ce3063ffffffff8316116108cf57506000919050565b7f000000000000000000000000000000000000000000000000000000000000001560ff168160ff16101561094857610908816001610c94565b6109189060ff1662093a80610cad565b61092690636613ce30610bb8565b63ffffffff168263ffffffff16106109485761094181610ccd565b90506108cf565b919050565b60006109626001600160a01b038416836109ce565b905080516000141580156109875750808060200190518101906109859190610cec565b155b15610769576040517f5274afe70000000000000000000000000000000000000000000000000000000081526001600160a01b03841660048201526024015b60405180910390fd5b60606109dc838360006109e3565b9392505050565b606081471015610a21576040517fcd7860590000000000000000000000000000000000000000000000000000000081523060048201526024016109c5565b600080856001600160a01b03168486604051610a3d9190610d0e565b60006040518083038185875af1925050503d8060008114610a7a576040519150601f19603f3d011682016040523d82523d6000602084013e610a7f565b606091505b5091509150610a8f868383610a99565b9695505050505050565b606082610aae57610aa982610b0e565b6109dc565b8151158015610ac557506001600160a01b0384163b155b15610b07576040517f9996b3150000000000000000000000000000000000000000000000000000000081526001600160a01b03851660048201526024016109c5565b50806109dc565b805115610b1e5780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060208284031215610b6257600080fd5b81356001600160801b03811681146109dc57600080fd5b600060208284031215610b8b57600080fd5b81356001600160a01b03811681146109dc57600080fd5b634e487b7160e01b600052601160045260246000fd5b63ffffffff818116838216019080821115610bd557610bd5610ba2565b5092915050565b6001600160801b03828116828216039080821115610bd557610bd5610ba2565b6001600160801b03818116838216019080821115610bd557610bd5610ba2565b60006001600160801b0380841680610c4457634e487b7160e01b600052601260045260246000fd5b92169190910492915050565b60ff82811682821603908111156104fc576104fc610ba2565b6001600160801b03818116838216028082169190828114610c8c57610c8c610ba2565b505092915050565b60ff81811683821601908111156104fc576104fc610ba2565b63ffffffff818116838216028082169190828114610c8c57610c8c610ba2565b600060ff821660ff8103610ce357610ce3610ba2565b60010192915050565b600060208284031215610cfe57600080fd5b815180151581146109dc57600080fd5b6000825160005b81811015610d2f5760208186018101518583015201610d15565b50600092019182525091905056fea2646970667358221220b311cf895ac92213ff333b608afdd74405f0c79b57401f9dbe92c3c65904709b64736f6c63430008180033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ 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.