Overview
Max Total Supply
300,000,000 GRID
Holders
3,348 (0.00%)
Market
Price
$0.00 @ 0.000001 ETH
Onchain Market Cap
$641,680.83
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 12 Decimals)
Balance
81.081081081081 GRIDValue
$0.17 ( ~6.77956646242303E-05 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HumanStandardToken
Compiler Version
v0.4.11+commit.68ef5810
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-06-12 */ 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. //require(balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]); require(balances[msg.sender] >= _value); balances[msg.sender] -= _value; balances[_to] += _value; Transfer(msg.sender, _to, _value); return true; } 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. //require(balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]); require(balances[_from] >= _value && allowed[_from][msg.sender] >= _value); balances[_to] += _value; balances[_from] -= _value; allowed[_from][msg.sender] -= _value; Transfer(_from, _to, _value); return true; } 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 HumanStandardToken is StandardToken { /* 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 = 'H0.1'; //human 0.1 standard. Just an arbitrary versioning scheme. function HumanStandardToken( 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. require(_spender.call(bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData)); return true; } } contract Disbursement { /* * Storage */ address public owner; address public receiver; uint public disbursementPeriod; uint public startDate; uint public withdrawnTokens; Token public token; /* * Modifiers */ modifier isOwner() { if (msg.sender != owner) // Only owner is allowed to proceed revert(); _; } modifier isReceiver() { if (msg.sender != receiver) // Only receiver is allowed to proceed revert(); _; } modifier isSetUp() { if (address(token) == 0) // Contract is not set up revert(); _; } /* * Public functions */ /// @dev Constructor function sets contract owner /// @param _receiver Receiver of vested tokens /// @param _disbursementPeriod Vesting period in seconds /// @param _startDate Start date of disbursement period (cliff) function Disbursement(address _receiver, uint _disbursementPeriod, uint _startDate) public { if (_receiver == 0 || _disbursementPeriod == 0) // Arguments are null revert(); owner = msg.sender; receiver = _receiver; disbursementPeriod = _disbursementPeriod; startDate = _startDate; if (startDate == 0) startDate = now; } /// @dev Setup function sets external contracts' addresses /// @param _token Token address function setup(Token _token) public isOwner { if (address(token) != 0 || address(_token) == 0) // Setup was executed already or address is null revert(); token = _token; } /// @dev Transfers tokens to a given address /// @param _to Address of token receiver /// @param _value Number of tokens to transfer function withdraw(address _to, uint256 _value) public isReceiver isSetUp { uint maxTokens = calcMaxWithdraw(); if (_value > maxTokens) revert(); withdrawnTokens += _value; token.transfer(_to, _value); } /// @dev Calculates the maximum amount of vested tokens /// @return Number of vested tokens to withdraw function calcMaxWithdraw() public constant returns (uint) { uint maxTokens = (token.balanceOf(this) + withdrawnTokens) * (now - startDate) / disbursementPeriod; if (withdrawnTokens >= maxTokens || startDate > now) return 0; return maxTokens - withdrawnTokens; } } contract Sale { /* * Events */ event PurchasedTokens(address indexed purchaser, uint amount); event TransferredPreBuyersReward(address indexed preBuyer, uint amount); event TransferredTimelockedTokens(address beneficiary, address disburser, uint amount); /* * Storage */ address public owner; address public wallet; HumanStandardToken public token; uint public price; uint public startBlock; uint public freezeBlock; uint public endBlock; uint public totalPreBuyers; uint public preBuyersDispensedTo = 0; uint public totalTimelockedBeneficiaries; uint public timeLockedBeneficiariesDisbursedTo = 0; bool public emergencyFlag = false; bool public preSaleTokensDisbursed = false; bool public timelockedTokensDisbursed = false; /* * Modifiers */ modifier saleStarted { require(block.number >= startBlock); _; } modifier saleEnded { require(block.number > endBlock); _; } modifier saleNotEnded { require(block.number <= endBlock); _; } modifier onlyOwner { require(msg.sender == owner); _; } modifier notFrozen { require(block.number < freezeBlock); _; } modifier setupComplete { assert(preSaleTokensDisbursed && timelockedTokensDisbursed); _; } modifier notInEmergency { assert(emergencyFlag == false); _; } /* * Public functions */ /// @dev Sale(): constructor for Sale contract /// @param _owner the address which owns the sale, can access owner-only functions /// @param _wallet the sale's beneficiary address /// @param _tokenSupply the total number of tokens to mint /// @param _tokenName the token's human-readable name /// @param _tokenDecimals the number of display decimals in token balances /// @param _tokenSymbol the token's human-readable asset symbol /// @param _price price of the token in Wei /// @param _startBlock the block at which this contract will begin selling its token balance function Sale( address _owner, address _wallet, uint256 _tokenSupply, string _tokenName, uint8 _tokenDecimals, string _tokenSymbol, uint _price, uint _startBlock, uint _freezeBlock, uint _totalPreBuyers, uint _totalTimelockedBeneficiaries, uint _endBlock ) { owner = _owner; wallet = _wallet; token = new HumanStandardToken(_tokenSupply, _tokenName, _tokenDecimals, _tokenSymbol); price = _price; startBlock = _startBlock; freezeBlock = _freezeBlock; totalPreBuyers = _totalPreBuyers; totalTimelockedBeneficiaries = _totalTimelockedBeneficiaries; endBlock = _endBlock; token.transfer(this, token.totalSupply()); assert(token.balanceOf(this) == token.totalSupply()); assert(token.balanceOf(this) == _tokenSupply); } /// @dev distributePreBuyersRewards(): private utility function called by constructor /// @param _preBuyers an array of addresses to which awards will be distributed /// @param _preBuyersTokens an array of integers specifying preBuyers rewards function distributePreBuyersRewards( address[] _preBuyers, uint[] _preBuyersTokens ) public onlyOwner { assert(!preSaleTokensDisbursed); for(uint i = 0; i < _preBuyers.length; i++) { token.transfer(_preBuyers[i], _preBuyersTokens[i]); preBuyersDispensedTo += 1; TransferredPreBuyersReward(_preBuyers[i], _preBuyersTokens[i]); } if(preBuyersDispensedTo == totalPreBuyers) { preSaleTokensDisbursed = true; } } /// @dev distributeTimelockedTokens(): private utility function called by constructor /// @param _beneficiaries an array of addresses specifying disbursement beneficiaries /// @param _beneficiariesTokens an array of integers specifying disbursement amounts /// @param _timelocks an array of UNIX timestamps specifying vesting dates /// @param _periods an array of durations in seconds specifying vesting periods function distributeTimelockedTokens( address[] _beneficiaries, uint[] _beneficiariesTokens, uint[] _timelocks, uint[] _periods ) public onlyOwner { assert(preSaleTokensDisbursed); assert(!timelockedTokensDisbursed); for(uint i = 0; i < _beneficiaries.length; i++) { address beneficiary = _beneficiaries[i]; uint beneficiaryTokens = _beneficiariesTokens[i]; Disbursement disbursement = new Disbursement( beneficiary, _periods[i], _timelocks[i] ); disbursement.setup(token); token.transfer(disbursement, beneficiaryTokens); timeLockedBeneficiariesDisbursedTo += 1; TransferredTimelockedTokens(beneficiary, disbursement, beneficiaryTokens); } if(timeLockedBeneficiariesDisbursedTo == totalTimelockedBeneficiaries) { timelockedTokensDisbursed = true; } } /// @dev purchaseToken(): function that exchanges ETH for tokens (main sale function) /// @notice You're about to purchase the equivalent of `msg.value` Wei in tokens function purchaseTokens() saleStarted saleNotEnded payable setupComplete notInEmergency { /* Calculate whether any of the msg.value needs to be returned to the sender. The tokenPurchase is the actual number of tokens which will be purchased once any excessAmount included in the msg.value is removed from the purchaseAmount. */ uint excessAmount = msg.value % price; uint purchaseAmount = msg.value - excessAmount; uint tokenPurchase = purchaseAmount / price; // Cannot purchase more tokens than this contract has available to sell require(tokenPurchase <= token.balanceOf(this)); // Return any excess msg.value if (excessAmount > 0) { msg.sender.transfer(excessAmount); } // Forward received ether minus any excessAmount to the wallet wallet.transfer(purchaseAmount); // Transfer the sum of tokens tokenPurchase to the msg.sender token.transfer(msg.sender, tokenPurchase); PurchasedTokens(msg.sender, tokenPurchase); } /* * Owner-only functions */ function changeOwner(address _newOwner) onlyOwner { require(_newOwner != 0); owner = _newOwner; } function withdrawRemainder() onlyOwner saleEnded { uint remainder = token.balanceOf(this); token.transfer(wallet, remainder); } function changePrice(uint _newPrice) onlyOwner notFrozen { require(_newPrice != 0); price = _newPrice; } function changeWallet(address _wallet) onlyOwner notFrozen { require(_wallet != 0); wallet = _wallet; } function changeStartBlock(uint _newBlock) onlyOwner notFrozen { require(_newBlock != 0); freezeBlock = _newBlock - (startBlock - freezeBlock); startBlock = _newBlock; } function changeEndBlock(uint _newBlock) onlyOwner notFrozen { require(_newBlock > startBlock); endBlock = _newBlock; } function emergencyToggle() onlyOwner { emergencyFlag = !emergencyFlag; } }
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":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":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":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"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"},{"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
60a0604052600460608190527f48302e3100000000000000000000000000000000000000000000000000000000608090815261003e91600691906100d7565b50341561004757fe5b604051610b45380380610b45833981016040908152815160208301519183015160608401519193928301929091015b600160a060020a033316600090815260016020908152604082208690559085905583516100a991600391908601906100d7565b506004805460ff191660ff841617905580516100cc9060059060208401906100d7565b505b50505050610177565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061011857805160ff1916838001178555610145565b82800160010185558215610145579182015b8281111561014557825182559160200191906001019061012a565b5b50610152929150610156565b5090565b61017491905b80821115610152576000815560010161015c565b5090565b90565b6109bf806101866000396000f300606060405236156100935763ffffffff60e060020a60003504166306fdde038114610095578063095ea7b31461012557806318160ddd1461015857806323b872dd1461017a578063313ce567146101b357806354fd4d50146101d957806370a082311461026957806395d89b4114610297578063a9059cbb14610327578063cae9ca511461035a578063dd62ed3e146103d1575bfe5b341561009d57fe5b6100a5610405565b6040805160208082528351818301528351919283929083019185019080838382156100eb575b8051825260208311156100eb57601f1990920191602091820191016100cb565b505050905090810190601f1680156101175780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561012d57fe5b610144600160a060020a0360043516602435610493565b604080519115158252519081900360200190f35b341561016057fe5b6101686104ec565b60408051918252519081900360200190f35b341561018257fe5b610144600160a060020a03600435811690602435166044356104f2565b604080519115158252519081900360200190f35b34156101bb57fe5b6101c36105c8565b6040805160ff9092168252519081900360200190f35b34156101e157fe5b6100a56105d1565b6040805160208082528351818301528351919283929083019185019080838382156100eb575b8051825260208311156100eb57601f1990920191602091820191016100cb565b505050905090810190601f1680156101175780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561027157fe5b610168600160a060020a036004351661065f565b60408051918252519081900360200190f35b341561029f57fe5b6100a561067e565b6040805160208082528351818301528351919283929083019185019080838382156100eb575b8051825260208311156100eb57601f1990920191602091820191016100cb565b505050905090810190601f1680156101175780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561032f57fe5b610144600160a060020a036004351660243561070c565b604080519115158252519081900360200190f35b341561036257fe5b604080516020600460443581810135601f8101849004840285018401909552848452610144948235600160a060020a031694602480359560649492939190920191819084018382808284375094965061079295505050505050565b604080519115158252519081900360200190f35b34156103d957fe5b610168600160a060020a0360043581169060243516610926565b60408051918252519081900360200190f35b6003805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561048b5780601f106104605761010080835404028352916020019161048b565b820191906000526020600020905b81548152906001019060200180831161046e57829003601f168201915b505050505081565b600160a060020a0333811660008181526002602090815260408083209487168084529482528083208690558051868152905192949392600080516020610974833981519152929181900390910190a35060015b92915050565b60005481565b600160a060020a0383166000908152600160205260408120548290108015906105425750600160a060020a0380851660009081526002602090815260408083203390941683529290522054829010155b151561054e5760006000fd5b600160a060020a03808416600081815260016020908152604080832080548801905588851680845281842080548990039055600283528184203390961684529482529182902080548790039055815186815291519293926000805160206109548339815191529281900390910190a35060015b9392505050565b60045460ff1681565b6006805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561048b5780601f106104605761010080835404028352916020019161048b565b820191906000526020600020905b81548152906001019060200180831161046e57829003601f168201915b505050505081565b600160a060020a0381166000908152600160205260409020545b919050565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561048b5780601f106104605761010080835404028352916020019161048b565b820191906000526020600020905b81548152906001019060200180831161046e57829003601f168201915b505050505081565b600160a060020a033316600090815260016020526040812054829010156107335760006000fd5b600160a060020a0333811660008181526001602090815260408083208054889003905593871680835291849020805487019055835186815293519193600080516020610954833981519152929081900390910190a35060015b92915050565b600160a060020a0333811660008181526002602090815260408083209488168084529482528083208790558051878152905192949392600080516020610974833981519152929181900390910190a383600160a060020a031660405180807f72656365697665417070726f76616c28616464726573732c75696e743235362c8152602001609060020a6d616464726573732c62797465732902815250602e019050604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a031681526020018280519060200190808383600083146108c6575b8051825260208311156108c657601f1990920191602091820191016108a6565b505050905090810190601f1680156108f25780820380516001836020036101000a031916815260200191505b5094505050505060006040518083038160008761646e5a03f192505050151561091b5760006000fd5b5060015b9392505050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a72305820db88378a43e571bfa385023c702fe1368408e2baddf571c5548cf1df67238d62002900000000000000000000000000000000000000000000001043561a88293000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000a4752494420546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044752494400000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x606060405236156100935763ffffffff60e060020a60003504166306fdde038114610095578063095ea7b31461012557806318160ddd1461015857806323b872dd1461017a578063313ce567146101b357806354fd4d50146101d957806370a082311461026957806395d89b4114610297578063a9059cbb14610327578063cae9ca511461035a578063dd62ed3e146103d1575bfe5b341561009d57fe5b6100a5610405565b6040805160208082528351818301528351919283929083019185019080838382156100eb575b8051825260208311156100eb57601f1990920191602091820191016100cb565b505050905090810190601f1680156101175780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561012d57fe5b610144600160a060020a0360043516602435610493565b604080519115158252519081900360200190f35b341561016057fe5b6101686104ec565b60408051918252519081900360200190f35b341561018257fe5b610144600160a060020a03600435811690602435166044356104f2565b604080519115158252519081900360200190f35b34156101bb57fe5b6101c36105c8565b6040805160ff9092168252519081900360200190f35b34156101e157fe5b6100a56105d1565b6040805160208082528351818301528351919283929083019185019080838382156100eb575b8051825260208311156100eb57601f1990920191602091820191016100cb565b505050905090810190601f1680156101175780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561027157fe5b610168600160a060020a036004351661065f565b60408051918252519081900360200190f35b341561029f57fe5b6100a561067e565b6040805160208082528351818301528351919283929083019185019080838382156100eb575b8051825260208311156100eb57601f1990920191602091820191016100cb565b505050905090810190601f1680156101175780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561032f57fe5b610144600160a060020a036004351660243561070c565b604080519115158252519081900360200190f35b341561036257fe5b604080516020600460443581810135601f8101849004840285018401909552848452610144948235600160a060020a031694602480359560649492939190920191819084018382808284375094965061079295505050505050565b604080519115158252519081900360200190f35b34156103d957fe5b610168600160a060020a0360043581169060243516610926565b60408051918252519081900360200190f35b6003805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561048b5780601f106104605761010080835404028352916020019161048b565b820191906000526020600020905b81548152906001019060200180831161046e57829003601f168201915b505050505081565b600160a060020a0333811660008181526002602090815260408083209487168084529482528083208690558051868152905192949392600080516020610974833981519152929181900390910190a35060015b92915050565b60005481565b600160a060020a0383166000908152600160205260408120548290108015906105425750600160a060020a0380851660009081526002602090815260408083203390941683529290522054829010155b151561054e5760006000fd5b600160a060020a03808416600081815260016020908152604080832080548801905588851680845281842080548990039055600283528184203390961684529482529182902080548790039055815186815291519293926000805160206109548339815191529281900390910190a35060015b9392505050565b60045460ff1681565b6006805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561048b5780601f106104605761010080835404028352916020019161048b565b820191906000526020600020905b81548152906001019060200180831161046e57829003601f168201915b505050505081565b600160a060020a0381166000908152600160205260409020545b919050565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561048b5780601f106104605761010080835404028352916020019161048b565b820191906000526020600020905b81548152906001019060200180831161046e57829003601f168201915b505050505081565b600160a060020a033316600090815260016020526040812054829010156107335760006000fd5b600160a060020a0333811660008181526001602090815260408083208054889003905593871680835291849020805487019055835186815293519193600080516020610954833981519152929081900390910190a35060015b92915050565b600160a060020a0333811660008181526002602090815260408083209488168084529482528083208790558051878152905192949392600080516020610974833981519152929181900390910190a383600160a060020a031660405180807f72656365697665417070726f76616c28616464726573732c75696e743235362c8152602001609060020a6d616464726573732c62797465732902815250602e019050604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a031681526020018280519060200190808383600083146108c6575b8051825260208311156108c657601f1990920191602091820191016108a6565b505050905090810190601f1680156108f25780820380516001836020036101000a031916815260200191505b5094505050505060006040518083038160008761646e5a03f192505050151561091b5760006000fd5b5060015b9392505050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a72305820db88378a43e571bfa385023c702fe1368408e2baddf571c5548cf1df67238d620029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000001043561a88293000000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000000a4752494420546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044752494400000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initialAmount (uint256): 300000000000000000000
Arg [1] : _tokenName (string): GRID Token
Arg [2] : _decimalUnits (uint8): 12
Arg [3] : _tokenSymbol (string): GRID
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000001043561a8829300000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 4752494420546f6b656e00000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4752494400000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
4161:2350:0:-;;;;;;;;-1:-1:-1;;;4161:2350:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4551:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18:2:-1;;13:3;7:5;32;59:3;53:5;48:3;41:6;93:2;88:3;85:2;78:6;73:3;67:5;-1:-1;;152:3;;;;117:2;108:3;;;;130;172:5;167:4;181:3;3:186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3695:202:0;;;;;;;;-1:-1:-1;;;;;3695:202:0;;;;;;;;;;;;;;;;;;;;;;;;;520:26;;;;;;;;;;;;;;;;;;;;;;;;;;2968:599;;;;;;;;-1:-1:-1;;;;;2968:599:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4623:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4885:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18:2:-1;;13:3;7:5;32;59:3;53:5;48:3;41:6;93:2;88:3;85:2;78:6;73:3;67:5;-1:-1;;152:3;;;;117:2;108:3;;;;130;172:5;167:4;181:3;3:186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3575:112:0;;;;;;;;-1:-1:-1;;;;;3575:112:0;;;;;;;;;;;;;;;;;;;;;4818:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18:2:-1;;13:3;7:5;32;59:3;53:5;48:3;41:6;93:2;88:3;85:2;78:6;73:3;67:5;-1:-1;;152:3;;;;117:2;108:3;;;;130;172:5;167:4;181:3;3:186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:611:0;;;;;;;;-1:-1:-1;;;;;2349:611:0;;;;;;;;;;;;;;;;;;;;;;;;;5714:794;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5714:794:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5714:794:0;;-1:-1:-1;5714:794:0;;-1:-1:-1;;;;;;5714:794:0;;;;;;;;;;;;;;;;;;;3905:139;;;;;;;;-1:-1:-1;;;;;3905:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;4551:18;;;;;;;;;;;;;;;-1:-1:-1;;4551:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3695:202::-;-1:-1:-1;;;;;3788:10:0;3780:19;;3755:12;3780:19;;;-1:-1:-1;3780:19:0;;;;;;;;:29;;;;;;;;;;;;:38;;;3829;;;;;;;-1:-1:-1;;3755:12:0;;3780:29;:19;3755:12;;3780:19;-1:-1:-1;3755:12:0;-1:-1:-1;;;;;3829:38:0;;;;;;;;;;-1:-1:-1;3885:4:0;3695:202;;;;;:::o;520:26::-;;;;:::o;2968:599::-;-1:-1:-1;;;;;3315:15:0;;3043:12;3315:15;;;-1:-1:-1;3315:15:0;;;;;;:25;;;;;;:65;;-1:-1:-1;;;;;;3344:14:0;;;;;;;-1:-1:-1;3344:14:0;;;;;;;;3359:10;3344:26;;;;;;;;;;:36;;;;3315:65;3307:74;;;;;;;;-1:-1:-1;;;;;3392:13:0;;;;;;;-1:-1:-1;3392:13:0;;;;;;;;:23;;;;;;3426:15;;;;;;;;;:25;;;;;;;-1:-1:-1;3462:14:0;;;;;3477:10;3462:26;;;;;;;;;;;:36;;;;;;;3509:28;;;;;;;-1:-1:-1;;3392:13:0;;3426:15;3509:28;;;;3392:13;-1:-1:-1;3392:13:0;-1:-1:-1;;;;;3509:28:0;;;;;;;;;-1:-1:-1;3555:4:0;2968:599;;;;;;:::o;4623:21::-;;;;;;:::o;4885:30::-;;;;;;;;;;;;;;;-1:-1:-1;;4885:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3575:112::-;-1:-1:-1;;;;;3663:16:0;;3628:15;3663:16;;;-1:-1:-1;3663:16:0;;;;;;3575:112;;;;:::o;4818:20::-;;;;;;;;;;;;;;;-1:-1:-1;;4818:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2349:611::-;-1:-1:-1;;;;;2789:10:0;2780:20;2405:12;2780:20;;;-1:-1:-1;2780:20:0;;;;;;:30;;;;2772:39;;;;;;-1:-1:-1;;;;;2831:10:0;2822:20;;;;;;-1:-1:-1;2822:20:0;;;;;;;;:30;;;;;;;2863:13;;;;;;;;;:23;;;;;;2897:33;;;;;;;-1:-1:-1;;2863:13:0;;2897:33;;;;2822:20;-1:-1:-1;2822:20:0;-1:-1:-1;;;;;2897:33:0;;;;;;;;;;-1:-1:-1;2948:4:0;2349:611;;;;;:::o;5714:794::-;-1:-1:-1;;;;;5832:10:0;5824:19;;5799:12;5824:19;;;-1:-1:-1;5824:19:0;;;;;;;;:29;;;;;;;;;;;;:38;;;5873;;;;;;;-1:-1:-1;;5799:12:0;;5824:29;:19;5799:12;;5824:19;-1:-1:-1;5799:12:0;-1:-1:-1;;;;;5873:38:0;;;;;;;;;;6382:54;;;;;;-1:-1:-1;;;;;6382:54:0;;;;;;;;;;;;;;;;;;6353:124;-1:-1:-1;;;6353:124:0;;;;;;;;;;;;6440:10;-1:-1:-1;;;;;6353:124:0;;;;;;;;;;;;;;;6460:4;6353:124;;;;;;;;;:13;;;;:124;;6440:10;;6353:124;;6460:4;;6353:124;;;;;;;;;;;;18:2:-1;;13:3;7:5;32;59:3;53:5;48:3;41:6;93:2;88:3;85:2;78:6;73:3;67:5;-1:-1;;152:3;;;;117:2;108:3;;;;130;172:5;167:4;181:3;3:186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6345:133:0;;;;;;;;-1:-1:-1;6496:4:0;5714:794;;;;;;:::o;3905:139::-;-1:-1:-1;;;;;4011:15:0;;;3976:17;4011:15;;;-1:-1:-1;4011:15:0;;;;;;;;:25;;;;;;;;;;3905:139;;;;;:::o
Swarm Source
bzzr://db88378a43e571bfa385023c702fe1368408e2baddf571c5548cf1df67238d62
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.