Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Latest 17 from a total of 17 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Withdraw ETH | 19605069 | 707 days ago | IN | 0 ETH | 0.00146868 | ||||
| Claim | 14242190 | 1484 days ago | IN | 0 ETH | 0.00361598 | ||||
| Transfer | 14127867 | 1502 days ago | IN | 0.13936586 ETH | 0.00541221 | ||||
| Set Rewards | 14124111 | 1502 days ago | IN | 0 ETH | 0.04163769 | ||||
| Claim | 14086778 | 1508 days ago | IN | 0 ETH | 0.00646835 | ||||
| Claim | 14027880 | 1517 days ago | IN | 0 ETH | 0.00375289 | ||||
| Claim | 14027880 | 1517 days ago | IN | 0 ETH | 0.00375289 | ||||
| Claim | 14027880 | 1517 days ago | IN | 0 ETH | 0.00375289 | ||||
| Claim | 14027880 | 1517 days ago | IN | 0 ETH | 0.00375289 | ||||
| Claim | 14027880 | 1517 days ago | IN | 0 ETH | 0.00375289 | ||||
| Claim | 14016704 | 1519 days ago | IN | 0 ETH | 0.00648025 | ||||
| Set Rewards | 13963037 | 1527 days ago | IN | 0 ETH | 0.03416331 | ||||
| Transfer | 13962462 | 1527 days ago | IN | 0.1739 ETH | 0.00186117 | ||||
| Claim | 13917866 | 1534 days ago | IN | 0 ETH | 0.00582424 | ||||
| Set Claimable | 13915299 | 1534 days ago | IN | 0 ETH | 0.00302379 | ||||
| Transfer | 13915292 | 1534 days ago | IN | 0.39 ETH | 0.00163559 | ||||
| Set Rewards | 13915282 | 1534 days ago | IN | 0 ETH | 0.28001981 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
RewardDistributor
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
/// @author crypt0s0nic
/// @title Fee distributor for StellarInu token
contract RewardDistributor is Ownable, ReentrancyGuard {
mapping(address => uint256) public amounts;
mapping(address => uint256) public realised;
mapping(address => bool) public excludes;
uint256 public totalRewarded;
bool public claimable;
receive() external payable {}
/// @notice Set rewards of multiple accounts
/// @dev `accounts` and `values` must have the same length
/// Should be called when owner wants to distribute rewards
/// Called by owner only
/// @param accounts addresses of the rewarded accounts
/// @param values balances of the shareholders
function setRewards(address[] calldata accounts, uint256[] calldata values) external onlyOwner {
require(accounts.length == values.length, "setRewards: INVALID_INPUT");
for (uint256 i = 0; i < accounts.length; i++) {
amounts[accounts[i]] += values[i];
}
}
/// @notice Set claimable
/// @dev claiming will be active is this is set to true and vice versa
/// Called by owner only
/// @param _claimable status of claiming activity
function setClaimable(bool _claimable) external onlyOwner {
claimable = _claimable;
}
/// @notice Set rewards of multiple accounts
/// @dev Should be called when owner wants to remove any addresses from reward
/// Called by owner only
/// @param accounts addresses of the excluded accounts
/// @param excluded whether accounts should be excluded or not
function setExcludes(address[] calldata accounts, bool excluded) external onlyOwner {
for (uint256 i = 0; i < accounts.length; i++) {
excludes[accounts[i]] = excluded;
}
}
/// @notice Distribute the ETH reward to the sender
/// @dev Revert if the sender is excluded from reward or unpaid reward is 0
/// If the unpaid reward is bigger than current balance of the contract, send current balance.
function claim() external nonReentrant {
require(claimable, "claim: NOT_CLAIMABLE");
require(!excludes[msg.sender], "claim: EXCLUDED_FROM_REWARD");
uint256 amount = getUnpaidReward(msg.sender);
if (amount > address(this).balance) {
amount = address(this).balance;
}
require(amount > 0, "claim: INSUFFICIENT");
realised[msg.sender] += amount;
totalRewarded += amount;
safeTransferETH(msg.sender, amount);
}
/// @notice View the unpaid reward of an account
/// @param account The address of an account
/// @return The amount of reward in wei that `account` can withdraw
function getUnpaidReward(address account) public view returns (uint256) {
if (amounts[account] > realised[account]) {
return amounts[account] - realised[account];
}
return 0;
}
/// @notice Rescue ETH from the contract
/// @dev Called by owner only
/// @param receiver The payable address to receive ETH
/// @param amount The amount in wei
function withdrawETH(address receiver, uint256 amount) external onlyOwner {
require(receiver != address(0), "withdrawETH: BURN_ADDRESS");
if (amount > address(this).balance) {
amount = address(this).balance;
}
safeTransferETH(receiver, amount);
}
/// @dev Private function that safely transfers ETH to an address
/// It fails if to is 0x0 or the transfer isn't successful
/// @param to The address to transfer to
/// @param value The amount to be transferred
function safeTransferETH(address to, uint256 value) private {
(bool success, ) = to.call{ value: value }(new bytes(0));
require(success, "safeTransferETH: ETH_TRANSFER_FAILED");
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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 Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
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);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @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 `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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;
}
}{
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs",
"useLiteralContent": true
},
"optimizer": {
"enabled": true,
"runs": 999999
},
"remappings": [],
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getUnpaidReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"realised","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_claimable","type":"bool"}],"name":"setClaimable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setExcludes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"setRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalRewarded","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":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
608060405234801561001057600080fd5b5061001a33610023565b60018055610073565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61104a806100826000396000f3fe6080604052600436106100e15760003560e01c80638da5cb5b1161007f578063af38d75711610059578063af38d75714610251578063b424581d1461027b578063f2fde38b146102ab578063fe98e00c146102cb57600080fd5b80638da5cb5b146101e6578063929205221461021b578063aed29d071461023b57600080fd5b80634e71d92d116100bb5780634e71d92d1461016f57806355a3b2c114610184578063715018a6146101b15780637d731c3d146101c657600080fd5b80631aef260e146100ed578063378c93ad1461012d5780634782f7791461014f57600080fd5b366100e857005b600080fd5b3480156100f957600080fd5b5061011a610108366004610d90565b60036020526000908152604090205481565b6040519081526020015b60405180910390f35b34801561013957600080fd5b5061014d610148366004610dc2565b6102eb565b005b34801561015b57600080fd5b5061014d61016a366004610ddd565b6103a2565b34801561017b57600080fd5b5061014d6104b9565b34801561019057600080fd5b5061011a61019f366004610d90565b60026020526000908152604090205481565b3480156101bd57600080fd5b5061014d6106e2565b3480156101d257600080fd5b5061011a6101e1366004610d90565b61076f565b3480156101f257600080fd5b5060005460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610124565b34801561022757600080fd5b5061014d610236366004610e53565b6107f0565b34801561024757600080fd5b5061011a60055481565b34801561025d57600080fd5b5060065461026b9060ff1681565b6040519015158152602001610124565b34801561028757600080fd5b5061026b610296366004610d90565b60046020526000908152604090205460ff1681565b3480156102b757600080fd5b5061014d6102c6366004610d90565b610991565b3480156102d757600080fd5b5061014d6102e6366004610ebf565b610ac1565b60005473ffffffffffffffffffffffffffffffffffffffff163314610371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610368565b73ffffffffffffffffffffffffffffffffffffffff82166104a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f77697468647261774554483a204255524e5f41444452455353000000000000006044820152606401610368565b478111156104ab5750475b6104b58282610be4565b5050565b60026001541415610526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610368565b600260015560065460ff16610597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f636c61696d3a204e4f545f434c41494d41424c450000000000000000000000006044820152606401610368565b3360009081526004602052604090205460ff1615610611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f636c61696d3a204558434c554445445f46524f4d5f52455741524400000000006044820152606401610368565b600061061c3361076f565b9050478111156106295750475b60008111610693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f636c61696d3a20494e53554646494349454e54000000000000000000000000006044820152606401610368565b33600090815260036020526040812080548392906106b2908490610f42565b9250508190555080600560008282546106cb9190610f42565b909155506106db90503382610be4565b5060018055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610368565b61076d6000610cf2565b565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260036020908152604080832054600290925282205411156107e85773ffffffffffffffffffffffffffffffffffffffff82166000908152600360209081526040808320546002909252909120546107e29190610f5a565b92915050565b506000919050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610368565b8281146108da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f736574526577617264733a20494e56414c49445f494e505554000000000000006044820152606401610368565b60005b8381101561098a578282828181106108f7576108f7610f71565b905060200201356002600087878581811061091457610914610f71565b90506020020160208101906109299190610d90565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546109729190610f42565b9091555081905061098281610fa0565b9150506108dd565b5050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610a12576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610368565b73ffffffffffffffffffffffffffffffffffffffff8116610ab5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610368565b610abe81610cf2565b50565b60005473ffffffffffffffffffffffffffffffffffffffff163314610b42576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610368565b60005b82811015610bde578160046000868685818110610b6457610b64610f71565b9050602002016020810190610b799190610d90565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580610bd681610fa0565b915050610b45565b50505050565b6040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff8416908390604051610c1b9190610fd9565b60006040518083038185875af1925050503d8060008114610c58576040519150601f19603f3d011682016040523d82523d6000602084013e610c5d565b606091505b5050905080610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f736166655472616e736665724554483a204554485f5452414e534645525f464160448201527f494c4544000000000000000000000000000000000000000000000000000000006064820152608401610368565b505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610d8b57600080fd5b919050565b600060208284031215610da257600080fd5b610dab82610d67565b9392505050565b80358015158114610d8b57600080fd5b600060208284031215610dd457600080fd5b610dab82610db2565b60008060408385031215610df057600080fd5b610df983610d67565b946020939093013593505050565b60008083601f840112610e1957600080fd5b50813567ffffffffffffffff811115610e3157600080fd5b6020830191508360208260051b8501011115610e4c57600080fd5b9250929050565b60008060008060408587031215610e6957600080fd5b843567ffffffffffffffff80821115610e8157600080fd5b610e8d88838901610e07565b90965094506020870135915080821115610ea657600080fd5b50610eb387828801610e07565b95989497509550505050565b600080600060408486031215610ed457600080fd5b833567ffffffffffffffff811115610eeb57600080fd5b610ef786828701610e07565b9094509250610f0a905060208501610db2565b90509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115610f5557610f55610f13565b500190565b600082821015610f6c57610f6c610f13565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415610fd257610fd2610f13565b5060010190565b6000825160005b81811015610ffa5760208186018101518583015201610fe0565b81811115611009576000828501525b50919091019291505056fea2646970667358221220d84052747d06439dd765c2a4cd2b83ffd238d7fbf4156f14f12eca962a232a4264736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106100e15760003560e01c80638da5cb5b1161007f578063af38d75711610059578063af38d75714610251578063b424581d1461027b578063f2fde38b146102ab578063fe98e00c146102cb57600080fd5b80638da5cb5b146101e6578063929205221461021b578063aed29d071461023b57600080fd5b80634e71d92d116100bb5780634e71d92d1461016f57806355a3b2c114610184578063715018a6146101b15780637d731c3d146101c657600080fd5b80631aef260e146100ed578063378c93ad1461012d5780634782f7791461014f57600080fd5b366100e857005b600080fd5b3480156100f957600080fd5b5061011a610108366004610d90565b60036020526000908152604090205481565b6040519081526020015b60405180910390f35b34801561013957600080fd5b5061014d610148366004610dc2565b6102eb565b005b34801561015b57600080fd5b5061014d61016a366004610ddd565b6103a2565b34801561017b57600080fd5b5061014d6104b9565b34801561019057600080fd5b5061011a61019f366004610d90565b60026020526000908152604090205481565b3480156101bd57600080fd5b5061014d6106e2565b3480156101d257600080fd5b5061011a6101e1366004610d90565b61076f565b3480156101f257600080fd5b5060005460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610124565b34801561022757600080fd5b5061014d610236366004610e53565b6107f0565b34801561024757600080fd5b5061011a60055481565b34801561025d57600080fd5b5060065461026b9060ff1681565b6040519015158152602001610124565b34801561028757600080fd5b5061026b610296366004610d90565b60046020526000908152604090205460ff1681565b3480156102b757600080fd5b5061014d6102c6366004610d90565b610991565b3480156102d757600080fd5b5061014d6102e6366004610ebf565b610ac1565b60005473ffffffffffffffffffffffffffffffffffffffff163314610371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600680547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610368565b73ffffffffffffffffffffffffffffffffffffffff82166104a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f77697468647261774554483a204255524e5f41444452455353000000000000006044820152606401610368565b478111156104ab5750475b6104b58282610be4565b5050565b60026001541415610526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610368565b600260015560065460ff16610597576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f636c61696d3a204e4f545f434c41494d41424c450000000000000000000000006044820152606401610368565b3360009081526004602052604090205460ff1615610611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f636c61696d3a204558434c554445445f46524f4d5f52455741524400000000006044820152606401610368565b600061061c3361076f565b9050478111156106295750475b60008111610693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f636c61696d3a20494e53554646494349454e54000000000000000000000000006044820152606401610368565b33600090815260036020526040812080548392906106b2908490610f42565b9250508190555080600560008282546106cb9190610f42565b909155506106db90503382610be4565b5060018055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610368565b61076d6000610cf2565b565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260036020908152604080832054600290925282205411156107e85773ffffffffffffffffffffffffffffffffffffffff82166000908152600360209081526040808320546002909252909120546107e29190610f5a565b92915050565b506000919050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610368565b8281146108da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f736574526577617264733a20494e56414c49445f494e505554000000000000006044820152606401610368565b60005b8381101561098a578282828181106108f7576108f7610f71565b905060200201356002600087878581811061091457610914610f71565b90506020020160208101906109299190610d90565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546109729190610f42565b9091555081905061098281610fa0565b9150506108dd565b5050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610a12576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610368565b73ffffffffffffffffffffffffffffffffffffffff8116610ab5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610368565b610abe81610cf2565b50565b60005473ffffffffffffffffffffffffffffffffffffffff163314610b42576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610368565b60005b82811015610bde578160046000868685818110610b6457610b64610f71565b9050602002016020810190610b799190610d90565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580610bd681610fa0565b915050610b45565b50505050565b6040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff8416908390604051610c1b9190610fd9565b60006040518083038185875af1925050503d8060008114610c58576040519150601f19603f3d011682016040523d82523d6000602084013e610c5d565b606091505b5050905080610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f736166655472616e736665724554483a204554485f5452414e534645525f464160448201527f494c4544000000000000000000000000000000000000000000000000000000006064820152608401610368565b505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610d8b57600080fd5b919050565b600060208284031215610da257600080fd5b610dab82610d67565b9392505050565b80358015158114610d8b57600080fd5b600060208284031215610dd457600080fd5b610dab82610db2565b60008060408385031215610df057600080fd5b610df983610d67565b946020939093013593505050565b60008083601f840112610e1957600080fd5b50813567ffffffffffffffff811115610e3157600080fd5b6020830191508360208260051b8501011115610e4c57600080fd5b9250929050565b60008060008060408587031215610e6957600080fd5b843567ffffffffffffffff80821115610e8157600080fd5b610e8d88838901610e07565b90965094506020870135915080821115610ea657600080fd5b50610eb387828801610e07565b95989497509550505050565b600080600060408486031215610ed457600080fd5b833567ffffffffffffffff811115610eeb57600080fd5b610ef786828701610e07565b9094509250610f0a905060208501610db2565b90509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115610f5557610f55610f13565b500190565b600082821015610f6c57610f6c610f13565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415610fd257610fd2610f13565b5060010190565b6000825160005b81811015610ffa5760208186018101518583015201610fe0565b81811115611009576000828501525b50919091019291505056fea2646970667358221220d84052747d06439dd765c2a4cd2b83ffd238d7fbf4156f14f12eca962a232a4264736f6c634300080a0033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.