ETH Price: $1,995.73 (-1.37%)

Contract

0x5a276Aeb77bCfDAc8Ac6f31BBC7416AE1A85eEF2
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer234962392025-10-03 9:04:23177 days ago1759482263IN
0x5a276Aeb...E1A85eEF2
0 ETH0.000033011.35827458
Transfer230517542025-08-02 7:02:23239 days ago1754118143IN
0x5a276Aeb...E1A85eEF2
0 ETH0.000081223.39053283
Transfer229984842025-07-25 20:16:59246 days ago1753474619IN
0x5a276Aeb...E1A85eEF2
0 ETH0.000006220.26
Transfer229972342025-07-25 16:04:47247 days ago1753459487IN
0x5a276Aeb...E1A85eEF2
0 ETH0.000021090.88
Transfer229971732025-07-25 15:52:35247 days ago1753458755IN
0x5a276Aeb...E1A85eEF2
0 ETH0.000021560.9
Transfer215526142025-01-04 17:29:11448 days ago1736011751IN
0x5a276Aeb...E1A85eEF2
0 ETH0.0002868311.80141267
Transfer215524292025-01-04 16:51:59448 days ago1736009519IN
0x5a276Aeb...E1A85eEF2
0 ETH0.000255410.5082978
Transfer215523912025-01-04 16:44:23449 days ago1736009063IN
0x5a276Aeb...E1A85eEF2
0 ETH0.0002668110.9777285
Transfer173710412023-05-30 10:05:351034 days ago1685441135IN
0x5a276Aeb...E1A85eEF2
0 ETH0.0009685739.85092167
Transfer145554922022-04-10 3:09:411449 days ago1649560181IN
0x5a276Aeb...E1A85eEF2
0 ETH0.0007388230.7779547
Transfer145554602022-04-10 3:02:431449 days ago1649559763IN
0x5a276Aeb...E1A85eEF2
0 ETH0.0009618839.65383312
Transfer127223462021-06-28 11:48:151735 days ago1624880895IN
0x5a276Aeb...E1A85eEF2
0 ETH0.0003125313
Transfer120669602021-03-19 4:11:551836 days ago1616127115IN
0x5a276Aeb...E1A85eEF2
0 ETH0.00368937154
Transfer120669602021-03-19 4:11:551836 days ago1616127115IN
0x5a276Aeb...E1A85eEF2
0 ETH0.0023957100
Transfer112974862020-11-20 21:49:481954 days ago1605908988IN
0x5a276Aeb...E1A85eEF2
0 ETH0.0006947529
Transfer112413762020-11-12 7:07:141963 days ago1605164834IN
0x5a276Aeb...E1A85eEF2
0 ETH0.0008637436
Transfer112410742020-11-12 6:01:021963 days ago1605160862IN
0x5a276Aeb...E1A85eEF2
0 ETH0.0008654736
Transfer112410422020-11-12 5:53:001963 days ago1605160380IN
0x5a276Aeb...E1A85eEF2
0 ETH0.0008654736
Transfer112410222020-11-12 5:50:051963 days ago1605160205IN
0x5a276Aeb...E1A85eEF2
0 ETH0.0008654736
Transfer112410162020-11-12 5:48:441963 days ago1605160124IN
0x5a276Aeb...E1A85eEF2
0 ETH0.0008654736
Transfer112410152020-11-12 5:48:261963 days ago1605160106IN
0x5a276Aeb...E1A85eEF2
0 ETH0.0008654736
Transfer110908772020-10-20 4:36:141986 days ago1603168574IN
0x5a276Aeb...E1A85eEF2
0 ETH0.0009126438
Transfer110804912020-10-18 14:35:571988 days ago1603031757IN
0x5a276Aeb...E1A85eEF2
0 ETH0.0008020633
Transfer108865532020-09-18 14:03:322018 days ago1600437812IN
0x5a276Aeb...E1A85eEF2
0 ETH0.00583965244
Transfer108865382020-09-18 13:59:532018 days ago1600437593IN
0x5a276Aeb...E1A85eEF2
0 ETH0.00507125212
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
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:
LoveToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-07-14
*/

pragma solidity 0.4.24;


contract EIP20Interface {
    /* This is a slight change to the ERC20 base standard.
    function totalSupply() constant returns (uint256 supply);
    is replaced with:
    uint256 public totalSupply;
    This automatically creates a getter function for the totalSupply.
    This is moved to the base contract since public getter functions are not
    currently recognised as an implementation of the matching abstract
    function by the compiler.
    */
    /// total amount of tokens
    uint256 public totalSupply;

    /// @param _owner The address from which the balance will be retrieved
    /// @return The balance
    function balanceOf(address _owner) public view returns (uint256 balance);

    /// @notice send `_value` token to `_to` from `msg.sender`
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transfer(address _to, uint256 _value) public returns (bool success);

    /// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
    /// @param _from The address of the sender
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success);

    /// @notice `msg.sender` approves `_spender` to spend `_value` tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @param _value The amount of tokens to be approved for transfer
    /// @return Whether the approval was successful or not
    function approve(address _spender, uint256 _value) public returns (bool success);

    /// @param _owner The address of the account owning tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @return Amount of remaining tokens allowed to spent
    function allowance(address _owner, address _spender) public view returns (uint256 remaining);

    // solhint-disable-next-line no-simple-event-func-name
    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}

