ETH Price: $1,827.29 (+0.32%)
Gas: 0.51 Gwei

Contract

0xEBF86a6FfAE4505076bA4481B89F78A03238265c
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Withdraw204582682024-08-04 22:45:59242 days ago1722811559IN
0xEBF86a6F...03238265c
0 ETH0.000472413.74521761
Get Reward204582652024-08-04 22:45:23242 days ago1722811523IN
0xEBF86a6F...03238265c
0 ETH0.000442073.88749581
Withdraw200757632024-06-12 12:31:11295 days ago1718195471IN
0xEBF86a6F...03238265c
0 ETH0.0042211429.46679898
Withdraw200584382024-06-10 2:26:35298 days ago1717986395IN
0xEBF86a6F...03238265c
0 ETH0.000075423.42825881
Withdraw200570962024-06-09 21:57:11298 days ago1717970231IN
0xEBF86a6F...03238265c
0 ETH0.000142256.4660335
Withdraw200243892024-06-05 8:19:23303 days ago1717575563IN
0xEBF86a6F...03238265c
0 ETH0.002014712.56624699
Withdraw199676602024-05-28 10:06:35310 days ago1716890795IN
0xEBF86a6F...03238265c
0 ETH0.0033508215.25669307
Withdraw199675982024-05-28 9:54:11310 days ago1716890051IN
0xEBF86a6F...03238265c
0 ETH0.0040102215.34607557
Withdraw199672812024-05-28 8:50:23310 days ago1716886223IN
0xEBF86a6F...03238265c
0 ETH0.0025402817.73605348
Withdraw199672712024-05-28 8:48:23310 days ago1716886103IN
0xEBF86a6F...03238265c
0 ETH0.0037671618.60052787
Withdraw199671042024-05-28 8:14:47311 days ago1716884087IN
0xEBF86a6F...03238265c
0 ETH0.0029755821.28716802
Withdraw199625092024-05-27 16:50:23311 days ago1716828623IN
0xEBF86a6F...03238265c
0 ETH0.0036936526.42419463
Withdraw199489192024-05-25 19:16:35313 days ago1716664595IN
0xEBF86a6F...03238265c
0 ETH0.00170597.43198534
Withdraw199488912024-05-25 19:10:59313 days ago1716664259IN
0xEBF86a6F...03238265c
0 ETH0.001249487.42230025
Withdraw199402952024-05-24 14:19:47314 days ago1716560387IN
0xEBF86a6F...03238265c
0 ETH0.0013235910.78871791
Get Reward199402902024-05-24 14:18:47314 days ago1716560327IN
0xEBF86a6F...03238265c
0 ETH0.0014567211.33833648
Withdraw199394932024-05-24 11:38:11314 days ago1716550691IN
0xEBF86a6F...03238265c
0 ETH0.001220148.72882742
Withdraw199379372024-05-24 6:24:59315 days ago1716531899IN
0xEBF86a6F...03238265c
0 ETH0.0027013511.76878294
Get Reward199312682024-05-23 8:03:47316 days ago1716451427IN
0xEBF86a6F...03238265c
0 ETH0.0021838216.69365056
Withdraw199276492024-05-22 19:56:47316 days ago1716407807IN
0xEBF86a6F...03238265c
0 ETH0.0020139515.9661502
Withdraw199276452024-05-22 19:55:59316 days ago1716407759IN
0xEBF86a6F...03238265c
0 ETH0.0022215717.19312477
Get Reward199276432024-05-22 19:55:35316 days ago1716407735IN
0xEBF86a6F...03238265c
0 ETH0.0018626716.37974205
Withdraw199260992024-05-22 14:45:11316 days ago1716389111IN
0xEBF86a6F...03238265c
0 ETH0.0021281816.87173708
Withdraw199259762024-05-22 14:20:35316 days ago1716387635IN
0xEBF86a6F...03238265c
0 ETH0.0029127920.33517434
Withdraw199252822024-05-22 12:00:23316 days ago1716379223IN
0xEBF86a6F...03238265c
0 ETH0.0018083512.62472507
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Staking

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion
File 1 of 7 : Staking.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./interfaces/ICharity.sol";

