Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 30 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Revoke Tokens | 8093991 | 2457 days ago | IN | 0 ETH | 0.00027935 | ||||
| Revoke Tokens | 8093986 | 2457 days ago | IN | 0 ETH | 0.00070742 | ||||
| Revoke Tokens | 8093978 | 2457 days ago | IN | 0 ETH | 0.00112612 | ||||
| Revoke Tokens | 8093972 | 2457 days ago | IN | 0 ETH | 0.00045824 | ||||
| Revoke Tokens | 8093958 | 2457 days ago | IN | 0 ETH | 0.00093025 | ||||
| Revoke Tokens | 8093571 | 2457 days ago | IN | 0 ETH | 0.00231494 | ||||
| Revoke Tokens | 8093561 | 2457 days ago | IN | 0 ETH | 0.00195555 | ||||
| Revoke Tokens | 8093552 | 2457 days ago | IN | 0 ETH | 0.00178668 | ||||
| Revoke Tokens | 8079239 | 2459 days ago | IN | 0 ETH | 0.00056649 | ||||
| Revoke Tokens | 8073885 | 2460 days ago | IN | 0 ETH | 0.0140868 | ||||
| Revoke Tokens | 8073867 | 2460 days ago | IN | 0 ETH | 0.00971434 | ||||
| Revoke Tokens | 8073538 | 2460 days ago | IN | 0 ETH | 0.00719128 | ||||
| Revoke Tokens | 8073510 | 2460 days ago | IN | 0 ETH | 0.00867808 | ||||
| Revoke Tokens | 8073491 | 2460 days ago | IN | 0 ETH | 0.0091267 | ||||
| Revoke Tokens | 8073388 | 2460 days ago | IN | 0 ETH | 0.01065616 | ||||
| Revoke Tokens | 8066930 | 2461 days ago | IN | 0 ETH | 0.00652236 | ||||
| Revoke Tokens | 8066907 | 2461 days ago | IN | 0 ETH | 0.00876932 | ||||
| Revoke Tokens | 8066872 | 2461 days ago | IN | 0 ETH | 0.00948746 | ||||
| Revoke Tokens | 8066849 | 2461 days ago | IN | 0 ETH | 0.01034398 | ||||
| Revoke Tokens | 8049788 | 2464 days ago | IN | 0 ETH | 0.00742154 | ||||
| Revoke Tokens | 8049689 | 2464 days ago | IN | 0 ETH | 0.003598 | ||||
| Revoke Tokens | 8049626 | 2464 days ago | IN | 0 ETH | 0.00359736 | ||||
| Revoke Tokens | 8049579 | 2464 days ago | IN | 0 ETH | 0.00059738 | ||||
| Revoke Tokens | 8049568 | 2464 days ago | IN | 0 ETH | 0.00053528 | ||||
| Revoke Tokens | 8049514 | 2464 days ago | IN | 0 ETH | 0.00382168 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
RevokeHandler
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2019-06-28
*/
pragma solidity ^0.4.24;
/**
* @title Math
* @dev Assorted math operations
*/
library Math {
function max64(uint64 _a, uint64 _b) internal pure returns (uint64) {
return _a >= _b ? _a : _b;
}
function min64(uint64 _a, uint64 _b) internal pure returns (uint64) {
return _a < _b ? _a : _b;
}
function max256(uint256 _a, uint256 _b) internal pure returns (uint256) {
return _a >= _b ? _a : _b;
}
function min256(uint256 _a, uint256 _b) internal pure returns (uint256) {
return _a < _b ? _a : _b;
}
}
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
// Gas optimization: this is cheaper than asserting 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
if (_a == 0) {
return 0;
}
c = _a * _b;
assert(c / _a == _b);
return c;
}
/**
* @dev Integer division of two numbers, truncating the quotient.
*/
function div(uint256 _a, uint256 _b) internal pure returns (uint256) {
// assert(_b > 0); // Solidity automatically throws when dividing by 0
// uint256 c = _a / _b;
// assert(_a == _b * c + _a % _b); // There is no case in which this doesn't hold
return _a / _b;
}
/**
* @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
*/
function sub(uint256 _a, uint256 _b) internal pure returns (uint256) {
assert(_b <= _a);
return _a - _b;
}
/**
* @dev Adds two numbers, throws on overflow.
*/
function add(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
c = _a + _b;
assert(c >= _a);
return c;
}
}
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* See https://github.com/ethereum/EIPs/issues/179
*/
contract ERC20Basic {
function totalSupply() public view returns (uint256);
function balanceOf(address _who) public view returns (uint256);
function transfer(address _to, uint256 _value) public returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
}
/**
* @title ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
contract ERC20 is ERC20Basic {
function allowance(address _owner, address _spender)
public view returns (uint256);
function transferFrom(address _from, address _to, uint256 _value)
public returns (bool);
function approve(address _spender, uint256 _value) public returns (bool);
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
}
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure.
* To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
function safeTransfer(
ERC20Basic _token,
address _to,
uint256 _value
)
internal
{
require(_token.transfer(_to, _value));
}
function safeTransferFrom(
ERC20 _token,
address _from,
address _to,
uint256 _value
)
internal
{
require(_token.transferFrom(_from, _to, _value));
}
function safeApprove(
ERC20 _token,
address _spender,
uint256 _value
)
internal
{
require(_token.approve(_spender, _value));
}
}
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
contract Ownable {
address public owner;
event OwnershipRenounced(address indexed previousOwner);
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev The Ownable constructor sets the original `owner` of the contract to the sender
* account.
*/
constructor() public {
owner = msg.sender;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
/**
* @dev Allows the current owner to relinquish control of the contract.
* @notice Renouncing to ownership will leave the contract without an owner.
* It will not be possible to call the functions with the `onlyOwner`
* modifier anymore.
*/
function renounceOwnership() public onlyOwner {
emit OwnershipRenounced(owner);
owner = address(0);
}
/**
* @dev Allows the current owner to transfer control of the contract to a newOwner.
* @param _newOwner The address to transfer ownership to.
*/
function transferOwnership(address _newOwner) public onlyOwner {
_transferOwnership(_newOwner);
}
/**
* @dev Transfers control of the contract to a newOwner.
* @param _newOwner The address to transfer ownership to.
*/
function _transferOwnership(address _newOwner) internal {
require(_newOwner != address(0));
emit OwnershipTransferred(owner, _newOwner);
owner = _newOwner;
}
}
/**
* @title Claimable
* @dev Extension for the Ownable contract, where the ownership needs to be claimed.
* This allows the new owner to accept the transfer.
*/
contract Claimable is Ownable {
address public pendingOwner;
/**
* @dev Modifier throws if called by any account other than the pendingOwner.
*/
modifier onlyPendingOwner() {
require(msg.sender == pendingOwner);
_;
}
/**
* @dev Allows the current owner to set the pendingOwner address.
* @param newOwner The address to transfer ownership to.
*/
function transferOwnership(address newOwner) public onlyOwner {
pendingOwner = newOwner;
}
/**
* @dev Allows the pendingOwner address to finalize the transfer.
*/
function claimOwnership() public onlyPendingOwner {
emit OwnershipTransferred(owner, pendingOwner);
owner = pendingOwner;
pendingOwner = address(0);
}
}
/**
* @title Basic token
* @dev Basic version of StandardToken, with no allowances.
*/
contract BasicToken is ERC20Basic {
using SafeMath for uint256;
mapping(address => uint256) internal balances;
uint256 internal totalSupply_;
/**
* @dev Total number of tokens in existence
*/
function totalSupply() public view returns (uint256) {
return totalSupply_;
}
/**
* @dev Transfer token for a specified address
* @param _to The address to transfer to.
* @param _value The amount to be transferred.
*/
function transfer(address _to, uint256 _value) public returns (bool) {
require(_value <= balances[msg.sender]);
require(_to != address(0));
balances[msg.sender] = balances[msg.sender].sub(_value);
balances[_to] = balances[_to].add(_value);
emit Transfer(msg.sender, _to, _value);
return true;
}
/**
* @dev Gets the balance of the specified address.
* @param _owner The address to query the the balance of.
* @return An uint256 representing the amount owned by the passed address.
*/
function balanceOf(address _owner) public view returns (uint256) {
return balances[_owner];
}
}
/**
* @title Standard ERC20 token
*
* @dev Implementation of the basic standard token.
* https://github.com/ethereum/EIPs/issues/20
* Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
*/
contract StandardToken is ERC20, BasicToken {
mapping (address => mapping (address => uint256)) internal allowed;
/**
* @dev Transfer tokens from one address to another
* @param _from address The address which you want to send tokens from
* @param _to address The address which you want to transfer to
* @param _value uint256 the amount of tokens to be transferred
*/
function transferFrom(
address _from,
address _to,
uint256 _value
)
public
returns (bool)
{
require(_value <= balances[_from]);
require(_value <= allowed[_from][msg.sender]);
require(_to != address(0));
balances[_from] = balances[_from].sub(_value);
balances[_to] = balances[_to].add(_value);
allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
emit Transfer(_from, _to, _value);
return true;
}
/**
* @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
* 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
* @param _spender The address which will spend the funds.
* @param _value The amount of tokens to be spent.
*/
function approve(address _spender, uint256 _value) public returns (bool) {
allowed[msg.sender][_spender] = _value;
emit Approval(msg.sender, _spender, _value);
return true;
}
/**
* @dev Function to check the amount of tokens that an owner allowed to a spender.
* @param _owner address The address which owns the funds.
* @param _spender address The address which will spend the funds.
* @return A uint256 specifying the amount of tokens still available for the spender.
*/
function allowance(
address _owner,
address _spender
)
public
view
returns (uint256)
{
return allowed[_owner][_spender];
}
/**
* @dev Increase the amount of tokens that an owner allowed to a spender.
* approve should be called when allowed[_spender] == 0. To increment
* allowed value is better to use this function to avoid 2 calls (and wait until
* the first transaction is mined)
* From MonolithDAO Token.sol
* @param _spender The address which will spend the funds.
* @param _addedValue The amount of tokens to increase the allowance by.
*/
function increaseApproval(
address _spender,
uint256 _addedValue
)
public
returns (bool)
{
allowed[msg.sender][_spender] = (
allowed[msg.sender][_spender].add(_addedValue));
emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
/**
* @dev Decrease the amount of tokens that an owner allowed to a spender.
* approve should be called when allowed[_spender] == 0. To decrement
* allowed value is better to use this function to avoid 2 calls (and wait until
* the first transaction is mined)
* From MonolithDAO Token.sol
* @param _spender The address which will spend the funds.
* @param _subtractedValue The amount of tokens to decrease the allowance by.
*/
function decreaseApproval(
address _spender,
uint256 _subtractedValue
)
public
returns (bool)
{
uint256 oldValue = allowed[msg.sender][_spender];
if (_subtractedValue >= oldValue) {
allowed[msg.sender][_spender] = 0;
} else {
allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
}
emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
}
/**
* @title Burnable Token
* @dev Token that can be irreversibly burned (destroyed).
*/
contract BurnableToken is BasicToken {
event Burn(address indexed burner, uint256 value);
/**
* @dev Burns a specific amount of tokens.
* @param _value The amount of token to be burned.
*/
function burn(uint256 _value) public {
_burn(msg.sender, _value);
}
function _burn(address _who, uint256 _value) internal {
require(_value <= balances[_who]);
// no need to require value <= totalSupply, since that would imply the
// sender's balance is greater than the totalSupply, which *should* be an assertion failure
balances[_who] = balances[_who].sub(_value);
totalSupply_ = totalSupply_.sub(_value);
emit Burn(_who, _value);
emit Transfer(_who, address(0), _value);
}
}
/**
* @title Mintable token
* @dev Simple ERC20 Token example, with mintable token creation
* Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
*/
contract MintableToken is StandardToken, Ownable {
event Mint(address indexed to, uint256 amount);
event MintFinished();
bool public mintingFinished = false;
modifier canMint() {
require(!mintingFinished);
_;
}
modifier hasMintPermission() {
require(msg.sender == owner);
_;
}
/**
* @dev Function to mint tokens
* @param _to The address that will receive the minted tokens.
* @param _amount The amount of tokens to mint.
* @return A boolean that indicates if the operation was successful.
*/
function mint(
address _to,
uint256 _amount
)
public
hasMintPermission
canMint
returns (bool)
{
totalSupply_ = totalSupply_.add(_amount);
balances[_to] = balances[_to].add(_amount);
emit Mint(_to, _amount);
emit Transfer(address(0), _to, _amount);
return true;
}
/**
* @dev Function to stop minting new tokens.
* @return True if the operation was successful.
*/
function finishMinting() public onlyOwner canMint returns (bool) {
mintingFinished = true;
emit MintFinished();
return true;
}
}
/**
* @title Contracts that should not own Ether
* @author Remco Bloemen <remco@2π.com>
* @dev This tries to block incoming ether to prevent accidental loss of Ether. Should Ether end up
* in the contract, it will allow the owner to reclaim this Ether.
* @notice Ether can still be sent to this contract by:
* calling functions labeled `payable`
* `selfdestruct(contract_address)`
* mining directly to the contract address
*/
contract HasNoEther is Ownable {
/**
* @dev Constructor that rejects incoming Ether
* The `payable` flag is added so we can access `msg.value` without compiler warning. If we
* leave out payable, then Solidity will allow inheriting contracts to implement a payable
* constructor. By doing it this way we prevent a payable constructor from working. Alternatively
* we could use assembly to access msg.value.
*/
constructor() public payable {
require(msg.value == 0);
}
/**
* @dev Disallows direct send by setting a default function without the `payable` flag.
*/
function() external {
}
/**
* @dev Transfer all Ether held by the contract to the owner.
*/
function reclaimEther() external onlyOwner {
owner.transfer(address(this).balance);
}
}
/**
* @title Contracts that should be able to recover tokens
* @author SylTi
* @dev This allow a contract to recover any ERC20 token received in a contract by transferring the balance to the contract owner.
* This will prevent any accidental loss of tokens.
*/
contract CanReclaimToken is Ownable {
using SafeERC20 for ERC20Basic;
/**
* @dev Reclaim all ERC20Basic compatible tokens
* @param _token ERC20Basic The address of the token contract
*/
function reclaimToken(ERC20Basic _token) external onlyOwner {
uint256 balance = _token.balanceOf(this);
_token.safeTransfer(owner, balance);
}
}
/**
* @title Contracts that should not own Tokens
* @author Remco Bloemen <remco@2π.com>
* @dev This blocks incoming ERC223 tokens to prevent accidental loss of tokens.
* Should tokens (any ERC20Basic compatible) end up in the contract, it allows the
* owner to reclaim the tokens.
*/
contract HasNoTokens is CanReclaimToken {
/**
* @dev Reject all ERC223 compatible tokens
* @param _from address The address that is transferring the tokens
* @param _value uint256 the amount of the specified token
* @param _data Bytes The data passed from the caller.
*/
function tokenFallback(
address _from,
uint256 _value,
bytes _data
)
external
pure
{
_from;
_value;
_data;
revert();
}
}
/**
* @title Contracts that should not own Contracts
* @author Remco Bloemen <remco@2π.com>
* @dev Should contracts (anything Ownable) end up being owned by this contract, it allows the owner
* of this contract to reclaim ownership of the contracts.
*/
contract HasNoContracts is Ownable {
/**
* @dev Reclaim ownership of Ownable contracts
* @param _contractAddr The address of the Ownable to be reclaimed.
*/
function reclaimContract(address _contractAddr) external onlyOwner {
Ownable contractInst = Ownable(_contractAddr);
contractInst.transferOwnership(owner);
}
}
/**
* @title Base contract for contracts that should not own things.
* @author Remco Bloemen <remco@2π.com>
* @dev Solves a class of errors where a contract accidentally becomes owner of Ether, Tokens or
* Owned contracts. See respective base contracts for details.
*/
contract NoOwner is HasNoEther, HasNoTokens, HasNoContracts {
}
/**
* @title Pausable Token
* @dev Token that can be paused and unpaused. Only whitelisted addresses can transfer when paused
*/
contract PausableToken is StandardToken, Ownable {
event Pause();
event Unpause();
bool public paused = false;
mapping(address => bool) public whitelist;
/**
* @dev called by the owner to pause, triggers stopped state
*/
function pause() onlyOwner public {
require(!paused);
paused = true;
emit Pause();
}
/**
* @dev called by the owner to unpause, returns to normal state
*/
function unpause() onlyOwner public {
require(paused);
paused = false;
emit Unpause();
}
/**
* @notice add/remove whitelisted addresses
* @param who Address which is added or removed
* @param allowTransfers allow or deny dtransfers when paused to the who
*/
function setWhitelisted(address who, bool allowTransfers) onlyOwner public {
whitelist[who] = allowTransfers;
}
function transfer(address _to, uint256 _value) public returns (bool){
require(!paused || whitelist[msg.sender]);
return super.transfer(_to, _value);
}
function transferFrom(address _from, address _to, uint256 _value) public returns (bool){
require(!paused || whitelist[msg.sender] || whitelist[_from]);
return super.transferFrom(_from, _to, _value);
}
}
/**
* @title Revocable Token
* @dev Token that can be revokend until minting is not finished.
*/
contract RevocableToken is MintableToken {
event Revoke(address indexed from, uint256 value);
modifier canRevoke() {
require(!mintingFinished);
_;
}
/**
* @dev Revokes minted tokens
* @param _from The address whose tokens are revoked
* @param _value The amount of token to revoke
*/
function revoke(address _from, uint256 _value) onlyOwner canRevoke public returns (bool) {
require(_value <= balances[_from]);
// no need to require value <= totalSupply, since that would imply the
// sender's balance is greater than the totalSupply, which *should* be an assertion failure
balances[_from] = balances[_from].sub(_value);
totalSupply_ = totalSupply_.sub(_value);
emit Revoke(_from, _value);
emit Transfer(_from, address(0), _value);
return true;
}
}
contract RewardsToken is RevocableToken, /*MintableToken,*/ PausableToken, BurnableToken, NoOwner {
string public symbol = 'RWRD';
string public name = 'Rewards Cash';
uint8 public constant decimals = 18;
uint256 public hardCap = 10 ** (18 + 9); //1B tokens. Max amount of tokens which can be minted
/**
* @notice Function to mint tokens
* @dev This function checks hardCap and calls MintableToken.mint()
* @param _to The address that will receive the minted tokens.
* @param _amount The amount of tokens to mint.
* @return A boolean that indicates if the operation was successful.
*/
function mint(address _to, uint256 _amount) public returns (bool){
require(totalSupply_.add(_amount) <= hardCap);
return super.mint(_to, _amount);
}
}
contract RewardsMinter is Claimable, NoOwner {
using SafeMath for uint256;
struct MintProposal {
address beneficiary; //Who will receive tokens
uint256 amount; //How much tokens will be minted
mapping(address => bool) signers; //Who already signed
uint256 weight; //Current proposal weight
bool minted; //If tokens where already minted for this proposal
}
RewardsToken public token;
mapping(address => uint256) public signers; //Mapping of proposal signer to his weight
uint256 public requiredWeight; //Weight required for proposal to be confirmed
MintProposal[] public mintProposals;
event SignerWeightChange(address indexed signer, uint256 oldWeight, uint256 newWeight);
event RequiredWeightChange(uint256 oldWeight, uint256 newWeight);
event MintProposalCreated(uint256 proposalId, address indexed beneficiary, uint256 amount);
event MintProposalApproved(uint256 proposalId, address indexed signer);
event MintProposalCompleted(uint256 proposalId, address indexed beneficiary, uint256 amount);
modifier onlySigner(){
require(signers[msg.sender] > 0 );
_;
}
constructor(address _token, uint256 _requiredWeight, uint256 _ownerWeight) public {
if(_token == 0x0){
token = new RewardsToken();
token.setWhitelisted(address(this), true);
token.setWhitelisted(msg.sender, true);
token.pause();
}else{
token = RewardsToken(_token);
}
requiredWeight = _requiredWeight; //Requires at least one signer for proposal
signers[owner] = _ownerWeight; //makes owner also the signer
emit SignerWeightChange(owner, 0, _ownerWeight);
}
function mintProposalCount() view public returns(uint256){
return mintProposals.length;
}
/**
* @notice Add/Remove/Change signer
*/
function setSignerWeight(address signer, uint256 weight) onlyOwner external {
emit SignerWeightChange(signer, signers[signer], weight);
signers[signer] = weight;
}
function setRequiredWeight(uint256 weight) onlyOwner external {
requiredWeight = weight;
}
/**
* @notice Create new proposal and vote for it
*/
function createProposal(address _beneficiary, uint256 _amount) onlySigner external returns(uint256){
uint256 idx = mintProposals.length++;
mintProposals[idx].beneficiary = _beneficiary;
mintProposals[idx].amount = _amount;
mintProposals[idx].minted = false;
mintProposals[idx].signers[msg.sender] = true;
mintProposals[idx].weight = signers[msg.sender];
emit MintProposalCreated(idx, _beneficiary, _amount);
emit MintProposalApproved(idx, msg.sender);
mintIfWeightEnough(idx);
return idx;
}
/**
* @notice Create new proposal and vote for it
*/
function approveProposal(uint256 idx, address _beneficiary, uint256 _amount) onlySigner external {
require(mintProposals[idx].beneficiary == _beneficiary);
require(mintProposals[idx].amount == _amount);
require(mintProposals[idx].signers[msg.sender] == false);
mintProposals[idx].signers[msg.sender] = true;
mintProposals[idx].weight = mintProposals[idx].weight.add(signers[msg.sender]);
emit MintProposalApproved(idx, msg.sender);
mintIfWeightEnough(idx);
}
/**
* @dev Check current proposal weight and mint if ready
*/
function mintIfWeightEnough(uint256 idx) internal {
if(mintProposals[idx].weight >= requiredWeight && !mintProposals[idx].minted){
mint(mintProposals[idx].beneficiary, mintProposals[idx].amount);
mintProposals[idx].minted = true;
emit MintProposalCompleted(idx, mintProposals[idx].beneficiary, mintProposals[idx].amount);
}
}
/**
* @dev Function to mint tokens
* @param _to The address that will receive the minted tokens.
* @param _amount The amount of tokens to mint.
* @return A boolean that indicates if the operation was successful.
*/
function mint(address _to, uint256 _amount) internal returns (bool){
return token.mint(_to, _amount);
}
//Token management
function tokenPause() onlyOwner public {
token.pause();
}
function tokenUnpause() onlyOwner public {
token.unpause();
}
function tokenSetWhitelisted(address who, bool allowTransfers) onlyOwner public {
token.setWhitelisted(who, allowTransfers);
}
function tokenRevoke(address _from, uint256 _value) onlyOwner public {
token.revoke(_from, _value);
}
function tokenFinishMinting() onlyOwner public {
token.finishMinting();
}
}
contract RevokeHandler is Claimable, NoOwner {
RewardsToken public token;
constructor(address _token) public {
token = RewardsToken(_token);
}
function getTokenAmount(address _holder) private view returns (uint256){
return token.balanceOf(_holder);
}
function revokeTokens(address[] _holders) public onlyOwner {
uint256 amount = 0;
require(_holders.length > 0, "Empty holder addresses");
for (uint i = 0; i < _holders.length; i++) {
amount = getTokenAmount(_holders[i]);
if(amount > 0) {
token.revoke(_holders[i], amount);
}
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":false,"inputs":[{"name":"_holders","type":"address[]"}],"name":"revokeTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"reclaimToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_contractAddr","type":"address"}],"name":"reclaimContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claimOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"reclaimEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"tokenFallback","outputs":[],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"pendingOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_token","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":false,"stateMutability":"nonpayable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]Contract Creation Code
608060405234801561001057600080fd5b5060405160208061101883398101806040528101908080519060200190929190505050336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060003414151561008257600080fd5b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050610f45806100d36000396000f3006080604052600436106100af576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680630423427d146100be57806317ffc320146101245780632aed7f3f146101675780634e71e0c8146101aa578063715018a6146101c15780638da5cb5b146101d85780639f727c271461022f578063c0ee0b8a14610246578063e30c3978146102ab578063f2fde38b14610302578063fc0c546a14610345575b3480156100bb57600080fd5b50005b3480156100ca57600080fd5b506101226004803603810190808035906020019082018035906020019080806020026020016040519081016040528093929190818152602001838360200280828437820191505050505050919291929050505061039c565b005b34801561013057600080fd5b50610165600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506105db565b005b34801561017357600080fd5b506101a8600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610760565b005b3480156101b657600080fd5b506101bf610898565b005b3480156101cd57600080fd5b506101d6610a37565b005b3480156101e457600080fd5b506101ed610b39565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561023b57600080fd5b50610244610b5e565b005b34801561025257600080fd5b506102a9600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001908201803590602001919091929391929390505050610c3a565b005b3480156102b757600080fd5b506102c0610c3f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561030e57600080fd5b50610343600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c65565b005b34801561035157600080fd5b5061035a610d04565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6000806000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156103fa57600080fd5b6000915060008351111515610477576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f456d70747920686f6c646572206164647265737365730000000000000000000081525060200191505060405180910390fd5b600090505b82518110156105d6576104a5838281518110151561049657fe5b90602001906020020151610d2a565b915060008211156105c957600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663eac449d984838151811015156104fc57fe5b90602001906020020151846040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561058c57600080fd5b505af11580156105a0573d6000803e3d6000fd5b505050506040513d60208110156105b657600080fd5b8101908080519060200190929190505050505b808060010191505061047c565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561063857600080fd5b8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b1580156106d357600080fd5b505af11580156106e7573d6000803e3d6000fd5b505050506040513d60208110156106fd57600080fd5b8101908080519060200190929190505050905061075c6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828473ffffffffffffffffffffffffffffffffffffffff16610e2b9092919063ffffffff16565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156107bd57600080fd5b8190508073ffffffffffffffffffffffffffffffffffffffff1663f2fde38b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b15801561087c57600080fd5b505af1158015610890573d6000803e3d6000fd5b505050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156108f457600080fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610a9257600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482060405160405180910390a260008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610bb957600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610c37573d6000803e3d6000fd5b50565b600080fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610cc057600080fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b158015610de957600080fd5b505af1158015610dfd573d6000803e3d6000fd5b505050506040513d6020811015610e1357600080fd5b81019080805190602001909291905050509050919050565b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015610ece57600080fd5b505af1158015610ee2573d6000803e3d6000fd5b505050506040513d6020811015610ef857600080fd5b81019080805190602001909291905050501515610f1457600080fd5b5050505600a165627a7a72305820a9e1a0a1e316ee212ce39acb40eea9780c5cd29ef7b70c9f41f3d3ec893569bd002900000000000000000000000072db491f7181ee7222ce34a9c163195400b5f4e1
Deployed Bytecode
0x6080604052600436106100af576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680630423427d146100be57806317ffc320146101245780632aed7f3f146101675780634e71e0c8146101aa578063715018a6146101c15780638da5cb5b146101d85780639f727c271461022f578063c0ee0b8a14610246578063e30c3978146102ab578063f2fde38b14610302578063fc0c546a14610345575b3480156100bb57600080fd5b50005b3480156100ca57600080fd5b506101226004803603810190808035906020019082018035906020019080806020026020016040519081016040528093929190818152602001838360200280828437820191505050505050919291929050505061039c565b005b34801561013057600080fd5b50610165600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506105db565b005b34801561017357600080fd5b506101a8600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610760565b005b3480156101b657600080fd5b506101bf610898565b005b3480156101cd57600080fd5b506101d6610a37565b005b3480156101e457600080fd5b506101ed610b39565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561023b57600080fd5b50610244610b5e565b005b34801561025257600080fd5b506102a9600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001908201803590602001919091929391929390505050610c3a565b005b3480156102b757600080fd5b506102c0610c3f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561030e57600080fd5b50610343600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c65565b005b34801561035157600080fd5b5061035a610d04565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6000806000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156103fa57600080fd5b6000915060008351111515610477576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f456d70747920686f6c646572206164647265737365730000000000000000000081525060200191505060405180910390fd5b600090505b82518110156105d6576104a5838281518110151561049657fe5b90602001906020020151610d2a565b915060008211156105c957600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663eac449d984838151811015156104fc57fe5b90602001906020020151846040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561058c57600080fd5b505af11580156105a0573d6000803e3d6000fd5b505050506040513d60208110156105b657600080fd5b8101908080519060200190929190505050505b808060010191505061047c565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561063857600080fd5b8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b1580156106d357600080fd5b505af11580156106e7573d6000803e3d6000fd5b505050506040513d60208110156106fd57600080fd5b8101908080519060200190929190505050905061075c6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828473ffffffffffffffffffffffffffffffffffffffff16610e2b9092919063ffffffff16565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156107bd57600080fd5b8190508073ffffffffffffffffffffffffffffffffffffffff1663f2fde38b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050600060405180830381600087803b15801561087c57600080fd5b505af1158015610890573d6000803e3d6000fd5b505050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156108f457600080fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610a9257600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482060405160405180910390a260008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610bb957600080fd5b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610c37573d6000803e3d6000fd5b50565b600080fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610cc057600080fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b158015610de957600080fd5b505af1158015610dfd573d6000803e3d6000fd5b505050506040513d6020811015610e1357600080fd5b81019080805190602001909291905050509050919050565b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015610ece57600080fd5b505af1158015610ee2573d6000803e3d6000fd5b505050506040513d6020811015610ef857600080fd5b81019080805190602001909291905050501515610f1457600080fd5b5050505600a165627a7a72305820a9e1a0a1e316ee212ce39acb40eea9780c5cd29ef7b70c9f41f3d3ec893569bd0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000072db491f7181ee7222ce34a9c163195400b5f4e1
-----Decoded View---------------
Arg [0] : _token (address): 0x72db491f7181ee7222ce34A9c163195400B5F4E1
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000072db491f7181ee7222ce34a9c163195400b5f4e1
Deployed Bytecode Sourcemap
25915:671:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25915:671:0;;26226:357;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26226:357:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15703:155;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15703:155:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17084:169;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17084:169:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6179:168;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6179:168:0;;;;;;4716:114;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4716:114:0;;;;;;3921:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3921:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;15122:93;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15122:93:0;;;;;;16459:172;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16459:172:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5630:27;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5630:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;5992:98;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5992:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25967:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25967:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;26226:357;26295:14;26392:6;4424:5;;;;;;;;;;;4410:19;;:10;:19;;;4402:28;;;;;;;;26312:1;26295:18;;26349:1;26331:8;:15;:19;26323:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26401:1;26392:10;;26387:190;26408:8;:15;26404:1;:19;26387:190;;;26451:27;26466:8;26475:1;26466:11;;;;;;;;;;;;;;;;;;26451:14;:27::i;:::-;26442:36;;26502:1;26493:6;:10;26490:77;;;26521:5;;;;;;;;;;;:12;;;26534:8;26543:1;26534:11;;;;;;;;;;;;;;;;;;26547:6;26521:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26521:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26521:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26521:33:0;;;;;;;;;;;;;;;;;26490:77;26425:3;;;;;;;26387:190;;;26226:357;;;:::o;15703:155::-;15770:15;4424:5;;;;;;;;;;;4410:19;;:10;:19;;;4402:28;;;;;;;;15788:6;:16;;;15805:4;15788:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15788:22:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;15788:22:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15788:22:0;;;;;;;;;;;;;;;;15770:40;;15817:35;15837:5;;;;;;;;;;;15844:7;15817:6;:19;;;;:35;;;;;:::i;:::-;15703:155;;:::o;17084:169::-;17158:20;4424:5;;;;;;;;;;;4410:19;;:10;:19;;;4402:28;;;;;;;;17189:13;17158:45;;17210:12;:30;;;17241:5;;;;;;;;;;;17210:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17210:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;17210:37:0;;;;17084:169;;:::o;6179:168::-;5816:12;;;;;;;;;;;5802:26;;:10;:26;;;5794:35;;;;;;;;6269:12;;;;;;;;;;;6241:41;;6262:5;;;;;;;;;;;6241:41;;;;;;;;;;;;6297:12;;;;;;;;;;;6289:5;;:20;;;;;;;;;;;;;;;;;;6339:1;6316:12;;:25;;;;;;;;;;;;;;;;;;6179:168::o;4716:114::-;4424:5;;;;;;;;;;;4410:19;;:10;:19;;;4402:28;;;;;;;;4793:5;;;;;;;;;;;4774:25;;;;;;;;;;;;4822:1;4806:5;;:18;;;;;;;;;;;;;;;;;;4716:114::o;3921:20::-;;;;;;;;;;;;;:::o;15122:93::-;4424:5;;;;;;;;;;;4410:19;;:10;:19;;;4402:28;;;;;;;;15172:5;;;;;;;;;;;:14;;:37;15195:4;15187:21;;;15172:37;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;15172:37:0;15122:93::o;16459:172::-;16617:8;;;5630:27;;;;;;;;;;;;;:::o;5992:98::-;4424:5;;;;;;;;;;;4410:19;;:10;:19;;;4402:28;;;;;;;;6076:8;6061:12;;:23;;;;;;;;;;;;;;;;;;5992:98;:::o;25967:25::-;;;;;;;;;;;;;:::o;26093:121::-;26156:7;26182:5;;;;;;;;;;;:15;;;26198:7;26182:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26182:24:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26182:24:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26182:24:0;;;;;;;;;;;;;;;;26175:31;;26093:121;;;:::o;3181:157::-;3303:6;:15;;;3319:3;3324:6;3303:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3303:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;3303:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;3303:28:0;;;;;;;;;;;;;;;;3295:37;;;;;;;;3181:157;;;:::o
Swarm Source
bzzr://a9e1a0a1e316ee212ce39acb40eea9780c5cd29ef7b70c9f41f3d3ec893569bd
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 32 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.