ETH Price: $2,150.59 (-0.75%)

Contract

0x02E2c4E6b91734f1F3D2Cf4Bc4ec4dB4A51bF04F
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer132762552021-09-22 15:05:421639 days ago1632323142IN
0x02E2c4E6...4A51bF04F
0 ETH0.0020252667.59907458
Transfer132762272021-09-22 14:59:281639 days ago1632322768IN
0x02E2c4E6...4A51bF04F
0 ETH0.0035056867.59907458
Transfer128381232021-07-16 13:16:321707 days ago1626441392IN
0x02E2c4E6...4A51bF04F
0 ETH0.0018673936
Transfer117769162021-02-02 12:52:541871 days ago1612270374IN
0x02E2c4E6...4A51bF04F
0 ETH0.0056466107.00000145
Transfer114221592020-12-10 1:12:131926 days ago1607562733IN
0x02E2c4E6...4A51bF04F
0 ETH0.0013873236.729
Transfer112045452020-11-06 15:16:301959 days ago1604675790IN
0x02E2c4E6...4A51bF04F
0 ETH0.00398872105.60000135
Transfer110679242020-10-16 16:08:491980 days ago1602864529IN
0x02E2c4E6...4A51bF04F
0 ETH0.00395775
Transfer110482452020-10-13 16:00:271983 days ago1602604827IN
0x02E2c4E6...4A51bF04F
0 ETH0.003776100
Transfer110482092020-10-13 15:50:391983 days ago1602604239IN
0x02E2c4E6...4A51bF04F
0 ETH0.004484685.00000072
Transfer110351032020-10-11 15:48:491985 days ago1602431329IN
0x02E2c4E6...4A51bF04F
0 ETH0.0022982243.56000311
Transfer110349792020-10-11 15:18:571985 days ago1602429537IN
0x02E2c4E6...4A51bF04F
0 ETH0.0022982243.56000311
Transfer110349342020-10-11 15:10:251985 days ago1602429025IN
0x02E2c4E6...4A51bF04F
0 ETH0.0022982243.56000311
Transfer110349152020-10-11 15:06:161985 days ago1602428776IN
0x02E2c4E6...4A51bF04F
0 ETH0.0022987443.56000311
Transfer110349132020-10-11 15:05:551985 days ago1602428755IN
0x02E2c4E6...4A51bF04F
0 ETH0.0016453443.56000311
Transfer110348622020-10-11 14:54:081985 days ago1602428048IN
0x02E2c4E6...4A51bF04F
0 ETH0.0018130548
Transfer110070982020-10-07 6:50:051990 days ago1602053405IN
0x02E2c4E6...4A51bF04F
0 ETH0.0022317442.3
Transfer105946772020-08-04 17:31:072053 days ago1596562267IN
0x02E2c4E6...4A51bF04F
0 ETH0.0015481641
Transfer105853012020-08-03 6:50:062055 days ago1596437406IN
0x02E2c4E6...4A51bF04F
0 ETH0.0015481641
Transfer105813562020-08-02 16:01:552055 days ago1596384115IN
0x02E2c4E6...4A51bF04F
0 ETH0.0015954169
Transfer105813452020-08-02 15:58:522055 days ago1596383932IN
0x02E2c4E6...4A51bF04F
0 ETH0.0015954169
Transfer105812452020-08-02 15:36:082055 days ago1596382568IN
0x02E2c4E6...4A51bF04F
0 ETH0.0030963282.00000185
Transfer105811072020-08-02 15:07:422055 days ago1596380862IN
0x02E2c4E6...4A51bF04F
0 ETH0.003398490
Transfer105759972020-08-01 20:09:552056 days ago1596312595IN
0x02E2c4E6...4A51bF04F
0 ETH0.002548867.5
Transfer105750282020-08-01 16:39:452056 days ago1596299985IN
0x02E2c4E6...4A51bF04F
0 ETH0.003398490
Transfer105719742020-08-01 5:42:452057 days ago1596260565IN
0x02E2c4E6...4A51bF04F
0 ETH0.0016842474
View all transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
View All Internal Transactions
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
RaisrToken

Compiler Version
v0.4.11+commit.68ef5810

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2017-08-19
*/

pragma solidity ^0.4.8;
 
// ----------------------------------------------------------------------------------------------
// Sample fixed supply token contract
// Enjoy. (c) BokkyPooBah 2017. The MIT Licence.
// ----------------------------------------------------------------------------------------------
 
