ETH Price: $3,275.72 (+0.76%)
Gas: 2 Gwei

Token

Yearn PRISMA (yPRISMA)
 

Overview

Max Total Supply

19,016,155.801701264377636543 yPRISMA

Holders

151 ( 0.662%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
honeytrek.eth
Balance
1 yPRISMA

Value
$0.00
0x9d35001ad4bd89a33af351660fe64970a5bea966
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:
yPRISMA

Compiler Version
vyper:0.3.10

Optimization Enabled:
N/A

Other Settings:
GNU AGPLv3 license

Contract Source Code (Vyper language format)

# @version 0.3.10

"""
@title yPRISMA
@license GNU AGPLv3
@author Yearn Finance
"""

from vyper.interfaces import ERC20

implements: ERC20

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

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

event DelegateMint:
    minter: indexed(address)
    recipient: indexed(address)
    amount: uint256

event ApproveMinter:
    minter: indexed(address)
    approved: indexed(bool)

event UpdateOperator:
    operator: indexed(address)

ylocker: public(immutable(address))
prisma: public(immutable(address))
name: public(immutable(String[32]))
symbol: public(immutable(String[32]))
decimals: public(immutable(uint8))

balanceOf: public(HashMap[address, uint256])
allowance: public(HashMap[address, HashMap[address, uint256]])
totalSupply: public(uint256)
approved_minters: public(HashMap[address, bool])
operator: public(address)
proposed_operator: public(address)

@external
def __init__(_name: String[32], _symbol: String[32], _prisma: address, _ylocker: address, _operator: address):
    name = _name
    symbol = _symbol
    decimals = 18
    prisma = _prisma
    ylocker = _ylocker
    self.operator = _operator

@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.
    """
    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.balanceOf[_from] -= _value
    self.balanceOf[_to] += _value
    self.allowance[_from][msg.sender] -= _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.
    @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
        
@internal
def _mint(_to: address, _value: uint256):
    self.totalSupply += _value
    self.balanceOf[_to] += _value
    log Transfer(empty(address), _to, _value)

@external
def mint(_amount: uint256 = max_value(uint256), _recipient: address = msg.sender) -> uint256:
    """
    @notice Lock any amount of the underlying token to mint yTOKEN 1 to 1.
    @param _amount The desired amount of tokens to lock / yTOKENs to mint.
    @param _recipient The address which minted yTOKENS should be received at.
    """
    assert _recipient not in [self, empty(address)]
    amount: uint256 = _amount
    if amount == max_value(uint256):
        amount = ERC20(prisma).balanceOf(msg.sender)
    assert amount > 0
    assert ERC20(prisma).transferFrom(msg.sender, ylocker, amount)
    self._mint(_recipient, amount)
    return amount

@external
def delegate_mint(_recipient: address, _amount: uint256) -> uint256:
    """
    @dev Minters must be permitted to mint upon user claims from the vault.
    @param _amount The desired amount of tokens to lock / yTOKENs to mint.
    @param _recipient The address which minted yTOKENS should be received at.
    """
    assert self.approved_minters[msg.sender], "!approved"
    self._mint(_recipient, _amount)
    log DelegateMint(msg.sender, _recipient, _amount)
    return _amount

@external
def approve_minter(_minter: address, _approved: bool):
    assert msg.sender == self.operator, "!approved"
    self.approved_minters[_minter] = _approved
    log ApproveMinter(_minter, _approved)

@external
def set_operator(_proposed_operator: address):
    assert msg.sender == self.operator
    self.proposed_operator = _proposed_operator

@external
def accept_operator():
    proposed_operator: address = self.proposed_operator
    assert msg.sender == proposed_operator
    self.operator = proposed_operator
    self.proposed_operator = empty(address)
    log UpdateOperator(proposed_operator)

@external
def sweep(_token: address, _amount: uint256 = max_value(uint256)):
    operator: address = self.operator
    assert msg.sender == operator
    amount: uint256 = _amount
    if amount == max_value(uint256):
        amount = ERC20(_token).balanceOf(self)
    assert amount > 0
    assert ERC20(_token).transfer(operator, amount, default_return_value=True)

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"},{"name":"DelegateMint","inputs":[{"name":"minter","type":"address","indexed":true},{"name":"recipient","type":"address","indexed":true},{"name":"amount","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"ApproveMinter","inputs":[{"name":"minter","type":"address","indexed":true},{"name":"approved","type":"bool","indexed":true}],"anonymous":false,"type":"event"},{"name":"UpdateOperator","inputs":[{"name":"operator","type":"address","indexed":true}],"anonymous":false,"type":"event"},{"stateMutability":"nonpayable","type":"constructor","inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_prisma","type":"address"},{"name":"_ylocker","type":"address"},{"name":"_operator","type":"address"}],"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":"mint","inputs":[],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"nonpayable","type":"function","name":"mint","inputs":[{"name":"_amount","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"nonpayable","type":"function","name":"mint","inputs":[{"name":"_amount","type":"uint256"},{"name":"_recipient","type":"address"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"nonpayable","type":"function","name":"delegate_mint","inputs":[{"name":"_recipient","type":"address"},{"name":"_amount","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"nonpayable","type":"function","name":"approve_minter","inputs":[{"name":"_minter","type":"address"},{"name":"_approved","type":"bool"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"set_operator","inputs":[{"name":"_proposed_operator","type":"address"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"accept_operator","inputs":[],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"sweep","inputs":[{"name":"_token","type":"address"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"sweep","inputs":[{"name":"_token","type":"address"},{"name":"_amount","type":"uint256"}],"outputs":[]},{"stateMutability":"view","type":"function","name":"ylocker","inputs":[],"outputs":[{"name":"","type":"address"}]},{"stateMutability":"view","type":"function","name":"prisma","inputs":[],"outputs":[{"name":"","type":"address"}]},{"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":"approved_minters","inputs":[{"name":"arg0","type":"address"}],"outputs":[{"name":"","type":"bool"}]},{"stateMutability":"view","type":"function","name":"operator","inputs":[],"outputs":[{"name":"","type":"address"}]},{"stateMutability":"view","type":"function","name":"proposed_operator","inputs":[],"outputs":[{"name":"","type":"address"}]}]

610aba51503461015b576020610b6f5f395f516020602082610b6f015f395f511161015b576020602082610b6f015f395f51018082610b6f0160403950506020610b8f5f395f516020602082610b6f015f395f511161015b576020602082610b6f015f395f51018082610b6f0160803950506020610baf5f395f518060a01c61015b5760c0526020610bcf5f395f518060a01c61015b5760e0526020610bef5f395f518060a01c61015b57610100526020604051015f81601f0160051c6002811161015b5780156100eb57905b8060051b604001518160051b6040016109fa01526001018181186100cc575b5050506020608051015f81601f0160051c6002811161015b57801561012b57905b8060051b608001518160051b6080016109fa015260010181811861010c575b5050506012610aba5260c051610a1a5260e0516109fa52610100516004556109fa61015f61000039610ada610000f35b5f80fd5f3560e01c60026013820660011b6109d401601e395f51565b630bb1afc3811861096057346109d05760206109fa60403960206040f3610960565b630a3266b0811861005857346109d0576020610a1a60403960206040f35b6318160ddd811861096057346109d05760025460405260206040f3610960565b6306fdde0381186100ce57346109d0576020806040528060400160206020610a3a5f395f510180610a3a8339508051806020830101601f825f03163682375050601f19601f825160200101169050810190506040f35b63570ca735811861096057346109d05760045460405260206040f3610960565b6395d89b41811861014457346109d0576020806040528060400160206020610a7a5f395f510180610a7a8339508051806020830101601f825f03163682375050601f19601f825160200101169050810190506040f35b63095ea7b38118610960576044361034176109d0576004358060a01c6109d0576040526024356001336020525f5260405f20806040516020525f5260405f20905055604051337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560243560605260206060a3600160605260206060f3610960565b63313ce56781186101e357346109d0576020610aba60403960206040f35b63dd62ed3e8118610960576044361034176109d0576004358060a01c6109d0576040526024358060a01c6109d05760605260016040516020525f5260405f20806060516020525f5260405f2090505460805260206080f3610960565b6370a082318118610960576024361034176109d0576004358060a01c6109d0576040525f6040516020525f5260405f205460605260206060f3610960565b638773361c81186102b8576024361034176109d0576004358060a01c6109d05760405260036040516020525f5260405f205460605260206060f35b63c56bffdb81186102d457346109d05760055460405260206040f35b6330c7be728118610960576024361034176109d0576004358060a01c6109d05760405260045433186109d05760405160055500610960565b63a9059cbb8118610960576044361034176109d0576004358060a01c6109d0576040525f336020525f5260405f2080546024358082038281116109d057905090508155505f6040516020525f5260405f2080546024358082018281106109d05790509050815550604051337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60243560605260206060a3600160605260206060f3610960565b6323b872dd8118610960576064361034176109d0576004358060a01c6109d0576040526024358060a01c6109d0576060525f6040516020525f5260405f2080546044358082038281116109d057905090508155505f6060516020525f5260405f2080546044358082018281106109d0579050905081555060016040516020525f5260405f2080336020525f5260405f20905080546044358082038281116109d057905090508155506060516040517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60443560805260206080a3600160805260206080f3610960565b631249c58b81186104d857346109d0577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60a0523360c052610526565b63a0712d6881186104fc576024361034176109d05760043560a0523360c052610526565b6394bf804d8118610960576044361034176109d05760043560a0526024358060a01c6109d05760c0525b60c0513081146105385780151561053a565b5f5b9050156109d05760a05160e05260e05119610591576020610a1a5f395f516370a082316101005233610120526020610100602461011c845afa61057f573d5f5f3e3d5ffd5b60203d106109d05761010090505160e0525b60e051156109d0576020610a1a5f395f516323b872dd61010052336101205260206109fa6101403960e051610160526020610100606461011c5f855af16105da573d5f5f3e3d5ffd5b60203d106109d057610100518060011c6109d05761018052610180905051156109d05760c05160405260e051606052610611610964565b602060e0f3610960565b63e3dae8aa81186106fb576044361034176109d0576004358060a01c6109d05760a0526003336020525f5260405f20546106ab57600960c0527f21617070726f766564000000000000000000000000000000000000000000000060e05260c05060c0518060e001601f825f031636823750506308c379a0608052602060a052601f19601f60c0510116604401609cfd5b60a0516040526024356060526106bf610964565b60a051337fb82467de445ab5c17f9a5357c69cb3cd55bf5c4ae3c6e25128989ca82604d95160243560c052602060c0a360243560c052602060c0f35b63d83ff6d48118610960576044361034176109d0576004358060a01c6109d0576040526024358060011c6109d0576060526004543318156107925760096080527f21617070726f766564000000000000000000000000000000000000000000000060a0526080506080518060a001601f825f031636823750506308c379a06040526020606052601f19601f6080510116604401605cfd5b60605160036040516020525f5260405f20556060516040517fb5737ebbda36f953d0e670155df24bec6a70cc0b5b49f2ef9600a35dafc276975f6080a300610960565b631e1acad9811861096057346109d05760055460405260405133186109d0576040516004555f6005556040517fff936929f68b51b2ddfe0c6fcc3e9c817996ae17a98869dd0754af1323f101ee5f6060a200610960565b6301681a628118610960576024361034176109d0577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60605261088a56610960565b636ea056a98118610960576044361034176109d0576024356060525b6004358060a01c6109d05760405260045460805260805133186109d05760605160a05260a051196108ec576040516370a0823160c0523060e052602060c0602460dc845afa6108db573d5f5f3e3d5ffd5b60203d106109d05760c090505160a0525b60a051156109d05760405163a9059cbb60c05260805160e05260a05161010052602060c0604460dc5f855af1610924573d5f5f3e3d5ffd5b3d61093b57803b156109d057600161012052610953565b60203d106109d05760c0518060011c6109d057610120525b610120905051156109d057005b5f5ffd5b6002546060518082018281106109d057905090506002555f6040516020525f5260405f2080546060518082018281106109d057905090508155506040515f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60605160805260206080a3565b5f80fd07d5027d00780960082c086e030c0960003a049b023f00ee0960096001c50018061b096003b2841909fa81182618e0a16576797065728300030a001600000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000da47862a83dac0c112ba89c6abc2159b95afd71c00000000000000000000000090be6dfea8c80c184c442a36e17cb2439aae25a70000000000000000000000004444aaaacdba5580282365e25b16309bd770ce4a000000000000000000000000000000000000000000000000000000000000000c596561726e20505249534d410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000779505249534d4100000000000000000000000000000000000000000000000000

Deployed Bytecode

0x5f3560e01c60026013820660011b6109d401601e395f51565b630bb1afc3811861096057346109d05760206109fa60403960206040f3610960565b630a3266b0811861005857346109d0576020610a1a60403960206040f35b6318160ddd811861096057346109d05760025460405260206040f3610960565b6306fdde0381186100ce57346109d0576020806040528060400160206020610a3a5f395f510180610a3a8339508051806020830101601f825f03163682375050601f19601f825160200101169050810190506040f35b63570ca735811861096057346109d05760045460405260206040f3610960565b6395d89b41811861014457346109d0576020806040528060400160206020610a7a5f395f510180610a7a8339508051806020830101601f825f03163682375050601f19601f825160200101169050810190506040f35b63095ea7b38118610960576044361034176109d0576004358060a01c6109d0576040526024356001336020525f5260405f20806040516020525f5260405f20905055604051337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560243560605260206060a3600160605260206060f3610960565b63313ce56781186101e357346109d0576020610aba60403960206040f35b63dd62ed3e8118610960576044361034176109d0576004358060a01c6109d0576040526024358060a01c6109d05760605260016040516020525f5260405f20806060516020525f5260405f2090505460805260206080f3610960565b6370a082318118610960576024361034176109d0576004358060a01c6109d0576040525f6040516020525f5260405f205460605260206060f3610960565b638773361c81186102b8576024361034176109d0576004358060a01c6109d05760405260036040516020525f5260405f205460605260206060f35b63c56bffdb81186102d457346109d05760055460405260206040f35b6330c7be728118610960576024361034176109d0576004358060a01c6109d05760405260045433186109d05760405160055500610960565b63a9059cbb8118610960576044361034176109d0576004358060a01c6109d0576040525f336020525f5260405f2080546024358082038281116109d057905090508155505f6040516020525f5260405f2080546024358082018281106109d05790509050815550604051337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60243560605260206060a3600160605260206060f3610960565b6323b872dd8118610960576064361034176109d0576004358060a01c6109d0576040526024358060a01c6109d0576060525f6040516020525f5260405f2080546044358082038281116109d057905090508155505f6060516020525f5260405f2080546044358082018281106109d0579050905081555060016040516020525f5260405f2080336020525f5260405f20905080546044358082038281116109d057905090508155506060516040517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60443560805260206080a3600160805260206080f3610960565b631249c58b81186104d857346109d0577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60a0523360c052610526565b63a0712d6881186104fc576024361034176109d05760043560a0523360c052610526565b6394bf804d8118610960576044361034176109d05760043560a0526024358060a01c6109d05760c0525b60c0513081146105385780151561053a565b5f5b9050156109d05760a05160e05260e05119610591576020610a1a5f395f516370a082316101005233610120526020610100602461011c845afa61057f573d5f5f3e3d5ffd5b60203d106109d05761010090505160e0525b60e051156109d0576020610a1a5f395f516323b872dd61010052336101205260206109fa6101403960e051610160526020610100606461011c5f855af16105da573d5f5f3e3d5ffd5b60203d106109d057610100518060011c6109d05761018052610180905051156109d05760c05160405260e051606052610611610964565b602060e0f3610960565b63e3dae8aa81186106fb576044361034176109d0576004358060a01c6109d05760a0526003336020525f5260405f20546106ab57600960c0527f21617070726f766564000000000000000000000000000000000000000000000060e05260c05060c0518060e001601f825f031636823750506308c379a0608052602060a052601f19601f60c0510116604401609cfd5b60a0516040526024356060526106bf610964565b60a051337fb82467de445ab5c17f9a5357c69cb3cd55bf5c4ae3c6e25128989ca82604d95160243560c052602060c0a360243560c052602060c0f35b63d83ff6d48118610960576044361034176109d0576004358060a01c6109d0576040526024358060011c6109d0576060526004543318156107925760096080527f21617070726f766564000000000000000000000000000000000000000000000060a0526080506080518060a001601f825f031636823750506308c379a06040526020606052601f19601f6080510116604401605cfd5b60605160036040516020525f5260405f20556060516040517fb5737ebbda36f953d0e670155df24bec6a70cc0b5b49f2ef9600a35dafc276975f6080a300610960565b631e1acad9811861096057346109d05760055460405260405133186109d0576040516004555f6005556040517fff936929f68b51b2ddfe0c6fcc3e9c817996ae17a98869dd0754af1323f101ee5f6060a200610960565b6301681a628118610960576024361034176109d0577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60605261088a56610960565b636ea056a98118610960576044361034176109d0576024356060525b6004358060a01c6109d05760405260045460805260805133186109d05760605160a05260a051196108ec576040516370a0823160c0523060e052602060c0602460dc845afa6108db573d5f5f3e3d5ffd5b60203d106109d05760c090505160a0525b60a051156109d05760405163a9059cbb60c05260805160e05260a05161010052602060c0604460dc5f855af1610924573d5f5f3e3d5ffd5b3d61093b57803b156109d057600161012052610953565b60203d106109d05760c0518060011c6109d057610120525b610120905051156109d057005b5f5ffd5b6002546060518082018281106109d057905090506002555f6040516020525f5260405f2080546060518082018281106109d057905090508155506040515f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60605160805260206080a3565b5f80fd07d5027d00780960082c086e030c0960003a049b023f00ee0960096001c50018061b096003b200000000000000000000000090be6dfea8c80c184c442a36e17cb2439aae25a7000000000000000000000000da47862a83dac0c112ba89c6abc2159b95afd71c000000000000000000000000000000000000000000000000000000000000000c596561726e20505249534d410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000779505249534d41000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000da47862a83dac0c112ba89c6abc2159b95afd71c00000000000000000000000090be6dfea8c80c184c442a36e17cb2439aae25a70000000000000000000000004444aaaacdba5580282365e25b16309bd770ce4a000000000000000000000000000000000000000000000000000000000000000c596561726e20505249534d410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000779505249534d4100000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Yearn PRISMA
Arg [1] : _symbol (string): yPRISMA
Arg [2] : _prisma (address): 0xdA47862a83dac0c112BA89c6abC2159b95afd71C
Arg [3] : _ylocker (address): 0x90be6DFEa8C80c184C442a36e17cB2439AAE25a7
Arg [4] : _operator (address): 0x4444AAAACDBa5580282365e25b16309Bd770ce4a

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 000000000000000000000000da47862a83dac0c112ba89c6abc2159b95afd71c
Arg [3] : 00000000000000000000000090be6dfea8c80c184c442a36e17cb2439aae25a7
Arg [4] : 0000000000000000000000004444aaaacdba5580282365e25b16309bd770ce4a
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [6] : 596561726e20505249534d410000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [8] : 79505249534d4100000000000000000000000000000000000000000000000000


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.