ERC-20
Overview
Max Total Supply
300,000,000 ADS
Holders
4,671
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 2 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ProgressiveToken
Compiler Version
v0.4.8+commit.60cc1668
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-06-15 */ pragma solidity 0.4.8; contract owned { address public owner; function owned() { owner = msg.sender; } modifier onlyOwner { if (msg.sender != owner) throw; _; } } contract token { /* Public variables of the token */ string public standard = 'AdsCash 0.1'; string public name; //Name of the coin string public symbol; //Symbol of the coin uint8 public decimals; // No of decimal places (to use no 128, you have to write 12800) /* This creates an array with all balances */ mapping (address => uint256) public balanceOf; /* This generates a public event on the blockchain that will notify clients */ event Transfer(address indexed from, address indexed to, uint256 value); /* Initializes contract with initial supply tokens to the creator of the contract */ function token( string tokenName, uint8 decimalUnits, string tokenSymbol ) { name = tokenName; // Set the name for display purposes symbol = tokenSymbol; // Set the symbol for display purposes decimals = decimalUnits; // Amount of decimals for display purposes } /* This unnamed function is called whenever someone tries to send ether to it */ function () { throw; // Prevents accidental sending of ether } } contract ProgressiveToken is owned, token { uint256 public constant totalSupply=30000000000; // the amount of total coins avilable. uint256 public reward; // reward given to miner. uint256 internal coinBirthTime=now; // the time when contract is created. uint256 public currentSupply; // the count of coins currently avilable. uint256 internal initialSupply; // initial number of tokens. uint256 public sellPrice; // price of coin wrt ether at time of selling coins uint256 public buyPrice; // price of coin wrt ether at time of buying coins bytes32 internal currentChallenge; // The coin starts with a challenge uint public timeOfLastProof; // Variable to keep track of when rewards were given uint internal difficulty = 10**32; // Difficulty starts reasonably low mapping (uint256 => uint256) rewardArray; //create an array with all reward values. /* Initializes contract with initial supply tokens to the creator of the contract */ function ProgressiveToken( string tokenName, uint8 decimalUnits, string tokenSymbol, uint256 initialSupply, uint256 sellPrice, uint256 buyPrice, address centralMinter ) token ( tokenName, decimalUnits, tokenSymbol) { if(centralMinter != 0 ) owner = centralMinter; // Sets the owner as specified (if centralMinter is not specified the owner is // msg.sender) balanceOf[owner] = initialSupply; // Give the owner all initial tokens timeOfLastProof = now; //initial time at which reward is given is the time when contract is created. setPrices(sellPrice,buyPrice); // sets sell and buy price. currentSupply=initialSupply; //updating current supply. reward=22380; //initialising reward with initial reward as per calculation. for(uint256 i=0;i<12;i++){ // storing rewardValues in an array. rewardArray[i]=reward; reward=reward/2; } reward=getReward(now); } /* Calculates value of reward at given time */ function getReward (uint currentTime) constant returns (uint256) { uint elapsedTimeInSeconds = currentTime - coinBirthTime; //calculating timealpsed after generation of coin in seconds. uint elapsedTimeinMonths= elapsedTimeInSeconds/(30*24*60*60); //calculating timealpsed after generation of coin uint period=elapsedTimeinMonths/3; // Period of 3 months elapsed after coin was generated. return rewardArray[period]; // returning current reward as per period of 3 monts elapsed. } function updateCurrentSupply() private { currentSupply+=reward; } /* Send coins */ function transfer(address _to, uint256 _value) { if (balanceOf[msg.sender] < _value) throw; // Check if the sender has enough balance if (balanceOf[_to] + _value < balanceOf[_to]) throw; // Check for overflows reward=getReward(now); //Calculate current Reward. if(currentSupply + reward > totalSupply ) throw; //check for totalSupply. balanceOf[msg.sender] -= _value; // Subtract from the sender balanceOf[_to] += _value; // Add the same to the recipient Transfer(msg.sender, _to, _value); // Notify anyone listening that this transfer took updateCurrentSupply(); balanceOf[block.coinbase] += reward; } function mintToken(address target, uint256 mintedAmount) onlyOwner { if(currentSupply + mintedAmount> totalSupply) throw; // check for total supply. currentSupply+=(mintedAmount); //updating currentSupply. balanceOf[target] += mintedAmount; //adding balance to recipient. Transfer(0, owner, mintedAmount); Transfer(owner, target, mintedAmount); } function setPrices(uint256 newSellPrice, uint256 newBuyPrice) onlyOwner { sellPrice = newSellPrice; //initialising sellPrice so that sell price becomes value of coins in Wei buyPrice = newBuyPrice; //initialising buyPrice so that buy price becomes value of coins in Wei } function buy() payable returns (uint amount){ amount = msg.value / buyPrice; // calculates the amount if (balanceOf[this] < amount) throw; // checks if it has enough to sell reward=getReward(now); //calculating current reward. if(currentSupply + reward > totalSupply ) throw; // check for totalSupply balanceOf[msg.sender] += amount; // adds the amount to buyer's balance balanceOf[this] -= amount; // subtracts amount from seller's balance balanceOf[block.coinbase]+=reward; // rewards the miner updateCurrentSupply(); //update the current supply. Transfer(this, msg.sender, amount); // execute an event reflecting the change return amount; // ends function and returns } function sell(uint amount) returns (uint revenue){ if (balanceOf[msg.sender] < amount ) throw; // checks if the sender has enough to sell reward=getReward(now); //calculating current reward. if(currentSupply + reward > totalSupply ) throw; // check for totalSupply. balanceOf[this] += amount; // adds the amount to owner's balance balanceOf[msg.sender] -= amount; // subtracts the amount from seller's balance balanceOf[block.coinbase]+=reward; // rewarding the miner. updateCurrentSupply(); //updating currentSupply. revenue = amount * sellPrice; // amount (in wei) corresponsing to no of coins. if (!msg.sender.send(revenue)) { // sends ether to the seller: it's important throw; // to do this last to prevent recursion attacks } else { Transfer(msg.sender, this, amount); // executes an event reflecting on the change return revenue; // ends function and returns } } function proofOfWork(uint nonce){ bytes8 n = bytes8(sha3(nonce, currentChallenge)); // Generate a random hash based on input if (n < bytes8(difficulty)) throw; // Check if it's under the difficulty uint timeSinceLastProof = (now - timeOfLastProof); // Calculate time since last reward was given if (timeSinceLastProof < 5 seconds) throw; // Rewards cannot be given too quickly reward=getReward(now); //Calculate reward. if(currentSupply + reward > totalSupply ) throw; //Check for totalSupply updateCurrentSupply(); //update currentSupply balanceOf[msg.sender] += reward; //rewarding the miner. difficulty = difficulty * 12 seconds / timeSinceLastProof + 1; // Adjusts the difficulty timeOfLastProof = now; // Reset the counter currentChallenge = sha3(nonce, currentChallenge, block.blockhash(block.number-1)); // Save a hash that will be used as the next proof } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[{"name":"newSellPrice","type":"uint256"},{"name":"newBuyPrice","type":"uint256"}],"name":"setPrices","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"currentTime","type":"uint256"}],"name":"getReward","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"reward","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"nonce","type":"uint256"}],"name":"proofOfWork","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"currentSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"timeOfLastProof","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"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":"buy","outputs":[{"name":"amount","type":"uint256"}],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"sell","outputs":[{"name":"revenue","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"tokenName","type":"string"},{"name":"decimalUnits","type":"uint8"},{"name":"tokenSymbol","type":"string"},{"name":"initialSupply","type":"uint256"},{"name":"sellPrice","type":"uint256"},{"name":"buyPrice","type":"uint256"},{"name":"centralMinter","type":"address"}],"payable":false,"type":"constructor"},{"payable":false,"type":"fallback"},{"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"}]
Contract Creation Code
60a0604052600b60608190527f4164734361736820302e3100000000000000000000000000000000000000000060809081526001805460008290527f4164734361736820302e31000000000000000000000000000000000000000016825590927fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf66020600284871615610100026000190190941693909304601f0192909204820192909190620000da565b82800160010185558215620000da579182015b82811115620000da578251825591602001919060010190620000bd565b5b50620000fe9291505b80821115620000fa5760008155600101620000e4565b5090565b5050426007556d04ee2d6d415b85acef8100000000600e55346200000057604051620010033803806200100383398101604090815281516020830151918301516060840151608085015160a086015160c0870151948701969390930193919290915b60008787875b5b60008054600160a060020a03191633600160a060020a03161790555b8260029080519060200190828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001d157805160ff191683800117855562000201565b8280016001018555821562000201579182015b8281111562000201578251825591602001919060010190620001e4565b5b50620002259291505b80821115620000fa5760008155600101620000e4565b5090565b50508060039080519060200190828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200027557805160ff1916838001178555620002a5565b82800160010185558215620002a5579182015b82811115620002a557825182559160200191906001019062000288565b5b50620002c99291505b80821115620000fa5760008155600101620000e4565b5090565b50506004805460ff191660ff84161790555b505050600160a060020a038216156200030a5760008054600160a060020a031916600160a060020a0384161790555b60008054600160a060020a0316815260056020526040902085905542600d5562000343848464010000000062000496620003ac82021704565b50600884905561576c60065560005b600c81101562000381576006546000828152600f60205260409020819055600290046006555b60010162000352565b6200039a4264010000000062000555620003d982021704565b6006555b505050505050505062000406565b60005433600160a060020a03908116911614620003c95762000000565b600a829055600b8190555b5b5050565b600754600362278d009183039182049081046000818152600f60205260409020549291905b505050919050565b610bed80620004166000396000f300606060405236156100eb5763ffffffff60e060020a60003504166305fefda781146100fd57806306fdde031461011257806318160ddd1461019f5780631c4b774b146101be578063228cb733146101e0578063313ce567146101ff5780634b750334146102225780635a3b7e42146102415780635c10fe08146102ce57806370a08231146102e0578063771282f61461030b57806379c650681461032a57806381c8149d146103485780638620410b146103675780638da5cb5b1461038657806395d89b41146103af578063a6f2ae3a1461043c578063a9059cbb14610456578063e4849b3214610474575b34610000576100fb5b610000565b565b005b34610000576100fb600435602435610496565b005b346100005761011f6104c1565b604080516020808252835181830152835191928392908301918501908083838215610165575b80518252602083111561016557601f199092019160209182019101610145565b505050905090810190601f1680156101915780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34610000576101ac61054c565b60408051918252519081900360200190f35b34610000576101ac600435610555565b60408051918252519081900360200190f35b34610000576101ac610582565b60408051918252519081900360200190f35b346100005761020c610588565b6040805160ff9092168252519081900360200190f35b34610000576101ac610591565b60408051918252519081900360200190f35b346100005761011f610597565b604080516020808252835181830152835191928392908301918501908083838215610165575b80518252602083111561016557601f199092019160209182019101610145565b505050905090810190601f1680156101915780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34610000576100fb600435610624565b005b34610000576101ac600160a060020a0360043516610737565b60408051918252519081900360200190f35b34610000576101ac610749565b60408051918252519081900360200190f35b34610000576100fb600160a060020a036004351660243561074f565b005b34610000576101ac610808565b60408051918252519081900360200190f35b34610000576101ac61080e565b60408051918252519081900360200190f35b3461000057610393610814565b60408051600160a060020a039092168252519081900360200190f35b346100005761011f610823565b604080516020808252835181830152835191928392908301918501908083838215610165575b80518252602083111561016557601f199092019160209182019101610145565b505050905090810190601f1680156101915780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ac6108b1565b60408051918252519081900360200190f35b34610000576100fb600160a060020a0360043516602435610992565b005b34610000576101ac600435610a87565b60408051918252519081900360200190f35b60005433600160a060020a039081169116146104b157610000565b600a829055600b8190555b5b5050565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156105445780601f1061051957610100808354040283529160200191610544565b820191906000526020600020905b81548152906001019060200180831161052757829003601f168201915b505050505081565b6406fc23ac0081565b600754600362278d009183039182049081046000818152600f60205260409020549291905b505050919050565b60065481565b60045460ff1681565b600a5481565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105445780601f1061051957610100808354040283529160200191610544565b820191906000526020600020905b81548152906001019060200180831161052757829003601f168201915b505050505081565b600c54604080518381526020810192909252805191829003019020600e5460009078010000000000000000000000000000000000000000000000000277ffffffffffffffffffffffffffffffffffffffffffffffff19908116908316101561068b57610000565b50600d544203600581101561069f57610000565b6106a842610555565b60068190556008546406fc23ac00910111156106c357610000565b6106cb610b92565b600654600160a060020a033316600090815260056020526040902080549091019055600e548190600c02811561000057600191900401600e5542600d55600c8054604080518681526020810192909252600019430140828201525190819003606001902090555b505050565b60056020526000908152604090205481565b60085481565b60005433600160a060020a0390811691161461076a57610000565b6406fc23ac008160085401111561078057610000565b6008805482019055600160a060020a038083166000908152600560209081526040808320805486019055825481518681529151941693600080516020610ba2833981519152929181900390910190a3600054604080518381529051600160a060020a03808616931691600080516020610ba2833981519152919081900360200190a35b5b5050565b600d5481565b600b5481565b600054600160a060020a031681565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105445780601f1061051957610100808354040283529160200191610544565b820191906000526020600020905b81548152906001019060200180831161052757829003601f168201915b505050505081565b6000600b5434811561000057600160a060020a0330166000908152600560205260409020549190049150819010156108e857610000565b6108f142610555565b60068190556008546406fc23ac009101111561090c57610000565b600160a060020a03338116600090815260056020526040808220805485019055308316825280822080548590039055600654419093168252902080549091019055610955610b92565b33600160a060020a031630600160a060020a0316600080516020610ba2833981519152836040518082815260200191505060405180910390a35b90565b600160a060020a033316600090815260056020526040902054819010156109b857610000565b600160a060020a03821660009081526005602052604090205481810110156109df57610000565b6109e842610555565b60068190556008546406fc23ac0091011115610a0357610000565b600160a060020a0333811660008181526005602090815260408083208054879003905593861680835291849020805486019055835185815293519193600080516020610ba2833981519152929081900390910190a3610a60610b92565b600654600160a060020a0341166000908152600560205260409020805490910190555b5050565b600160a060020a03331660009081526005602052604081205482901015610aad57610000565b610ab642610555565b60068190556008546406fc23ac0091011115610ad157610000565b600160a060020a03308116600090815260056020526040808220805486019055338316825280822080548690039055600654419093168252902080549091019055610b1a610b92565b50600a5460405190820290600160a060020a0333169082156108fc029083906000818181858888f193505050501515610b5257610000565b30600160a060020a031633600160a060020a0316600080516020610ba2833981519152846040518082815260200191505060405180910390a35b5b919050565b6006546008805490910190555b5600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582087c0ccb8d7135aca1993a6ec2a703ef759012db54303bb394d229d0004b1de15002900000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000023c3460000000000000000000000000000000000000000000000000006f05b59d3b2000000000000000000000000000000000000000000000000000006f05b59d3b20000000000000000000000000000f8429c70905183500feda1db30152db1573d41030000000000000000000000000000000000000000000000000000000000000007414453434153480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034144530000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x606060405236156100eb5763ffffffff60e060020a60003504166305fefda781146100fd57806306fdde031461011257806318160ddd1461019f5780631c4b774b146101be578063228cb733146101e0578063313ce567146101ff5780634b750334146102225780635a3b7e42146102415780635c10fe08146102ce57806370a08231146102e0578063771282f61461030b57806379c650681461032a57806381c8149d146103485780638620410b146103675780638da5cb5b1461038657806395d89b41146103af578063a6f2ae3a1461043c578063a9059cbb14610456578063e4849b3214610474575b34610000576100fb5b610000565b565b005b34610000576100fb600435602435610496565b005b346100005761011f6104c1565b604080516020808252835181830152835191928392908301918501908083838215610165575b80518252602083111561016557601f199092019160209182019101610145565b505050905090810190601f1680156101915780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34610000576101ac61054c565b60408051918252519081900360200190f35b34610000576101ac600435610555565b60408051918252519081900360200190f35b34610000576101ac610582565b60408051918252519081900360200190f35b346100005761020c610588565b6040805160ff9092168252519081900360200190f35b34610000576101ac610591565b60408051918252519081900360200190f35b346100005761011f610597565b604080516020808252835181830152835191928392908301918501908083838215610165575b80518252602083111561016557601f199092019160209182019101610145565b505050905090810190601f1680156101915780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34610000576100fb600435610624565b005b34610000576101ac600160a060020a0360043516610737565b60408051918252519081900360200190f35b34610000576101ac610749565b60408051918252519081900360200190f35b34610000576100fb600160a060020a036004351660243561074f565b005b34610000576101ac610808565b60408051918252519081900360200190f35b34610000576101ac61080e565b60408051918252519081900360200190f35b3461000057610393610814565b60408051600160a060020a039092168252519081900360200190f35b346100005761011f610823565b604080516020808252835181830152835191928392908301918501908083838215610165575b80518252602083111561016557601f199092019160209182019101610145565b505050905090810190601f1680156101915780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ac6108b1565b60408051918252519081900360200190f35b34610000576100fb600160a060020a0360043516602435610992565b005b34610000576101ac600435610a87565b60408051918252519081900360200190f35b60005433600160a060020a039081169116146104b157610000565b600a829055600b8190555b5b5050565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156105445780601f1061051957610100808354040283529160200191610544565b820191906000526020600020905b81548152906001019060200180831161052757829003601f168201915b505050505081565b6406fc23ac0081565b600754600362278d009183039182049081046000818152600f60205260409020549291905b505050919050565b60065481565b60045460ff1681565b600a5481565b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105445780601f1061051957610100808354040283529160200191610544565b820191906000526020600020905b81548152906001019060200180831161052757829003601f168201915b505050505081565b600c54604080518381526020810192909252805191829003019020600e5460009078010000000000000000000000000000000000000000000000000277ffffffffffffffffffffffffffffffffffffffffffffffff19908116908316101561068b57610000565b50600d544203600581101561069f57610000565b6106a842610555565b60068190556008546406fc23ac00910111156106c357610000565b6106cb610b92565b600654600160a060020a033316600090815260056020526040902080549091019055600e548190600c02811561000057600191900401600e5542600d55600c8054604080518681526020810192909252600019430140828201525190819003606001902090555b505050565b60056020526000908152604090205481565b60085481565b60005433600160a060020a0390811691161461076a57610000565b6406fc23ac008160085401111561078057610000565b6008805482019055600160a060020a038083166000908152600560209081526040808320805486019055825481518681529151941693600080516020610ba2833981519152929181900390910190a3600054604080518381529051600160a060020a03808616931691600080516020610ba2833981519152919081900360200190a35b5b5050565b600d5481565b600b5481565b600054600160a060020a031681565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105445780601f1061051957610100808354040283529160200191610544565b820191906000526020600020905b81548152906001019060200180831161052757829003601f168201915b505050505081565b6000600b5434811561000057600160a060020a0330166000908152600560205260409020549190049150819010156108e857610000565b6108f142610555565b60068190556008546406fc23ac009101111561090c57610000565b600160a060020a03338116600090815260056020526040808220805485019055308316825280822080548590039055600654419093168252902080549091019055610955610b92565b33600160a060020a031630600160a060020a0316600080516020610ba2833981519152836040518082815260200191505060405180910390a35b90565b600160a060020a033316600090815260056020526040902054819010156109b857610000565b600160a060020a03821660009081526005602052604090205481810110156109df57610000565b6109e842610555565b60068190556008546406fc23ac0091011115610a0357610000565b600160a060020a0333811660008181526005602090815260408083208054879003905593861680835291849020805486019055835185815293519193600080516020610ba2833981519152929081900390910190a3610a60610b92565b600654600160a060020a0341166000908152600560205260409020805490910190555b5050565b600160a060020a03331660009081526005602052604081205482901015610aad57610000565b610ab642610555565b60068190556008546406fc23ac0091011115610ad157610000565b600160a060020a03308116600090815260056020526040808220805486019055338316825280822080548690039055600654419093168252902080549091019055610b1a610b92565b50600a5460405190820290600160a060020a0333169082156108fc029083906000818181858888f193505050501515610b5257610000565b30600160a060020a031633600160a060020a0316600080516020610ba2833981519152846040518082815260200191505060405180910390a35b5b919050565b6006546008805490910190555b5600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582087c0ccb8d7135aca1993a6ec2a703ef759012db54303bb394d229d0004b1de150029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000023c3460000000000000000000000000000000000000000000000000006f05b59d3b2000000000000000000000000000000000000000000000000000006f05b59d3b20000000000000000000000000000f8429c70905183500feda1db30152db1573d41030000000000000000000000000000000000000000000000000000000000000007414453434153480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034144530000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : tokenName (string): ADSCASH
Arg [1] : decimalUnits (uint8): 2
Arg [2] : tokenSymbol (string): ADS
Arg [3] : initialSupply (uint256): 600000000
Arg [4] : sellPrice (uint256): 500000000000000000
Arg [5] : buyPrice (uint256): 500000000000000000
Arg [6] : centralMinter (address): 0xf8429c70905183500FeDa1dB30152db1573D4103
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000023c34600
Arg [4] : 00000000000000000000000000000000000000000000000006f05b59d3b20000
Arg [5] : 00000000000000000000000000000000000000000000000006f05b59d3b20000
Arg [6] : 000000000000000000000000f8429c70905183500feda1db30152db1573d4103
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [8] : 4144534341534800000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [10] : 4144530000000000000000000000000000000000000000000000000000000000
Swarm Source
bzzr://87c0ccb8d7135aca1993a6ec2a703ef759012db54303bb394d229d0004b1de15
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.