ETH Price: $3,376.98 (-1.14%)
Gas: 10 Gwei

Token

Don't Sell Till 1000x Token (DSTX)
 

Overview

Max Total Supply

1,000,000,000,000,000 DSTX

Holders

11

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
525960.eth
Balance
5,930,942,775,262.351595093451814881 DSTX

Value
$0.00
0x97013995b4866f7279e2bf6dbd7677529b21a762
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DSTX

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2021-05-15
*/

//SPDX-License-Identifier: Unlicensed

/**
    Don't Sell Till 1000x Token 
    This is a meme token every meme token buyer needs in their collection.
    1 quadrillion total supply.
*/

pragma solidity ^0.7.0;

contract Owned {
    modifier onlyOwner() {
        require(msg.sender == owner);
        _;
    }
    address owner;
    address newOwner;
    function changeOwner(address payable _newOwner) public onlyOwner {
        newOwner = _newOwner;
    }
    function acceptOwnership() public {
        if (msg.sender == newOwner) {
            owner = newOwner;
        }
    }
}

contract ERC20 {
    string public symbol;
    string public name;
    uint8 public decimals;
    uint256 public totalSupply;
    mapping (address=>uint256) balances;
    mapping (address=>mapping (address=>uint256)) allowed;
    event Transfer(address indexed _from, address indexed _to, uint256 _value);
    event Approval(address indexed _owner, address indexed _spender, uint256 _value);
    
    function balanceOf(address _owner) view public returns (uint256 balance) {return balances[_owner];}
    
    function transfer(address _to, uint256 _amount) public returns (bool success) {
        require (balances[msg.sender]>=_amount&&_amount>0&&balances[_to]+_amount>balances[_to]);
        balances[msg.sender]-=_amount;
        balances[_to]+=_amount;
        emit Transfer(msg.sender,_to,_amount);
        return true;
    }
    function transferFrom(address _from,address _to,uint256 _amount) public returns (bool success) {
        require (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;
        emit Transfer(_from, _to, _amount);
        return true;
    }
    function approve(address _spender, uint256 _amount) public returns (bool success) {
        allowed[msg.sender][_spender]=_amount;
        emit Approval(msg.sender, _spender, _amount);
        return true;
    }
    function allowance(address _owner, address _spender) view public returns (uint256 remaining) {
      return allowed[_owner][_spender];
    }
}

contract DSTX is Owned,ERC20{
    uint256 public maxSupply;

    constructor(address _owner) {
        symbol = "DSTX";
        name = "Don't Sell Till 1000x Token";
        decimals = 18;
        totalSupply = 1000000000000000*10**uint256(decimals);
        maxSupply = 1000000000000000*10**uint256(decimals);
        owner = _owner;
        balances[owner] = totalSupply;
    }
    
    receive() external payable {
        revert();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"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":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","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":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newOwner","type":"address"}],"name":"changeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"success","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":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801561001057600080fd5b506040516109093803806109098339818101604052602081101561003357600080fd5b505160408051808201909152600480825263088a6a8b60e31b602090920191825261006091600291610102565b5060408051808201909152601b8082527f446f6e27742053656c6c2054696c6c20313030307820546f6b656e000000000060209092019182526100a591600391610102565b5060048054601260ff19909116179081905560ff16600a0a66038d7ea4c680000260058190556008819055600080546001600160a01b0319166001600160a01b0393841617808255909216825260066020526040909120556101a3565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282610138576000855561017e565b82601f1061015157805160ff191683800117855561017e565b8280016001018555821561017e579182015b8281111561017e578251825591602001919060010190610163565b5061018a92915061018e565b5090565b5b8082111561018a576000815560010161018f565b610757806101b26000396000f3fe6080604052600436106100ab5760003560e01c806379ba50971161006457806379ba50971461025957806395d89b4114610270578063a6f9dae114610285578063a9059cbb146102b8578063d5abeb01146102f1578063dd62ed3e14610306576100b5565b806306fdde03146100ba578063095ea7b31461014457806318160ddd1461019157806323b872dd146101b8578063313ce567146101fb57806370a0823114610226576100b5565b366100b557600080fd5b600080fd5b3480156100c657600080fd5b506100cf610341565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101095781810151838201526020016100f1565b50505050905090810190601f1680156101365780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015057600080fd5b5061017d6004803603604081101561016757600080fd5b506001600160a01b0381351690602001356103cf565b604080519115158252519081900360200190f35b34801561019d57600080fd5b506101a6610435565b60408051918252519081900360200190f35b3480156101c457600080fd5b5061017d600480360360608110156101db57600080fd5b506001600160a01b0381358116916020810135909116906040013561043b565b34801561020757600080fd5b50610210610548565b6040805160ff9092168252519081900360200190f35b34801561023257600080fd5b506101a66004803603602081101561024957600080fd5b50356001600160a01b0316610551565b34801561026557600080fd5b5061026e61056c565b005b34801561027c57600080fd5b506100cf6105a4565b34801561029157600080fd5b5061026e600480360360208110156102a857600080fd5b50356001600160a01b03166105fc565b3480156102c457600080fd5b5061017d600480360360408110156102db57600080fd5b506001600160a01b038135169060200135610635565b3480156102fd57600080fd5b506101a66106f0565b34801561031257600080fd5b506101a66004803603604081101561032957600080fd5b506001600160a01b03813581169160200135166106f6565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103c75780601f1061039c576101008083540402835291602001916103c7565b820191906000526020600020905b8154815290600101906020018083116103aa57829003601f168201915b505050505081565b3360008181526007602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60055481565b6001600160a01b038316600090815260066020526040812054821180159061048657506001600160a01b03841660009081526007602090815260408083203384529091529020548211155b80156104925750600082115b80156104b757506001600160a01b038316600090815260066020526040902054828101115b6104c057600080fd5b6001600160a01b0380851660008181526006602081815260408084208054899003905560078252808420338552825280842080548990039055948816808452918152918490208054870190558351868152935190937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a35060019392505050565b60045460ff1681565b6001600160a01b031660009081526006602052604090205490565b6001546001600160a01b03163314156105a257600154600080546001600160a01b0319166001600160a01b039092169190911790555b565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156103c75780601f1061039c576101008083540402835291602001916103c7565b6000546001600160a01b0316331461061357600080fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b3360009081526006602052604081205482118015906106545750600082115b801561067957506001600160a01b038316600090815260066020526040902054828101115b61068257600080fd5b336000818152600660209081526040808320805487900390556001600160a01b03871680845292819020805487019055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350600192915050565b60085481565b6001600160a01b0391821660009081526007602090815260408083209390941682529190915220549056fea2646970667358221220f29dc9ef44cea560cfa7db52080a4729ebce67149df663b9b7022bdc09d9b8d064736f6c6343000706003300000000000000000000000037948ecd21021b44cd5b6fe232951db3896a9a8e

Deployed Bytecode

0x6080604052600436106100ab5760003560e01c806379ba50971161006457806379ba50971461025957806395d89b4114610270578063a6f9dae114610285578063a9059cbb146102b8578063d5abeb01146102f1578063dd62ed3e14610306576100b5565b806306fdde03146100ba578063095ea7b31461014457806318160ddd1461019157806323b872dd146101b8578063313ce567146101fb57806370a0823114610226576100b5565b366100b557600080fd5b600080fd5b3480156100c657600080fd5b506100cf610341565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101095781810151838201526020016100f1565b50505050905090810190601f1680156101365780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561015057600080fd5b5061017d6004803603604081101561016757600080fd5b506001600160a01b0381351690602001356103cf565b604080519115158252519081900360200190f35b34801561019d57600080fd5b506101a6610435565b60408051918252519081900360200190f35b3480156101c457600080fd5b5061017d600480360360608110156101db57600080fd5b506001600160a01b0381358116916020810135909116906040013561043b565b34801561020757600080fd5b50610210610548565b6040805160ff9092168252519081900360200190f35b34801561023257600080fd5b506101a66004803603602081101561024957600080fd5b50356001600160a01b0316610551565b34801561026557600080fd5b5061026e61056c565b005b34801561027c57600080fd5b506100cf6105a4565b34801561029157600080fd5b5061026e600480360360208110156102a857600080fd5b50356001600160a01b03166105fc565b3480156102c457600080fd5b5061017d600480360360408110156102db57600080fd5b506001600160a01b038135169060200135610635565b3480156102fd57600080fd5b506101a66106f0565b34801561031257600080fd5b506101a66004803603604081101561032957600080fd5b506001600160a01b03813581169160200135166106f6565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156103c75780601f1061039c576101008083540402835291602001916103c7565b820191906000526020600020905b8154815290600101906020018083116103aa57829003601f168201915b505050505081565b3360008181526007602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60055481565b6001600160a01b038316600090815260066020526040812054821180159061048657506001600160a01b03841660009081526007602090815260408083203384529091529020548211155b80156104925750600082115b80156104b757506001600160a01b038316600090815260066020526040902054828101115b6104c057600080fd5b6001600160a01b0380851660008181526006602081815260408084208054899003905560078252808420338552825280842080548990039055948816808452918152918490208054870190558351868152935190937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92908290030190a35060019392505050565b60045460ff1681565b6001600160a01b031660009081526006602052604090205490565b6001546001600160a01b03163314156105a257600154600080546001600160a01b0319166001600160a01b039092169190911790555b565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156103c75780601f1061039c576101008083540402835291602001916103c7565b6000546001600160a01b0316331461061357600080fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b3360009081526006602052604081205482118015906106545750600082115b801561067957506001600160a01b038316600090815260066020526040902054828101115b61068257600080fd5b336000818152600660209081526040808320805487900390556001600160a01b03871680845292819020805487019055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350600192915050565b60085481565b6001600160a01b0391821660009081526007602090815260408083209390941682529190915220549056fea2646970667358221220f29dc9ef44cea560cfa7db52080a4729ebce67149df663b9b7022bdc09d9b8d064736f6c63430007060033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000037948ecd21021b44cd5b6fe232951db3896a9a8e

-----Decoded View---------------
Arg [0] : _owner (address): 0x37948eCd21021B44cd5b6fE232951Db3896A9a8e

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000037948ecd21021b44cd5b6fe232951db3896a9a8e


Deployed Bytecode Sourcemap

2258:459:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2698:8;;;2258:459;;;;662:18;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1888:215;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;1888:215:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;715:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;1468:414;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;1468:414:0;;;;;;;;;;;;;;;;;:::i;687:21::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1024:99;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1024:99:0;-1:-1:-1;;;;;1024:99:0;;:::i;483:123::-;;;;;;;;;;;;;:::i;:::-;;635:20;;;;;;;;;;;;;:::i;373:104::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;373:104:0;-1:-1:-1;;;;;373:104:0;;:::i;1135:327::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;1135:327:0;;;;;;;;:::i;2293:24::-;;;;;;;;;;;;;:::i;2109:142::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;2109:142:0;;;;;;;;;;:::i;662:18::-;;;;;;;;;;;;;;;-1:-1:-1;;662:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1888:215::-;1989:10;1956:12;1981:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;1981:29:0;;;;;;;;;;;:37;;;2034:39;;;;;;;1956:12;;1981:29;;1989:10;;2034:39;;;;;;;;-1:-1:-1;2091:4:0;1888:215;;;;:::o;715:26::-;;;;:::o;1468:414::-;-1:-1:-1;;;;;1583:15:0;;1549:12;1583:15;;;:8;:15;;;;;;:24;-1:-1:-1;1583:24:0;;;:61;;-1:-1:-1;;;;;;1609:14:0;;;;;;:7;:14;;;;;;;;1624:10;1609:26;;;;;;;;:35;-1:-1:-1;1609:35:0;1583:61;:72;;;;;1654:1;1646:7;:9;1583:72;:109;;;;-1:-1:-1;;;;;;1679:13:0;;;;;;:8;:13;;;;;;1657:21;;;:35;1583:109;1574:119;;;;;;-1:-1:-1;;;;;1704:15:0;;;;;;;:8;:15;;;;;;;;:24;;;;;;;1739:7;:14;;;;;1754:10;1739:26;;;;;;;:35;;;;;;;1785:13;;;;;;;;;;;;;:22;;;;;;1823:29;;;;;;;1785:13;;1823:29;;;;;;;;;-1:-1:-1;1870:4:0;1468:414;;;;;:::o;687:21::-;;;;;;:::o;1024:99::-;-1:-1:-1;;;;;1105:16:0;1080:15;1105:16;;;:8;:16;;;;;;;1024:99::o;483:123::-;546:8;;-1:-1:-1;;;;;546:8:0;532:10;:22;528:71;;;579:8;;;571:16;;-1:-1:-1;;;;;;571:16:0;-1:-1:-1;;;;;579:8:0;;;571:16;;;;;;528:71;483:123::o;635:20::-;;;;;;;;;;;;;;-1:-1:-1;;635:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;373:104;298:5;;-1:-1:-1;;;;;298:5:0;284:10;:19;276:28;;;;;;449:8:::1;:20:::0;;-1:-1:-1;;;;;;449:20:0::1;-1:-1:-1::0;;;;;449:20:0;;;::::1;::::0;;;::::1;::::0;;373:104::o;1135:327::-;1242:10;1199:12;1233:20;;;:8;:20;;;;;;:29;-1:-1:-1;1233:29:0;;;:40;;;1272:1;1264:7;:9;1233:40;:77;;;;-1:-1:-1;;;;;;1297:13:0;;;;;;:8;:13;;;;;;1275:21;;;:35;1233:77;1224:87;;;;;;1331:10;1322:20;;;;:8;:20;;;;;;;;:29;;;;;;;-1:-1:-1;;;;;1362:13:0;;;;;;;;;:22;;;;;;1400:32;;;;;;;1362:13;;1331:10;1400:32;;;;;;;;;;;-1:-1:-1;1450:4:0;1135:327;;;;:::o;2293:24::-;;;;:::o;2109:142::-;-1:-1:-1;;;;;2218:15:0;;;2183:17;2218:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;2109:142::o

Swarm Source

ipfs://f29dc9ef44cea560cfa7db52080a4729ebce67149df663b9b7022bdc09d9b8d0
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.