contract Staking is Ownable, Pausable, ReentrancyGuard {

    uint256 public constant DENOMINATOR = 1000;

    IERC20 public immutable GWD;

    ICharity public charity;

    uint256 public totalStaked;
    uint256 public totalRewardDebt;
    uint256 public feePercentage = 10;

    mapping(address => Stake) public stakeInfo;

    struct Stake {
        uint256 amount;
        uint256 enteredAt;
        uint256 updatedAt;
        uint256 rewardDebt;
        uint256 totalRewardGot;
    }

    constructor(IERC20 _gwd, ICharity _charity) {
        GWD = _gwd;
        charity = _charity;
    }

    function deposit(uint256 amount) external whenNotPaused nonReentrant {
        require(amount > 0 && amount % 1000000 == 0, "Wrong amount");
        GWD.transferFrom(_msgSender(), address(this), amount);
        totalStaked += amount;
        _manageReward(_msgSender());
        stakeInfo[_msgSender()].enteredAt = block.timestamp;
        stakeInfo[_msgSender()].amount += amount;
    }

    function withdraw(uint256 amount) external nonReentrant {
        require(stakeInfo[_msgSender()].amount >= amount, "Cannot withdraw this much");
        require(block.timestamp >= stakeInfo[_msgSender()].enteredAt + 604800, "Cannot unstake yet");
        _manageReward(_msgSender());
        totalStaked -= amount;
        stakeInfo[_msgSender()].amount -= amount;
        GWD.transfer(_msgSender(), amount);
    }

    function getReward() external nonReentrant {
        _manageReward(_msgSender());
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

    function setCharity(ICharity _charity) external onlyOwner {
        charity = _charity;
    }

    function setFeePercentage(uint256 _feePercentage) external onlyOwner {
        require(_feePercentage < 200, "Too high fee percentage");
        feePercentage = _feePercentage;
    }

    function pendingReward(address account) public view returns(uint256) {
        return ((stakeInfo[account].amount * 15 * (block.timestamp - stakeInfo[account].updatedAt)) / 3153600000);
    }

    function _manageReward(address account) private {
        uint256 pending = pendingReward(account);
        stakeInfo[account].updatedAt = block.timestamp;
        uint256 debt = stakeInfo[_msgSender()].rewardDebt;
        if (debt > 0) {
            stakeInfo[_msgSender()].rewardDebt = 0;
            totalRewardDebt -= debt;
            pending += debt;
        }
        if (pending > 0) {
            _giveReward(account, pending);
        }
    }

    function _giveReward(address account, uint256 amount) private {
        uint256 toTransfer;
        if (GWD.balanceOf(address(this)) >= totalStaked + amount) {
            toTransfer = amount;
        }
        else {
            toTransfer = GWD.balanceOf(address(this)) - totalStaked;
            uint256 debt = amount - toTransfer;
            totalRewardDebt += debt;
            stakeInfo[account].rewardDebt += debt;
        }
        if (toTransfer > 0) {
            uint256 fee = (toTransfer * feePercentage) / DENOMINATOR;
            toTransfer -= fee;
            GWD.transfer(address(charity), fee);
            charity.addToCharity(fee, account);
            GWD.transfer(account, toTransfer);
            stakeInfo[account].totalRewardGot += toTransfer;
        }
    }
}

File 2 of 7 : ICharity.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;

interface ICharity {

    function addToCharity(uint256 amount, address user) external;
}

File 3 of 7 : 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 4 of 7 : 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 5 of 7 : 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 6 of 7 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 7 of 7 : 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);
    }
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"contract IERC20","name":"_gwd","type":"address"},{"internalType":"contract ICharity","name":"_charity","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GWD","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charity","outputs":[{"internalType":"contract ICharity","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feePercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"pendingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ICharity","name":"_charity","type":"address"}],"name":"setCharity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feePercentage","type":"uint256"}],"name":"setFeePercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakeInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"enteredAt","type":"uint256"},{"internalType":"uint256","name":"updatedAt","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"},{"internalType":"uint256","name":"totalRewardGot","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRewardDebt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStaked","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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a0604052600a6005553480156200001657600080fd5b50604051620015b6380380620015b68339810160408190526200003991620000e7565b62000044336200007e565b6000805460ff60a01b19169055600180556001600160a01b03918216608052600280546001600160a01b0319169190921617905562000126565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381168114620000e457600080fd5b50565b60008060408385031215620000fb57600080fd5b82516200010881620000ce565b60208401519092506200011b81620000ce565b809150509250929050565b60805161144a6200016c60003960008181610318015281816104f80152818161080b01528181610de801528181610ea501528181611016015261115a015261144a6000f3fe608060405234801561001057600080fd5b50600436106101515760003560e01c80638da5cb5b116100cd578063b6b55f2511610081578063f40f0f5211610066578063f40f0f52146102ed578063fb6f71a314610300578063fe6e15831461031357600080fd5b8063b6b55f25146102c7578063f2fde38b146102da57600080fd5b8063934aa023116100b2578063934aa0231461028b578063a001ecdd146102ab578063ae06c1b7146102b457600080fd5b80638da5cb5b14610243578063918f86741461028257600080fd5b80635c975abb11610124578063817b1cd211610109578063817b1cd21461021b57806383bb3877146102325780638456cb591461023b57600080fd5b80635c975abb146101e5578063715018a61461021357600080fd5b80631601e641146101565780632e1a7d4d146101c05780633d18b912146101d55780633f4ba83a146101dd575b600080fd5b6101936101643660046112b3565b600660205260009081526040902080546001820154600283015460038401546004909401549293919290919085565b604080519586526020860194909452928401919091526060830152608082015260a0015b60405180910390f35b6101d36101ce3660046112d7565b61033a565b005b6101d36105d1565b6101d3610651565b60005474010000000000000000000000000000000000000000900460ff1660405190151581526020016101b7565b6101d3610663565b61022460035481565b6040519081526020016101b7565b61022460045481565b6101d3610675565b60005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101b7565b6102246103e881565b60025461025d9073ffffffffffffffffffffffffffffffffffffffff1681565b61022460055481565b6101d36102c23660046112d7565b610685565b6101d36102d53660046112d7565b6106fc565b6101d36102e83660046112b3565b610920565b6102246102fb3660046112b3565b6109d7565b6101d361030e3660046112b3565b610a5b565b61025d7f000000000000000000000000000000000000000000000000000000000000000081565b6002600154036103ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260015533600090815260066020526040902054811115610429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f43616e6e6f742077697468647261772074686973206d7563680000000000000060448201526064016103a2565b336000908152600660205260409020600101546104499062093a8061131f565b4210156104b2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f43616e6e6f7420756e7374616b6520796574000000000000000000000000000060448201526064016103a2565b6104bb33610aaa565b80600360008282546104cd9190611332565b909155505033600090815260066020526040812080548392906104f1908490611332565b90915550507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff9091166004820152602481018490526044016020604051808303816000875af11580156105a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c99190611345565b505060018055565b60026001540361063d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103a2565b600260015561064b33610aaa565b60018055565b610659610b43565b610661610bc4565b565b61066b610b43565b6106616000610c41565b61067d610b43565b610661610cb6565b61068d610b43565b60c881106106f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f546f6f2068696768206665652070657263656e7461676500000000000000000060448201526064016103a2565b600555565b610704610d25565b600260015403610770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103a2565b6002600155801580159061078e575061078c620f424082611396565b155b6107f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f57726f6e6720616d6f756e74000000000000000000000000000000000000000060448201526064016103a2565b73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000166323b872dd336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff9091166004820152306024820152604481018490526064016020604051808303816000875af11580156108a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108cd9190611345565b5080600360008282546108e0919061131f565b909155506108ef905033610aaa565b336000908152600660205260408120426001820155805483929061091490849061131f565b90915550506001805550565b610928610b43565b73ffffffffffffffffffffffffffffffffffffffff81166109cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016103a2565b6109d481610c41565b50565b73ffffffffffffffffffffffffffffffffffffffff811660009081526006602052604081206002015463bbf81e0090610a109042611332565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260066020526040902054610a4190600f6113aa565b610a4b91906113aa565b610a5591906113e7565b92915050565b610a63610b43565b600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000610ab5826109d7565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260066020526040808220426002909101553382529020600301549091508015610b2e5733600090815260066020526040812060030181905560048054839290610b1b908490611332565b90915550610b2b9050818361131f565b91505b8115610b3e57610b3e8383610daa565b505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103a2565b610bcc61120d565b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610cbe610d25565b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610c173390565b60005474010000000000000000000000000000000000000000900460ff1615610661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016103a2565b600081600354610dba919061131f565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa158015610e44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6891906113fb565b10610e74575080610f95565b6003546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa158015610f01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2591906113fb565b610f2f9190611332565b90506000610f3d8284611332565b90508060046000828254610f51919061131f565b909155505073ffffffffffffffffffffffffffffffffffffffff841660009081526006602052604081206003018054839290610f8e90849061131f565b9091555050505b8015610b3e5760006103e860055483610fae91906113aa565b610fb891906113e7565b9050610fc48183611332565b6002546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9182166004820152602481018490529193507f0000000000000000000000000000000000000000000000000000000000000000169063a9059cbb906044016020604051808303816000875af115801561105f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110839190611345565b506002546040517f3a80afb00000000000000000000000000000000000000000000000000000000081526004810183905273ffffffffffffffffffffffffffffffffffffffff868116602483015290911690633a80afb090604401600060405180830381600087803b1580156110f857600080fd5b505af115801561110c573d6000803e3d6000fd5b50506040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8781166004830152602482018690527f000000000000000000000000000000000000000000000000000000000000000016925063a9059cbb91506044016020604051808303816000875af11580156111a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c99190611345565b5073ffffffffffffffffffffffffffffffffffffffff84166000908152600660205260408120600401805484929061120290849061131f565b909155505050505050565b60005474010000000000000000000000000000000000000000900460ff16610661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016103a2565b73ffffffffffffffffffffffffffffffffffffffff811681146109d457600080fd5b6000602082840312156112c557600080fd5b81356112d081611291565b9392505050565b6000602082840312156112e957600080fd5b5035919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610a5557610a556112f0565b81810381811115610a5557610a556112f0565b60006020828403121561135757600080fd5b815180151581146112d057600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826113a5576113a5611367565b500690565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156113e2576113e26112f0565b500290565b6000826113f6576113f6611367565b500490565b60006020828403121561140d57600080fd5b505191905056fea2646970667358221220972f2823309864a8d22e7b71d9b331993bcfd30be172943cafef5720d6aa2e7e64736f6c63430008100033000000000000000000000000674c964ac0e89d847d6b0abd144b797bf78ba56b0000000000000000000000008aaf7f043a8316fc76007277e2d3eb0191c3849b

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101515760003560e01c80638da5cb5b116100cd578063b6b55f2511610081578063f40f0f5211610066578063f40f0f52146102ed578063fb6f71a314610300578063fe6e15831461031357600080fd5b8063b6b55f25146102c7578063f2fde38b146102da57600080fd5b8063934aa023116100b2578063934aa0231461028b578063a001ecdd146102ab578063ae06c1b7146102b457600080fd5b80638da5cb5b14610243578063918f86741461028257600080fd5b80635c975abb11610124578063817b1cd211610109578063817b1cd21461021b57806383bb3877146102325780638456cb591461023b57600080fd5b80635c975abb146101e5578063715018a61461021357600080fd5b80631601e641146101565780632e1a7d4d146101c05780633d18b912146101d55780633f4ba83a146101dd575b600080fd5b6101936101643660046112b3565b600660205260009081526040902080546001820154600283015460038401546004909401549293919290919085565b604080519586526020860194909452928401919091526060830152608082015260a0015b60405180910390f35b6101d36101ce3660046112d7565b61033a565b005b6101d36105d1565b6101d3610651565b60005474010000000000000000000000000000000000000000900460ff1660405190151581526020016101b7565b6101d3610663565b61022460035481565b6040519081526020016101b7565b61022460045481565b6101d3610675565b60005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101b7565b6102246103e881565b60025461025d9073ffffffffffffffffffffffffffffffffffffffff1681565b61022460055481565b6101d36102c23660046112d7565b610685565b6101d36102d53660046112d7565b6106fc565b6101d36102e83660046112b3565b610920565b6102246102fb3660046112b3565b6109d7565b6101d361030e3660046112b3565b610a5b565b61025d7f000000000000000000000000674c964ac0e89d847d6b0abd144b797bf78ba56b81565b6002600154036103ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b600260015533600090815260066020526040902054811115610429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f43616e6e6f742077697468647261772074686973206d7563680000000000000060448201526064016103a2565b336000908152600660205260409020600101546104499062093a8061131f565b4210156104b2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f43616e6e6f7420756e7374616b6520796574000000000000000000000000000060448201526064016103a2565b6104bb33610aaa565b80600360008282546104cd9190611332565b909155505033600090815260066020526040812080548392906104f1908490611332565b90915550507f000000000000000000000000674c964ac0e89d847d6b0abd144b797bf78ba56b73ffffffffffffffffffffffffffffffffffffffff1663a9059cbb336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff9091166004820152602481018490526044016020604051808303816000875af11580156105a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c99190611345565b505060018055565b60026001540361063d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103a2565b600260015561064b33610aaa565b60018055565b610659610b43565b610661610bc4565b565b61066b610b43565b6106616000610c41565b61067d610b43565b610661610cb6565b61068d610b43565b60c881106106f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f546f6f2068696768206665652070657263656e7461676500000000000000000060448201526064016103a2565b600555565b610704610d25565b600260015403610770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103a2565b6002600155801580159061078e575061078c620f424082611396565b155b6107f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f57726f6e6720616d6f756e74000000000000000000000000000000000000000060448201526064016103a2565b73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000674c964ac0e89d847d6b0abd144b797bf78ba56b166323b872dd336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff9091166004820152306024820152604481018490526064016020604051808303816000875af11580156108a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108cd9190611345565b5080600360008282546108e0919061131f565b909155506108ef905033610aaa565b336000908152600660205260408120426001820155805483929061091490849061131f565b90915550506001805550565b610928610b43565b73ffffffffffffffffffffffffffffffffffffffff81166109cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016103a2565b6109d481610c41565b50565b73ffffffffffffffffffffffffffffffffffffffff811660009081526006602052604081206002015463bbf81e0090610a109042611332565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260066020526040902054610a4190600f6113aa565b610a4b91906113aa565b610a5591906113e7565b92915050565b610a63610b43565b600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000610ab5826109d7565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260066020526040808220426002909101553382529020600301549091508015610b2e5733600090815260066020526040812060030181905560048054839290610b1b908490611332565b90915550610b2b9050818361131f565b91505b8115610b3e57610b3e8383610daa565b505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103a2565b610bcc61120d565b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610cbe610d25565b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610c173390565b60005474010000000000000000000000000000000000000000900460ff1615610661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016103a2565b600081600354610dba919061131f565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201527f000000000000000000000000674c964ac0e89d847d6b0abd144b797bf78ba56b73ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa158015610e44573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6891906113fb565b10610e74575080610f95565b6003546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201527f000000000000000000000000674c964ac0e89d847d6b0abd144b797bf78ba56b73ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa158015610f01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2591906113fb565b610f2f9190611332565b90506000610f3d8284611332565b90508060046000828254610f51919061131f565b909155505073ffffffffffffffffffffffffffffffffffffffff841660009081526006602052604081206003018054839290610f8e90849061131f565b9091555050505b8015610b3e5760006103e860055483610fae91906113aa565b610fb891906113e7565b9050610fc48183611332565b6002546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9182166004820152602481018490529193507f000000000000000000000000674c964ac0e89d847d6b0abd144b797bf78ba56b169063a9059cbb906044016020604051808303816000875af115801561105f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110839190611345565b506002546040517f3a80afb00000000000000000000000000000000000000000000000000000000081526004810183905273ffffffffffffffffffffffffffffffffffffffff868116602483015290911690633a80afb090604401600060405180830381600087803b1580156110f857600080fd5b505af115801561110c573d6000803e3d6000fd5b50506040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8781166004830152602482018690527f000000000000000000000000674c964ac0e89d847d6b0abd144b797bf78ba56b16925063a9059cbb91506044016020604051808303816000875af11580156111a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c99190611345565b5073ffffffffffffffffffffffffffffffffffffffff84166000908152600660205260408120600401805484929061120290849061131f565b909155505050505050565b60005474010000000000000000000000000000000000000000900460ff16610661576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016103a2565b73ffffffffffffffffffffffffffffffffffffffff811681146109d457600080fd5b6000602082840312156112c557600080fd5b81356112d081611291565b9392505050565b6000602082840312156112e957600080fd5b5035919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610a5557610a556112f0565b81810381811115610a5557610a556112f0565b60006020828403121561135757600080fd5b815180151581146112d057600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826113a5576113a5611367565b500690565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156113e2576113e26112f0565b500290565b6000826113f6576113f6611367565b500490565b60006020828403121561140d57600080fd5b505191905056fea2646970667358221220972f2823309864a8d22e7b71d9b331993bcfd30be172943cafef5720d6aa2e7e64736f6c63430008100033

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

000000000000000000000000674c964ac0e89d847d6b0abd144b797bf78ba56b0000000000000000000000008aaf7f043a8316fc76007277e2d3eb0191c3849b

-----Decoded View---------------
Arg [0] : _gwd (address): 0x674c964AC0E89d847d6B0aBd144b797bf78BA56b
Arg [1] : _charity (address): 0x8aaf7f043A8316FC76007277e2D3eb0191c3849B

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000674c964ac0e89d847d6b0abd144b797bf78ba56b
Arg [1] : 0000000000000000000000008aaf7f043a8316fc76007277e2d3eb0191c3849b


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