ERC-20
Overview
Max Total Supply
1,027.392943233 PRSP
Holders
187
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
2.976974987 PRSPValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ProsperaToken
Compiler Version
v0.4.11+commit.68ef5810
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2017-09-03 */ pragma solidity ^0.4.11; contract Token { /* 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) constant 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) 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) 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) 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) constant returns (uint256 remaining); event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); } contract StandardToken is Token { function transfer(address _to, uint256 _value) returns (bool success) { //Default assumes totalSupply can't be over max (2^256 - 1). //If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap. //Replace the if with this one instead. //if (balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]) { if (balances[msg.sender] >= _value && _value > 0) { balances[msg.sender] -= _value; balances[_to] += _value; Transfer(msg.sender, _to, _value); return true; } else { return false; } } function transferFrom(address _from, address _to, uint256 _value) returns (bool success) { //same as above. Replace this line with the following if you want to protect against wrapping uints. //if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]) { if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) { balances[_to] += _value; balances[_from] -= _value; allowed[_from][msg.sender] -= _value; Transfer(_from, _to, _value); return true; } else { return false; } } function balanceOf(address _owner) constant returns (uint256 balance) { return balances[_owner]; } function approve(address _spender, uint256 _value) returns (bool success) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } function allowance(address _owner, address _spender) constant returns (uint256 remaining) { return allowed[_owner][_spender]; } mapping (address => uint256) balances; mapping (address => mapping (address => uint256)) allowed; } contract Owned { address public owner; function Owned() { owner = msg.sender; } modifier onlyOwner { if (msg.sender != owner) throw; _; } function transferOwnership(address newOwner) onlyOwner returns (address _owner) { owner = newOwner; return owner; } } contract ProsperaToken is StandardToken, Owned { function () { //if ether is sent to this address, send it back. throw; } /* Public variables of the token */ /* NOTE: The following variables are OPTIONAL vanities. One does not have to include them. They allow one to customise the token contract & in no way influences the core functionality. Some wallets/interfaces might not even bother to look at this information. */ string public name; //fancy name: eg Simon Bucks uint8 public decimals; //How many decimals to show. ie. There could 1000 base units with 3 decimals. Meaning 0.980 SBX = 980 base units. It's like comparing 1 wei to 1 ether. string public symbol; //An identifier: eg SBX string public version = '0.1'; //human 0.1 standard. Just an arbitrary versioning scheme. function ProsperaToken( uint256 _initialAmount, string _tokenName, uint8 _decimalUnits, string _tokenSymbol ) { balances[msg.sender] = _initialAmount; // Give the creator all initial tokens totalSupply = _initialAmount; // Update total supply name = _tokenName; // Set the name for display purposes decimals = _decimalUnits; // Amount of decimals for display purposes symbol = _tokenSymbol; // Set the symbol for display purposes } /* Approves and then calls the receiving contract */ function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); //call the receiveApproval function on the contract you want to be notified. This crafts the function signature manually so one doesn't have to include a contract in here just for this. //receiveApproval(address _from, uint256 _value, address _tokenContract, bytes _extraData) //it is assumed that when does this that the call *should* succeed, otherwise one would use vanilla approve instead. if(!_spender.call(bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData)) { throw; } return true; } /* Batch token transfer. Used by contract creator to distribute initial coins to holders */ function batchTransfer(address[] _recipients, uint256[] _values) returns (bool success) { if ((_recipients.length == 0) || (_recipients.length != _values.length)) throw; for(uint8 i = 0; i < _recipients.length; i += 1) { if (!transfer(_recipients[i], _values[i])) throw; } return true; } address minterContract; event Mint(address indexed _account, uint256 _amount); modifier onlyMinter { if (msg.sender != minterContract) throw; _; } function setMinter (address newMinter) onlyOwner returns (bool success) { minterContract = newMinter; return true; } function mintToAccount(address _account, uint256 _amount) onlyMinter returns (bool success) { // Checks for variable overflow if (balances[_account] + _amount < balances[_account]) throw; balances[_account] += _amount; Mint(_account, _amount); return true; } function incrementTotalSupply(uint256 _incrementValue) onlyMinter returns (bool success) { totalSupply += _incrementValue; return true; } } contract Minter is Owned { uint256 public lastMintingTime = 0; uint256 public lastMintingAmount; address public prosperaTokenAddress; ProsperaToken public prosperaToken; modifier allowedMinting() { if (block.timestamp >= lastMintingTime + 30 days) { _; } } function Minter (uint256 _lastMintingAmount, address _ownerContract) { lastMintingAmount = _lastMintingAmount; prosperaTokenAddress = _ownerContract; prosperaToken = ProsperaToken(_ownerContract); } // increases 2.95% from last minting function calculateMintAmount() returns (uint256 amount){ return lastMintingAmount * 10295 / 10000; } function updateMintingStatus(uint256 _mintedAmount) internal { lastMintingAmount = _mintedAmount; lastMintingTime = block.timestamp; prosperaToken.incrementTotalSupply(_mintedAmount); } function mint() allowedMinting onlyOwner returns (bool success) { uint256 value = calculateMintAmount(); prosperaToken.mintToAccount(msg.sender, value); updateMintingStatus(value); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"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,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mintToAccount","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_recipients","type":"address[]"},{"name":"_values","type":"uint256[]"}],"name":"batchTransfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_incrementValue","type":"uint256"}],"name":"incrementTotalSupply","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[{"name":"_owner","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newMinter","type":"address"}],"name":"setMinter","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"inputs":[{"name":"_initialAmount","type":"uint256"},{"name":"_tokenName","type":"string"},{"name":"_decimalUnits","type":"uint8"},{"name":"_tokenSymbol","type":"string"}],"payable":false,"type":"constructor"},{"payable":false,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_account","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Mint","type":"event"},{"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"}]
Contract Creation Code
60a0604052600360608190527f302e3100000000000000000000000000000000000000000000000000000000006080908152620000409160079190620000fe565b5034156200004a57fe5b60405162000fac38038062000fac833981016040908152815160208301519183015160608401519193928301929091015b5b60038054600160a060020a03191633600160a060020a03161790555b600160a060020a03331660009081526001602090815260408220869055908590558351620000cd9160049190860190620000fe565b506005805460ff191660ff84161790558051620000f2906006906020840190620000fe565b505b50505050620001a8565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200014157805160ff191683800117855562000171565b8280016001018555821562000171579182015b828111156200017157825182559160200191906001019062000154565b5b506200018092915062000184565b5090565b620001a591905b808211156200018057600081556001016200018b565b5090565b90565b610df480620001b86000396000f300606060405236156100d55763ffffffff60e060020a60003504166306fdde0381146100eb578063095ea7b31461017b57806318160ddd146101ae57806323b872dd146101d0578063313ce56714610209578063356e7e9d1461022f57806354fd4d501461026257806370a08231146102f257806388d695b2146103205780638da5cb5b146103bf57806395d89b41146103eb578063a9059cbb1461047b578063cae9ca51146104ae578063d5dbe63414610525578063dd62ed3e1461054c578063f2fde38b14610580578063fca3b5aa146105b8575b34156100dd57fe5b6100e95b60006000fd5b565b005b34156100f357fe5b6100fb6105e8565b604080516020808252835181830152835191928392908301918501908083838215610141575b80518252602083111561014157601f199092019160209182019101610121565b505050905090810190601f16801561016d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018357fe5b61019a600160a060020a0360043516602435610676565b604080519115158252519081900360200190f35b34156101b657fe5b6101be6106e1565b60408051918252519081900360200190f35b34156101d857fe5b61019a600160a060020a03600435811690602435166044356106e7565b604080519115158252519081900360200190f35b341561021157fe5b6102196107dd565b6040805160ff9092168252519081900360200190f35b341561023757fe5b61019a600160a060020a03600435166024356107e6565b604080519115158252519081900360200190f35b341561026a57fe5b6100fb61088b565b604080516020808252835181830152835191928392908301918501908083838215610141575b80518252602083111561014157601f199092019160209182019101610121565b505050905090810190601f16801561016d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102fa57fe5b6101be600160a060020a0360043516610919565b60408051918252519081900360200190f35b341561032857fe5b61019a600480803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750506040805187358901803560208181028481018201909552818452989a99890198929750908201955093508392508501908490808284375094965061093895505050505050565b604080519115158252519081900360200190f35b34156103c757fe5b6103cf6109c8565b60408051600160a060020a039092168252519081900360200190f35b34156103f357fe5b6100fb6109d7565b604080516020808252835181830152835191928392908301918501908083838215610141575b80518252602083111561014157601f199092019160209182019101610121565b505050905090810190601f16801561016d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561048357fe5b61019a600160a060020a0360043516602435610a65565b604080519115158252519081900360200190f35b34156104b657fe5b604080516020600460443581810135601f810184900484028501840190955284845261019a948235600160a060020a0316946024803595606494929391909201918190840183828082843750949650610b1195505050505050565b604080519115158252519081900360200190f35b341561052d57fe5b61019a600435610cc3565b604080519115158252519081900360200190f35b341561055457fe5b6101be600160a060020a0360043581169060243516610cf4565b60408051918252519081900360200190f35b341561058857fe5b6103cf600160a060020a0360043516610d21565b60408051600160a060020a039092168252519081900360200190f35b34156105c057fe5b61019a600160a060020a0360043516610d77565b604080519115158252519081900360200190f35b6004805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561066e5780601f106106435761010080835404028352916020019161066e565b820191906000526020600020905b81548152906001019060200180831161065157829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60005481565b600160a060020a0383166000908152600160205260408120548290108015906107375750600160a060020a0380851660009081526002602090815260408083203390941683529290522054829010155b80156107435750600082115b156107d157600160a060020a03808416600081815260016020908152604080832080548801905588851680845281842080548990039055600283528184203390961684529482529182902080548790039055815186815291519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060016107d5565b5060005b5b9392505050565b60055460ff1681565b60085460009033600160a060020a039081169116146108055760006000fd5b600160a060020a038316600090815260016020526040902054828101101561082d5760006000fd5b600160a060020a038316600081815260016020908152604091829020805486019055815185815291517f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859281900390910190a25060015b5b92915050565b6007805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561066e5780601f106106435761010080835404028352916020019161066e565b820191906000526020600020905b81548152906001019060200180831161065157829003601f168201915b505050505081565b600160a060020a0381166000908152600160205260409020545b919050565b6000600083516000148061094e57508251845114155b156109595760006000fd5b5060005b83518160ff1610156109bc576109a7848260ff1681518110151561097d57fe5b90602001906020020151848360ff1681518110151561099857fe5b90602001906020020151610a65565b15156109b35760006000fd5b5b60010161095d565b600191505b5092915050565b600354600160a060020a031681565b6006805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561066e5780601f106106435761010080835404028352916020019161066e565b820191906000526020600020905b81548152906001019060200180831161065157829003601f168201915b505050505081565b600160a060020a033316600090815260016020526040812054829010801590610a8e5750600082115b15610b0257600160a060020a03338116600081815260016020908152604080832080548890039055938716808352918490208054870190558351868152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35060016106db565b5060006106db565b5b92915050565b600160a060020a03338116600081815260026020908152604080832094881680845294825280832087905580518781529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a383600160a060020a031660405180807f72656365697665417070726f76616c28616464726573732c75696e743235362c81526020017f616464726573732c627974657329000000000000000000000000000000000000815250602e019050604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a03168152602001828051906020019080838360008314610c63575b805182526020831115610c6357601f199092019160209182019101610c43565b505050905090810190601f168015610c8f5780820380516001836020036101000a031916815260200191505b5094505050505060006040518083038160008761646e5a03f1925050501515610cb85760006000fd5b5060015b9392505050565b60085460009033600160a060020a03908116911614610ce25760006000fd5b50600080548201905560015b5b919050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035460009033600160a060020a03908116911614610d405760006000fd5b506003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038381169190911791829055165b5b919050565b60035460009033600160a060020a03908116911614610d965760006000fd5b506008805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03831617905560015b5b9190505600a165627a7a723058202e4ea5a19ef6ad6109ad97cca075c68a253f8dc31aa9f5f64ed06812cdbcabe40029000000000000000000000000000000000000000000000000000000ae9f7bcc000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000750726f737065720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045052535000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x606060405236156100d55763ffffffff60e060020a60003504166306fdde0381146100eb578063095ea7b31461017b57806318160ddd146101ae57806323b872dd146101d0578063313ce56714610209578063356e7e9d1461022f57806354fd4d501461026257806370a08231146102f257806388d695b2146103205780638da5cb5b146103bf57806395d89b41146103eb578063a9059cbb1461047b578063cae9ca51146104ae578063d5dbe63414610525578063dd62ed3e1461054c578063f2fde38b14610580578063fca3b5aa146105b8575b34156100dd57fe5b6100e95b60006000fd5b565b005b34156100f357fe5b6100fb6105e8565b604080516020808252835181830152835191928392908301918501908083838215610141575b80518252602083111561014157601f199092019160209182019101610121565b505050905090810190601f16801561016d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561018357fe5b61019a600160a060020a0360043516602435610676565b604080519115158252519081900360200190f35b34156101b657fe5b6101be6106e1565b60408051918252519081900360200190f35b34156101d857fe5b61019a600160a060020a03600435811690602435166044356106e7565b604080519115158252519081900360200190f35b341561021157fe5b6102196107dd565b6040805160ff9092168252519081900360200190f35b341561023757fe5b61019a600160a060020a03600435166024356107e6565b604080519115158252519081900360200190f35b341561026a57fe5b6100fb61088b565b604080516020808252835181830152835191928392908301918501908083838215610141575b80518252602083111561014157601f199092019160209182019101610121565b505050905090810190601f16801561016d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102fa57fe5b6101be600160a060020a0360043516610919565b60408051918252519081900360200190f35b341561032857fe5b61019a600480803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750506040805187358901803560208181028481018201909552818452989a99890198929750908201955093508392508501908490808284375094965061093895505050505050565b604080519115158252519081900360200190f35b34156103c757fe5b6103cf6109c8565b60408051600160a060020a039092168252519081900360200190f35b34156103f357fe5b6100fb6109d7565b604080516020808252835181830152835191928392908301918501908083838215610141575b80518252602083111561014157601f199092019160209182019101610121565b505050905090810190601f16801561016d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561048357fe5b61019a600160a060020a0360043516602435610a65565b604080519115158252519081900360200190f35b34156104b657fe5b604080516020600460443581810135601f810184900484028501840190955284845261019a948235600160a060020a0316946024803595606494929391909201918190840183828082843750949650610b1195505050505050565b604080519115158252519081900360200190f35b341561052d57fe5b61019a600435610cc3565b604080519115158252519081900360200190f35b341561055457fe5b6101be600160a060020a0360043581169060243516610cf4565b60408051918252519081900360200190f35b341561058857fe5b6103cf600160a060020a0360043516610d21565b60408051600160a060020a039092168252519081900360200190f35b34156105c057fe5b61019a600160a060020a0360043516610d77565b604080519115158252519081900360200190f35b6004805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561066e5780601f106106435761010080835404028352916020019161066e565b820191906000526020600020905b81548152906001019060200180831161065157829003601f168201915b505050505081565b600160a060020a03338116600081815260026020908152604080832094871680845294825280832086905580518681529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b60005481565b600160a060020a0383166000908152600160205260408120548290108015906107375750600160a060020a0380851660009081526002602090815260408083203390941683529290522054829010155b80156107435750600082115b156107d157600160a060020a03808416600081815260016020908152604080832080548801905588851680845281842080548990039055600283528184203390961684529482529182902080548790039055815186815291519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060016107d5565b5060005b5b9392505050565b60055460ff1681565b60085460009033600160a060020a039081169116146108055760006000fd5b600160a060020a038316600090815260016020526040902054828101101561082d5760006000fd5b600160a060020a038316600081815260016020908152604091829020805486019055815185815291517f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859281900390910190a25060015b5b92915050565b6007805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561066e5780601f106106435761010080835404028352916020019161066e565b820191906000526020600020905b81548152906001019060200180831161065157829003601f168201915b505050505081565b600160a060020a0381166000908152600160205260409020545b919050565b6000600083516000148061094e57508251845114155b156109595760006000fd5b5060005b83518160ff1610156109bc576109a7848260ff1681518110151561097d57fe5b90602001906020020151848360ff1681518110151561099857fe5b90602001906020020151610a65565b15156109b35760006000fd5b5b60010161095d565b600191505b5092915050565b600354600160a060020a031681565b6006805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561066e5780601f106106435761010080835404028352916020019161066e565b820191906000526020600020905b81548152906001019060200180831161065157829003601f168201915b505050505081565b600160a060020a033316600090815260016020526040812054829010801590610a8e5750600082115b15610b0257600160a060020a03338116600081815260016020908152604080832080548890039055938716808352918490208054870190558351868152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35060016106db565b5060006106db565b5b92915050565b600160a060020a03338116600081815260026020908152604080832094881680845294825280832087905580518781529051929493927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a383600160a060020a031660405180807f72656365697665417070726f76616c28616464726573732c75696e743235362c81526020017f616464726573732c627974657329000000000000000000000000000000000000815250602e019050604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a03168152602001828051906020019080838360008314610c63575b805182526020831115610c6357601f199092019160209182019101610c43565b505050905090810190601f168015610c8f5780820380516001836020036101000a031916815260200191505b5094505050505060006040518083038160008761646e5a03f1925050501515610cb85760006000fd5b5060015b9392505050565b60085460009033600160a060020a03908116911614610ce25760006000fd5b50600080548201905560015b5b919050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b92915050565b60035460009033600160a060020a03908116911614610d405760006000fd5b506003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038381169190911791829055165b5b919050565b60035460009033600160a060020a03908116911614610d965760006000fd5b506008805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03831617905560015b5b9190505600a165627a7a723058202e4ea5a19ef6ad6109ad97cca075c68a253f8dc31aa9f5f64ed06812cdbcabe40029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000ae9f7bcc000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000750726f737065720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045052535000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initialAmount (uint256): 750000000000
Arg [1] : _tokenName (string): Prosper
Arg [2] : _decimalUnits (uint8): 9
Arg [3] : _tokenSymbol (string): PRSP
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000ae9f7bcc00
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 50726f7370657200000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 5052535000000000000000000000000000000000000000000000000000000000
Swarm Source
bzzr://2e4ea5a19ef6ad6109ad97cca075c68a253f8dc31aa9f5f64ed06812cdbcabe4
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.