contract LoveToken is EIP20Interface {

    uint256 constant private MAX_UINT256 = 2**256 - 1;
    
    mapping (address => mapping (address => uint256)) public allowed;
    
    string public name = "Love";
    uint8 public decimals = 0;
    string public symbol = "LOVE";

    constructor() public {
        totalSupply = MAX_UINT256;
    }

    function transfer(address _to, uint256 _value) public returns (bool success) {
        emit Transfer(msg.sender, _to, _value);
        return true;
    }

    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        uint256 allowance = allowed[_from][msg.sender];
        
        if (allowance < MAX_UINT256) {
            allowed[_from][msg.sender] -= _value;
        }
        
        emit Transfer(_from, _to, _value);
        return true;
    }

    function balanceOf(address _owner) public view returns (uint256 balance) {
        return MAX_UINT256;
    }

    function approve(address _spender, uint256 _value) public returns (bool success) {
        allowed[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

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

Contract Security Audit

Contract ABI

API
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","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"}]

60c0604052600460808190527f4c6f76650000000000000000000000000000000000000000000000000000000060a090815261003e91600291906100a4565b506003805460ff191690556040805180820190915260048082527f4c4f564500000000000000000000000000000000000000000000000000000000602090920191825261008b91816100a4565b5034801561009857600080fd5b5060001960005561013f565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106100e557805160ff1916838001178555610112565b82800160010185558215610112579182015b828111156101125782518255916020019190600101906100f7565b5061011e929150610122565b5090565b61013c91905b8082111561011e5760008155600101610128565b90565b6105608061014e6000396000f3006080604052600436106100a35763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100a8578063095ea7b31461013257806318160ddd1461016a57806323b872dd14610191578063313ce567146101bb5780635c658165146101e657806370a082311461020d57806395d89b411461022e578063a9059cbb14610243578063dd62ed3e14610267575b600080fd5b3480156100b457600080fd5b506100bd61028e565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100f75781810151838201526020016100df565b50505050905090810190601f1680156101245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561013e57600080fd5b50610156600160a060020a0360043516602435610319565b604080519115158252519081900360200190f35b34801561017657600080fd5b5061017f61037f565b60408051918252519081900360200190f35b34801561019d57600080fd5b50610156600160a060020a0360043581169060243516604435610385565b3480156101c757600080fd5b506101d0610434565b6040805160ff9092168252519081900360200190f35b3480156101f257600080fd5b5061017f600160a060020a036004358116906024351661043d565b34801561021957600080fd5b5061017f600160a060020a036004351661045a565b34801561023a57600080fd5b506100bd610461565b34801561024f57600080fd5b50610156600160a060020a03600435166024356104bc565b34801561027357600080fd5b5061017f600160a060020a0360043581169060243516610509565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156103115780601f106102e657610100808354040283529160200191610311565b820191906000526020600020905b8154815290600101906020018083116102f457829003601f168201915b505050505081565b336000818152600160209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005481565b600160a060020a03831660009081526001602090815260408083203384529091528120546000198110156103de57600160a060020a03851660009081526001602090815260408083203384529091529020805484900390555b83600160a060020a031685600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3506001949350505050565b60035460ff1681565b600160209081526000928352604080842090915290825290205481565b5060001990565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103115780601f106102e657610100808354040283529160200191610311565b604080518281529051600091600160a060020a0385169133917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a350600192915050565b600160a060020a039182166000908152600160209081526040808320939094168252919091522054905600a165627a7a72305820eac6717885a8a12965867068de68684d930485e6a3fe7db233f51c552a2bc2b50029

Deployed Bytecode

0x6080604052600436106100a35763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100a8578063095ea7b31461013257806318160ddd1461016a57806323b872dd14610191578063313ce567146101bb5780635c658165146101e657806370a082311461020d57806395d89b411461022e578063a9059cbb14610243578063dd62ed3e14610267575b600080fd5b3480156100b457600080fd5b506100bd61028e565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100f75781810151838201526020016100df565b50505050905090810190601f1680156101245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561013e57600080fd5b50610156600160a060020a0360043516602435610319565b604080519115158252519081900360200190f35b34801561017657600080fd5b5061017f61037f565b60408051918252519081900360200190f35b34801561019d57600080fd5b50610156600160a060020a0360043581169060243516604435610385565b3480156101c757600080fd5b506101d0610434565b6040805160ff9092168252519081900360200190f35b3480156101f257600080fd5b5061017f600160a060020a036004358116906024351661043d565b34801561021957600080fd5b5061017f600160a060020a036004351661045a565b34801561023a57600080fd5b506100bd610461565b34801561024f57600080fd5b50610156600160a060020a03600435166024356104bc565b34801561027357600080fd5b5061017f600160a060020a0360043581169060243516610509565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156103115780601f106102e657610100808354040283529160200191610311565b820191906000526020600020905b8154815290600101906020018083116102f457829003601f168201915b505050505081565b336000818152600160209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60005481565b600160a060020a03831660009081526001602090815260408083203384529091528120546000198110156103de57600160a060020a03851660009081526001602090815260408083203384529091529020805484900390555b83600160a060020a031685600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3506001949350505050565b60035460ff1681565b600160209081526000928352604080842090915290825290205481565b5060001990565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103115780601f106102e657610100808354040283529160200191610311565b604080518281529051600091600160a060020a0385169133917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef919081900360200190a350600192915050565b600160a060020a039182166000908152600160209081526040808320939094168252919091522054905600a165627a7a72305820eac6717885a8a12965867068de68684d930485e6a3fe7db233f51c552a2bc2b50029

Swarm Source

bzzr://eac6717885a8a12965867068de68684d930485e6a3fe7db233f51c552a2bc2b5

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.