ETH Price: $1,632.59 (+1.51%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

Please try again later

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xCDe25B99...f58C82Fe7
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
ERC20Token

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-08-25
*/

/**
// SPDX-License-Identifier: MIT
🐌🐌🐌🐌🐌🐌🐌🐌🐌🐌🐌🐌🐌🐌🐌🐌🐌
🐌🐌🐌🐌🐌🐌🐌🐌🐌🐌🐌🐌🐌🐌🐌🐌🐌
🏁🏁🏁🏁🏁🏁🏁🏁🏁🏁🏁🏁🏁🏁🏁🏁🏁
🏁🏁🏁🏁🏁🏁🏁🏁🏁🏁🏁🏁🏁🏁🏁🏁🏁
Launch date 4 PM UTC Friday August 25 2023
Socials;
Telegram: https://t.me/SnailRacecoin
twitter : https://twitter.com/SNAILRACECOIN
Website :https://snail-race.com/
*/
pragma solidity 0.8.19;

contract ERC20Token {
    mapping(address account => uint256) public balanceOf;
    mapping(address account => mapping(address spender => uint256)) public allowance;
    uint8   public constant decimals    = 9;
    uint256 public constant totalSupply = 1_000_000 * (10**decimals);
    string  public constant name        = "SnailRacecoin";
    string  public constant symbol      = "SRC";

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);

    constructor() {
        balanceOf[msg.sender] = totalSupply;
        emit Transfer(address(0), msg.sender, totalSupply);
    }

    function approve(address spender, uint256 amount) public returns (bool) {
        require(msg.sender != address(0) && spender != address(0), "ERC20: Zero address");
        allowance[msg.sender][spender] = amount;
        emit Approval(msg.sender, spender, amount);
        return true;
    }
    function transfer(address to, uint256 amount) public returns (bool) {
        _transfer(msg.sender, to, amount);
        return true;
    }
    function transferFrom(address from, address to, uint256 amount) public returns (bool) {
        require(allowance[from][msg.sender] >= amount,"ERC20: amount exceeds allowance");
        allowance[from][msg.sender] -= amount;
        _transfer(from, to, amount);
        return true;
    }
    function _transfer(address from, address to, uint256 amount) internal {
        require(from != address(0) && to != address(0), "ERC20: Zero address");
        require(balanceOf[from] >= amount, "ERC20: amount exceeds balance");        
        balanceOf[from] -= amount;
        balanceOf[to]   += amount;
        emit Transfer(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100935760003560e01c8063313ce56711610066578063313ce5671461012657806370a082311461014057806395d89b4114610160578063a9059cbb14610182578063dd62ed3e1461019557600080fd5b806306fdde0314610098578063095ea7b3146100da57806318160ddd146100fd57806323b872dd14610113575b600080fd5b6100c46040518060400160405280600d81526020016c29b730b4b62930b1b2b1b7b4b760991b81525081565b6040516100d191906104f0565b60405180910390f35b6100ed6100e836600461055a565b6101c0565b60405190151581526020016100d1565b610105610285565b6040519081526020016100d1565b6100ed610121366004610584565b6102a1565b61012e600981565b60405160ff90911681526020016100d1565b61010561014e3660046105c0565b60006020819052908152604090205481565b6100c46040518060400160405280600381526020016253524360e81b81525081565b6100ed61019036600461055a565b610362565b6101056101a33660046105e2565b600160209081526000928352604080842090915290825290205481565b600033158015906101d957506001600160a01b03831615155b6102205760405162461bcd60e51b815260206004820152601360248201527245524332303a205a65726f206164647265737360681b60448201526064015b60405180910390fd5b3360008181526001602090815260408083206001600160a01b03881680855290835292819020869055518581529192917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a35060015b92915050565b6102916009600a61070f565b61029e90620f424061071e565b81565b6001600160a01b03831660009081526001602090815260408083203384529091528120548211156103145760405162461bcd60e51b815260206004820152601f60248201527f45524332303a20616d6f756e74206578636565647320616c6c6f77616e6365006044820152606401610217565b6001600160a01b038416600090815260016020908152604080832033845290915281208054849290610347908490610735565b909155506103589050848484610378565b5060019392505050565b600061036f338484610378565b50600192915050565b6001600160a01b0383161580159061039857506001600160a01b03821615155b6103da5760405162461bcd60e51b815260206004820152601360248201527245524332303a205a65726f206164647265737360681b6044820152606401610217565b6001600160a01b0383166000908152602081905260409020548111156104425760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20616d6f756e7420657863656564732062616c616e63650000006044820152606401610217565b6001600160a01b0383166000908152602081905260408120805483929061046a908490610735565b90915550506001600160a01b03821660009081526020819052604081208054839290610497908490610748565b92505081905550816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516104e391815260200190565b60405180910390a3505050565b600060208083528351808285015260005b8181101561051d57858101830151858201604001528201610501565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461055557600080fd5b919050565b6000806040838503121561056d57600080fd5b6105768361053e565b946020939093013593505050565b60008060006060848603121561059957600080fd5b6105a28461053e565b92506105b06020850161053e565b9150604084013590509250925092565b6000602082840312156105d257600080fd5b6105db8261053e565b9392505050565b600080604083850312156105f557600080fd5b6105fe8361053e565b915061060c6020840161053e565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561066657816000190482111561064c5761064c610615565b8085161561065957918102915b93841c9390800290610630565b509250929050565b60008261067d5750600161027f565b8161068a5750600061027f565b81600181146106a057600281146106aa576106c6565b600191505061027f565b60ff8411156106bb576106bb610615565b50506001821b61027f565b5060208310610133831016604e8410600b84101617156106e9575081810a61027f565b6106f3838361062b565b806000190482111561070757610707610615565b029392505050565b60006105db60ff84168361066e565b808202811582820484141761027f5761027f610615565b8181038181111561027f5761027f610615565b8082018082111561027f5761027f61061556fea26469706673582212204f4bc61918f4dce2743218238ca00c775210900a4143580efdff66d0ace8121564736f6c63430008130033

Deployed Bytecode Sourcemap

522:1815:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;812:53;;;;;;;;;;;;;;;-1:-1:-1;;;812:53:0;;;;;;;;;;;;:::i;:::-;;;;;;;;1225:297;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;1225:297:0;1004:187:1;741:64:0;;;:::i;:::-;;;1342:25:1;;;1330:2;1315:18;741:64:0;1196:177:1;1676:293:0;;;;;;:::i;:::-;;:::i;695:39::-;;733:1;695:39;;;;;1883:4:1;1871:17;;;1853:36;;1841:2;1826:18;695:39:0;1711:184:1;549:52:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;872:43;;;;;;;;;;;;;;;-1:-1:-1;;;872:43:0;;;;;1528:142;;;;;;:::i;:::-;;:::i;608:80::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;1225:297;1291:4;1316:10;:24;;;;:49;;-1:-1:-1;;;;;;1344:21:0;;;;1316:49;1308:81;;;;-1:-1:-1;;;1308:81:0;;2558:2:1;1308:81:0;;;2540:21:1;2597:2;2577:18;;;2570:30;-1:-1:-1;;;2616:18:1;;;2609:49;2675:18;;1308:81:0;;;;;;;;;1410:10;1400:21;;;;:9;:21;;;;;;;;-1:-1:-1;;;;;1400:30:0;;;;;;;;;;;;:39;;;1455:37;1342:25:1;;;1400:30:0;;1410:10;1455:37;;1315:18:1;1455:37:0;;;;;;;-1:-1:-1;1510:4:0;1225:297;;;;;:::o;741:64::-;792:12;733:1;792:2;:12;:::i;:::-;779:26;;:9;:26;:::i;:::-;741:64;:::o;1676:293::-;-1:-1:-1;;;;;1781:15:0;;1756:4;1781:15;;;:9;:15;;;;;;;;1797:10;1781:27;;;;;;;;:37;-1:-1:-1;1781:37:0;1773:80;;;;-1:-1:-1;;;1773:80:0;;4594:2:1;1773:80:0;;;4576:21:1;4633:2;4613:18;;;4606:30;4672:33;4652:18;;;4645:61;4723:18;;1773:80:0;4392:355:1;1773:80:0;-1:-1:-1;;;;;1864:15:0;;;;;;:9;:15;;;;;;;;1880:10;1864:27;;;;;;;:37;;1895:6;;1864:15;:37;;1895:6;;1864:37;:::i;:::-;;;;-1:-1:-1;1912:27:0;;-1:-1:-1;1922:4:0;1928:2;1932:6;1912:9;:27::i;:::-;-1:-1:-1;1957:4:0;1676:293;;;;;:::o;1528:142::-;1590:4;1607:33;1617:10;1629:2;1633:6;1607:9;:33::i;:::-;-1:-1:-1;1658:4:0;1528:142;;;;:::o;1975:359::-;-1:-1:-1;;;;;2064:18:0;;;;;;:38;;-1:-1:-1;;;;;;2086:16:0;;;;2064:38;2056:70;;;;-1:-1:-1;;;2056:70:0;;2558:2:1;2056:70:0;;;2540:21:1;2597:2;2577:18;;;2570:30;-1:-1:-1;;;2616:18:1;;;2609:49;2675:18;;2056:70:0;2356:343:1;2056:70:0;-1:-1:-1;;;;;2145:15:0;;:9;:15;;;;;;;;;;;:25;-1:-1:-1;2145:25:0;2137:67;;;;-1:-1:-1;;;2137:67:0;;5087:2:1;2137:67:0;;;5069:21:1;5126:2;5106:18;;;5099:30;5165:31;5145:18;;;5138:59;5214:18;;2137:67:0;4885:353:1;2137:67:0;-1:-1:-1;;;;;2223:15:0;;:9;:15;;;;;;;;;;:25;;2242:6;;2223:9;:25;;2242:6;;2223:25;:::i;:::-;;;;-1:-1:-1;;;;;;;2259:13:0;;:9;:13;;;;;;;;;;:25;;2278:6;;2259:9;:25;;2278:6;;2259:25;:::i;:::-;;;;;;;;2315:2;-1:-1:-1;;;;;2300:26:0;2309:4;-1:-1:-1;;;;;2300:26:0;;2319:6;2300:26;;;;1342:25:1;;1330:2;1315:18;;1196:177;2300:26:0;;;;;;;;1975:359;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;:::-;2041:39;1900:186;-1:-1:-1;;;1900:186:1:o;2091:260::-;2159:6;2167;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;2259:29;2278:9;2259:29;:::i;:::-;2249:39;;2307:38;2341:2;2330:9;2326:18;2307:38;:::i;:::-;2297:48;;2091:260;;;;;:::o;2704:127::-;2765:10;2760:3;2756:20;2753:1;2746:31;2796:4;2793:1;2786:15;2820:4;2817:1;2810:15;2836:422;2925:1;2968:5;2925:1;2982:270;3003:7;2993:8;2990:21;2982:270;;;3062:4;3058:1;3054:6;3050:17;3044:4;3041:27;3038:53;;;3071:18;;:::i;:::-;3121:7;3111:8;3107:22;3104:55;;;3141:16;;;;3104:55;3220:22;;;;3180:15;;;;2982:270;;;2986:3;2836:422;;;;;:::o;3263:806::-;3312:5;3342:8;3332:80;;-1:-1:-1;3383:1:1;3397:5;;3332:80;3431:4;3421:76;;-1:-1:-1;3468:1:1;3482:5;;3421:76;3513:4;3531:1;3526:59;;;;3599:1;3594:130;;;;3506:218;;3526:59;3556:1;3547:10;;3570:5;;;3594:130;3631:3;3621:8;3618:17;3615:43;;;3638:18;;:::i;:::-;-1:-1:-1;;3694:1:1;3680:16;;3709:5;;3506:218;;3808:2;3798:8;3795:16;3789:3;3783:4;3780:13;3776:36;3770:2;3760:8;3757:16;3752:2;3746:4;3743:12;3739:35;3736:77;3733:159;;;-1:-1:-1;3845:19:1;;;3877:5;;3733:159;3924:34;3949:8;3943:4;3924:34;:::i;:::-;3994:6;3990:1;3986:6;3982:19;3973:7;3970:32;3967:58;;;4005:18;;:::i;:::-;4043:20;;3263:806;-1:-1:-1;;;3263:806:1:o;4074:140::-;4132:5;4161:47;4202:4;4192:8;4188:19;4182:4;4161:47;:::i;4219:168::-;4292:9;;;4323;;4340:15;;;4334:22;;4320:37;4310:71;;4361:18;;:::i;4752:128::-;4819:9;;;4840:11;;;4837:37;;;4854:18;;:::i;5243:125::-;5308:9;;;5329:10;;;5326:36;;;5342:18;;:::i

Swarm Source

ipfs://4f4bc61918f4dce2743218238ca00c775210900a4143580efdff66d0ace81215

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

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

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.