// ERC Token Standard #20 Interface
// https://github.com/ethereum/EIPs/issues/20
contract ERC20Interface {
    // Get the total token supply
    function totalSupply() constant returns (uint256 totalSupply);
 
    // Get the account balance of another account with address _owner
    function balanceOf(address _owner) constant returns (uint256 balance);
 
    // Send _value amount of tokens to address _to
    function transfer(address _to, uint256 _value) returns (bool success);
 
    // Send _value amount of tokens from address _from to address _to
    function transferFrom(address _from, address _to, uint256 _value) returns (bool success);
 
    // Allow _spender to withdraw from your account, multiple times, up to the _value amount.
    // If this function is called again it overwrites the current allowance with _value.
    // this function is required for some DEX functionality
    function approve(address _spender, uint256 _value) returns (bool success);
 
    // Returns the amount which _spender is still allowed to withdraw from _owner
    function allowance(address _owner, address _spender) constant returns (uint256 remaining);
 
    // Triggered when tokens are transferred.
    event Transfer(address indexed _from, address indexed _to, uint256 _value);
 
    // Triggered whenever approve(address _spender, uint256 _value) is called.
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}
 
contract RaisrToken is ERC20Interface {
    string public constant symbol = "RAISR";
    string public constant name = "Raisr Coin";
    uint8 public constant decimals = 18;
    uint256 _totalSupply = 55000000000000000000000000;
    
    // Owner of this contract
    address public owner;
 
    // Balances for each account
    mapping(address => uint256) balances;
 
    // Owner of account approves the transfer of an amount to another account
    mapping(address => mapping (address => uint256)) allowed;
 
    // Functions with this modifier can only be executed by the owner
    modifier onlyOwner() {
        if (msg.sender != owner) {
            throw;
        }
        _;
    }
 
    // Constructor
    function RaisrToken() {
        owner = 0x0EFe5fAbF9a561755EcCA1bf0F2213B541BE95E7;
        balances[owner] = _totalSupply;
    }
 
    function totalSupply() constant returns (uint256 totalSupply) {
        totalSupply = _totalSupply;
    }
 
    // What is the balance of a particular account?
    function balanceOf(address _owner) constant returns (uint256 balance) {
        return balances[_owner];
    }
 
    // Transfer the balance from owner's account to another account
    function transfer(address _to, uint256 _amount) returns (bool success) {
        if (balances[msg.sender] >= _amount 
            && _amount > 0
            && balances[_to] + _amount > balances[_to]) {
            balances[msg.sender] -= _amount;
            balances[_to] += _amount;
            Transfer(msg.sender, _to, _amount);
            return true;
        } else {
            return false;
        }
    }
 
    // Send _value amount of tokens from address _from to address _to
    // The transferFrom method is used for a withdraw workflow, allowing contracts to send
    // tokens on your behalf, for example to "deposit" to a contract address and/or to charge
    // fees in sub-currencies; the command should fail unless the _from account has
    // deliberately authorized the sender of the message via some mechanism; we propose
    // these standardized APIs for approval:
    function transferFrom(
        address _from,
        address _to,
        uint256 _amount
   ) returns (bool success) {
       if (balances[_from] >= _amount
           && allowed[_from][msg.sender] >= _amount
           && _amount > 0
           && balances[_to] + _amount > balances[_to]) {
           balances[_from] -= _amount;
           allowed[_from][msg.sender] -= _amount;
           balances[_to] += _amount;
           Transfer(_from, _to, _amount);
           return true;
       } else {
           return false;
       }
   }

   // Allow _spender to withdraw from your account, multiple times, up to the _value amount.
   // If this function is called again it overwrites the current allowance with _value.
   function approve(address _spender, uint256 _amount) returns (bool success) {
       allowed[msg.sender][_spender] = _amount;
       Approval(msg.sender, _spender, _amount);
       return true;
   }

   function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
       return allowed[_owner][_spender];
   }
}

Contract Security Audit

Contract ABI

API
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"totalSupply","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]

60606040526a2d7eb3f96e070d97000000600055341561001b57fe5b5b60018054600160a060020a031916730efe5fabf9a561755ecca1bf0f2213b541be95e7179081905560008054600160a060020a03929092168152600260205260409020555b5b61068f806100716000396000f300606060405236156100a15763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100a3578063095ea7b31461013357806318160ddd1461016657806323b872dd14610188578063313ce567146101c157806370a08231146101e75780638da5cb5b1461021557806395d89b4114610241578063a9059cbb146102d1578063dd62ed3e14610304575bfe5b34156100ab57fe5b6100b3610338565b6040805160208082528351818301528351919283929083019185019080838382156100f9575b8051825260208311156100f957601f1990920191602091820191016100d9565b505050905090810190601f1680156101255780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561013b57fe5b610152600160a060020a036004351660243561036f565b604080519115158252519081900360200190f35b341561016e57fe5b6101766103da565b60408051918252519081900360200190f35b341561019057fe5b610152600160a060020a03600435811690602435166044356103e1565b604080519115158252519081900360200190f35b34156101c957fe5b6101d16104fb565b6040805160ff9092168252519081900360200190f35b34156101ef57fe5b610176600160a060020a0360043516610500565b60408051918252519081900360200190f35b341561021d57fe5b61022561051f565b60408051600160a060020a039092168252519081900360200190f35b341561024957fe5b6100b361052e565b6040805160208082528351818301528351919283929083019185019080838382156100f9575b8051825260208311156100f957601f1990920191602091820191016100d9565b505050905090810190601f1680156101255780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102d957fe5b610152600160a060020a0360043516602435610565565b604080519115158252519081900360200190f35b341561030c57fe5b610176600160a060020a0360043581169060243516610636565b60408051918252519081900360200190f35b60408051808201909152600a81527f526169737220436f696e00000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260036020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b6000545b90565b600160a060020a0383166000908152600260205260408120548290108015906104315750600160a060020a0380851660009081526003602090815260408083203390941683529290522054829010155b801561043d5750600082115b80156104625750600160a060020a038316600090815260026020526040902054828101115b156104ef57600160a060020a03808516600081815260026020818152604080842080548990039055600382528084203387168552825280842080548990039055948816808452918152918490208054870190558351868152935190937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a35060016104f3565b5060005b5b9392505050565b601281565b600160a060020a0381166000908152600260205260409020545b919050565b600154600160a060020a031681565b60408051808201909152600581527f5241495352000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a03331660009081526002602052604081205482901080159061058e5750600082115b80156105b35750600160a060020a038316600090815260026020526040902054828101115b1561062757600160a060020a03338116600081815260026020908152604080832080548890039055938716808352918490208054870190558351868152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35060016103d4565b5060006103d4565b5b92915050565b600160a060020a038083166000908152600360209081526040808320938516835292905220545b929150505600a165627a7a72305820ea9bf7b4552e3b366bc9cee2d02fff3194683316c5419edf7178f14f9aaf8ea40029

Deployed Bytecode

0x606060405236156100a15763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100a3578063095ea7b31461013357806318160ddd1461016657806323b872dd14610188578063313ce567146101c157806370a08231146101e75780638da5cb5b1461021557806395d89b4114610241578063a9059cbb146102d1578063dd62ed3e14610304575bfe5b34156100ab57fe5b6100b3610338565b6040805160208082528351818301528351919283929083019185019080838382156100f9575b8051825260208311156100f957601f1990920191602091820191016100d9565b505050905090810190601f1680156101255780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561013b57fe5b610152600160a060020a036004351660243561036f565b604080519115158252519081900360200190f35b341561016e57fe5b6101766103da565b60408051918252519081900360200190f35b341561019057fe5b610152600160a060020a03600435811690602435166044356103e1565b604080519115158252519081900360200190f35b34156101c957fe5b6101d16104fb565b6040805160ff9092168252519081900360200190f35b34156101ef57fe5b610176600160a060020a0360043516610500565b60408051918252519081900360200190f35b341561021d57fe5b61022561051f565b60408051600160a060020a039092168252519081900360200190f35b341561024957fe5b6100b361052e565b6040805160208082528351818301528351919283929083019185019080838382156100f9575b8051825260208311156100f957601f1990920191602091820191016100d9565b505050905090810190601f1680156101255780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102d957fe5b610152600160a060020a0360043516602435610565565b604080519115158252519081900360200190f35b341561030c57fe5b610176600160a060020a0360043581169060243516610636565b60408051918252519081900360200190f35b60408051808201909152600a81527f526169737220436f696e00000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260036020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b6000545b90565b600160a060020a0383166000908152600260205260408120548290108015906104315750600160a060020a0380851660009081526003602090815260408083203390941683529290522054829010155b801561043d5750600082115b80156104625750600160a060020a038316600090815260026020526040902054828101115b156104ef57600160a060020a03808516600081815260026020818152604080842080548990039055600382528084203387168552825280842080548990039055948816808452918152918490208054870190558351868152935190937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a35060016104f3565b5060005b5b9392505050565b601281565b600160a060020a0381166000908152600260205260409020545b919050565b600154600160a060020a031681565b60408051808201909152600581527f5241495352000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a03331660009081526002602052604081205482901080159061058e5750600082115b80156105b35750600160a060020a038316600090815260026020526040902054828101115b1561062757600160a060020a03338116600081815260026020908152604080832080548890039055938716808352918490208054870190558351868152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35060016103d4565b5060006103d4565b5b92915050565b600160a060020a038083166000908152600360209081526040808320938516835292905220545b929150505600a165627a7a72305820ea9bf7b4552e3b366bc9cee2d02fff3194683316c5419edf7178f14f9aaf8ea40029

Swarm Source

bzzr://ea9bf7b4552e3b366bc9cee2d02fff3194683316c5419edf7178f14f9aaf8ea4

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
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.