ERC-20
Overview
Max Total Supply
50,000,000 GFC
Holders
28
Total Transfers
-
Market
Fully Diluted Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 0 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GFCToken
Compiler Version
v0.4.19+commit.c4cbbb05
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-02-16 */ pragma solidity ^0.4.13; contract owned { /* Owner definition. */ address public owner; // Owner address. function owned() internal { owner = msg.sender; } modifier onlyOwner { require(msg.sender == owner); _; } function transferOwnership(address newOwner) onlyOwner public{ owner = newOwner; } } contract token { /* Base token definition. */ string public name; // Name for the token. string public symbol; // Symbol for the token. uint8 public decimals; // Number of decimals of the token. uint256 public totalSupply; // Total of tokens created. // Array containing the balance foreach address. mapping (address => uint256) public balanceOf; // Array containing foreach address, an array containing each approved address and the amount of tokens it can spend. mapping (address => mapping (address => uint256)) public allowance; /* This generates a public event on the blockchain that will notify about a transfer done. */ event Transfer(address indexed from, address indexed to, uint256 value); /* Initializes the contract */ function token(uint256 initialSupply, string tokenName, uint8 decimalUnits, string tokenSymbol) internal { balanceOf[msg.sender] = initialSupply; // Gives the creator all initial tokens. totalSupply = initialSupply; // Update total supply. name = tokenName; // Set the name for display purposes. symbol = tokenSymbol; // Set the symbol for display purposes. decimals = decimalUnits; // Amount of decimals for display purposes. } /* Internal transfer, only can be called by this contract. */ function _transfer(address _from, address _to, uint _value) internal { require(_to != 0x0); // Prevent transfer to 0x0 address. require(balanceOf[_from] > _value); // Check if the sender has enough. require(balanceOf[_to] + _value > balanceOf[_to]); // Check for overflows. balanceOf[_from] -= _value; // Subtract from the sender. balanceOf[_to] += _value; // Add the same to the recipient. Transfer(_from, _to, _value); // Notifies the blockchain about the transfer. } /// @notice Send `_value` tokens to `_to` from your account. /// @param _to The address of the recipient. /// @param _value The amount to send. function transfer(address _to, uint256 _value) public { _transfer(msg.sender, _to, _value); } /// @notice Send `_value` tokens to `_to` in behalf of `_from`. /// @param _from The address of the sender. /// @param _to The address of the recipient. /// @param _value The amount to send. function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { require(_value <= allowance[_from][msg.sender]); // Check allowance. allowance[_from][msg.sender] -= _value; // Update the allowance array, substracting the amount sent. _transfer(_from, _to, _value); // Makes the transfer. return true; } /// @notice Allows `_spender` to spend a maximum of `_value` tokens in your behalf. /// @param _spender The address authorized to spend. /// @param _value The max amount they can spend. function approve(address _spender, uint256 _value) public returns (bool success) { allowance[msg.sender][_spender] = _value; // Adds a new register to allowance, permiting _spender to use _value of your tokens. return true; } } contract GFCToken is owned, token { /* Specific token definition for -GFC Token- company. */ uint256 public sellPrice = 1; // Price applied when selling a token. uint256 public buyPrice = 1; // Price applied when buying a token. bool public closeBuy = false; // If true, nobody will be able to buy. bool public closeSell = false; // If true, nobody will be able to sell. address public commissionGetter = 0xCd8bf69ad65c5158F0cfAA599bBF90d7f4b52Bb0; // The address that gets the commissions paid. mapping (address => bool) public frozenAccount; // Array containing foreach address if it's frozen or not. /* This generates a public event on the blockchain that will notify about an address being freezed. */ event FrozenFunds(address target, bool frozen); /* This generates a public event on the blockchain that will notify about an addition of Ether to the contract. */ event LogDeposit(address sender, uint amount); /* This generates a public event on the blockchain that will notify about a Withdrawal of Ether from the contract. */ event LogWithdrawal(address receiver, uint amount); /* Initializes the contract */ function GFCToken(uint256 initialSupply, string tokenName, uint8 decimalUnits, string tokenSymbol) public token (initialSupply, tokenName, decimalUnits, tokenSymbol) {} /* Overrides Internal transfer due to frozen accounts check */ function _transfer(address _from, address _to, uint _value) internal { require(_to != 0x0); // Prevent transfer to 0x0 address. require(balanceOf[_from] >= _value); // Check if the sender has enough. require(balanceOf[_to] + _value > balanceOf[_to]); // Check for overflows. require(!frozenAccount[_from]); // Check if sender is frozen. require(!frozenAccount[_to]); // Check if recipient is frozen. balanceOf[_from] -= _value; // Subtracts _value tokens from the sender. balanceOf[_to] += _value; // Adds the same amount to the recipient. Transfer(_from, _to, _value); // Notifies the blockchain about the transfer. } /* Sends GFC from the owner to the smart-contract */ function refillTokens(uint256 _value) public onlyOwner{ _transfer(msg.sender, this, _value); } /* Overrides basic transfer function due to commission value */ function transfer(address _to, uint256 _value) public { uint market_value = _value * sellPrice; //Market value for this amount uint commission = market_value * 1 / 100; //Calculates the commission for this transaction require(this.balance >= commission); // The smart-contract pays commission, else the transfer is not possible. commissionGetter.transfer(commission); // Transfers commission to the commissionGetter. _transfer(msg.sender, _to, _value); // Makes the transfer of tokens. } /* Overrides basic transferFrom function due to commission value */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { require(_value <= allowance[_from][msg.sender]); // Check allowance. uint market_value = _value * sellPrice; //Market value for this amount uint commission = market_value * 1 / 100; //Calculates the commission for this transaction require(this.balance >= commission); // The smart-contract pays commission, else the transfer is not possible. commissionGetter.transfer(commission); // Transfers commission to the commissionGetter. allowance[_from][msg.sender] -= _value; // Update the allowance array, substracting the amount sent. _transfer(_from, _to, _value); // Makes the transfer of tokens. return true; } /// @notice `freeze? Prevent | Allow` `target` from sending & receiving tokens. /// @param target Address to be frozen. /// @param freeze Either to freeze target or not. function freezeAccount(address target, bool freeze) onlyOwner public { frozenAccount[target] = freeze; // Sets the target status. True if it's frozen, False if it's not. FrozenFunds(target, freeze); // Notifies the blockchain about the change of state. } /// @notice Allow addresses to pay `newBuyPrice`ETH when buying and receive `newSellPrice`ETH when selling, foreach token bought/sold. /// @param newSellPrice Price applied when an address sells its tokens, amount in WEI (1ETH = 10¹⁸WEI). /// @param newBuyPrice Price applied when an address buys tokens, amount in WEI (1ETH = 10¹⁸WEI). function setPrices(uint256 newSellPrice, uint256 newBuyPrice) onlyOwner public { sellPrice = newSellPrice; // Update the buying price. buyPrice = newBuyPrice; // Update the selling price. } /// @notice Sets the state of buy and sell operations /// @param isClosedBuy True if buy operations are closed, False if opened. /// @param isClosedSell True if sell operations are closed, False if opened. function setStatus(bool isClosedBuy, bool isClosedSell) onlyOwner public { closeBuy = isClosedBuy; // Update the state of buy operations. closeSell = isClosedSell; // Update the state of sell operations. } /// @notice Deposits Ether to the contract function deposit() payable public returns(bool success) { require((this.balance + msg.value) > this.balance); // Checks for overflows. LogDeposit(msg.sender, msg.value); // Notifies the blockchain about the Ether received. return true; } /// @notice The owner withdraws Ether from the contract. /// @param amountInWeis Amount of ETH in WEI which will be withdrawed. function withdraw(uint amountInWeis) onlyOwner public { LogWithdrawal(msg.sender, amountInWeis); // Notifies the blockchain about the withdrawal. owner.transfer(amountInWeis); // Sends the Ether to owner address. } /// @notice Buy tokens from contract by sending Ether. function buy() public payable { require(!closeBuy); //Buy operations must be opened uint amount = msg.value / buyPrice; //Calculates the amount of tokens to be sent uint market_value = amount * buyPrice; //Market value for this amount uint commission = market_value * 1 / 100; //Calculates the commission for this transaction require(this.balance >= commission); //The token smart-contract pays commission, else the operation is not possible. commissionGetter.transfer(commission); //Transfers commission to the commissionGetter. _transfer(this, msg.sender, amount); //Makes the transfer of tokens. } /// @notice Sell `amount` tokens to the contract. /// @param amount amount of tokens to be sold. function sell(uint256 amount) public { require(!closeSell); //Sell operations must be opened uint market_value = amount * sellPrice; //Market value for this amount uint commission = market_value * 1 / 100; //Calculates the commission for this transaction uint amount_weis = market_value + commission; //Total in weis that must be paid require(this.balance >= amount_weis); //Contract must have enough weis commissionGetter.transfer(commission); //Transfers commission to the commissionGetter _transfer(msg.sender, this, amount); //Makes the transfer of tokens, the contract receives the tokens. msg.sender.transfer(market_value); //Sends Ether to the seller. } /// Default function, sender buys tokens by sending ether to the contract function () public payable { buy(); } }
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,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amountInWeis","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"commissionGetter","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"refillTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"isClosedBuy","type":"bool"},{"name":"isClosedSell","type":"bool"}],"name":"setStatus","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"closeSell","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"closeBuy","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"deposit","outputs":[{"name":"success","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"decimalUnits","type":"uint8"},{"name":"tokenSymbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"sender","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"LogDeposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"receiver","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"LogWithdrawal","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"}]
Contract Creation Code
60606040526001600781905560085560098054600160b060020a03191675cd8bf69ad65c5158f0cfaa599bbf90d7f4b52bb00000179055341561004157600080fd5b604051610e10380380610e1083398101604052808051919060200180518201919060200180519190602001805160008054600160a060020a033316600160a060020a0319909116811782558152600560205260409020869055600486905590910190508383838360018380516100bb9291602001906100f1565b5060028180516100cf9291602001906100f1565b50506003805460ff191660ff929092169190911790555061018c945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061013257805160ff191683800117855561015f565b8280016001018555821561015f579182015b8281111561015f578251825591602001919060010190610144565b5061016b92915061016f565b5090565b61018991905b8082111561016b5760008155600101610175565b90565b610c758061019b6000396000f3006060604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305fefda7811461015257806306fdde031461016b578063095ea7b3146101f557806318160ddd1461022b57806323b872dd146102505780632e1a7d4d14610278578063313ce5671461028e5780633651b401146102b75780634b750334146102e657806370a08231146102f95780637ef5b6ea146103185780638620410b1461032e5780638da5cb5b1461034157806395d89b4114610354578063a6f2ae3a14610148578063a9059cbb14610367578063b3c2eac114610389578063b414d4b6146103a6578063ba83c970146103c5578063c6ab5cdc146103d8578063d0e30db0146103eb578063dd62ed3e146103f3578063e4849b3214610418578063e724529c1461042e578063f2fde38b14610452575b610150610471565b005b341561015d57600080fd5b610150600435602435610507565b341561017657600080fd5b61017e61052d565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101ba5780820151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020057600080fd5b610217600160a060020a03600435166024356105cb565b604051901515815260200160405180910390f35b341561023657600080fd5b61023e6105fb565b60405190815260200160405180910390f35b341561025b57600080fd5b610217600160a060020a0360043581169060243516604435610601565b341561028357600080fd5b6101506004356106da565b341561029957600080fd5b6102a161076f565b60405160ff909116815260200160405180910390f35b34156102c257600080fd5b6102ca610778565b604051600160a060020a03909116815260200160405180910390f35b34156102f157600080fd5b61023e61078d565b341561030457600080fd5b61023e600160a060020a0360043516610793565b341561032357600080fd5b6101506004356107a5565b341561033957600080fd5b61023e6107cb565b341561034c57600080fd5b6102ca6107d1565b341561035f57600080fd5b61017e6107e0565b341561037257600080fd5b610150600160a060020a036004351660243561084b565b341561039457600080fd5b610150600435151560243515156108b6565b34156103b157600080fd5b610217600160a060020a03600435166108f4565b34156103d057600080fd5b610217610909565b34156103e357600080fd5b610217610917565b610217610920565b34156103fe57600080fd5b61023e600160a060020a0360043581169060243516610986565b341561042357600080fd5b6101506004356109a3565b341561043957600080fd5b610150600160a060020a03600435166024351515610a5c565b341561045d57600080fd5b610150600160a060020a0360043516610ae8565b6009546000908190819060ff161561048857600080fd5b6008543481151561049557fe5b600854919004935083029150506064810430600160a060020a031631819010156104be57600080fd5b600954620100009004600160a060020a03166108fc82150282604051600060405180830381858888f1935050505015156104f757600080fd5b610502303385610b32565b505050565b60005433600160a060020a0390811691161461052257600080fd5b600791909155600855565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105c35780601f10610598576101008083540402835291602001916105c3565b820191906000526020600020905b8154815290600101906020018083116105a657829003601f168201915b505050505081565b600160a060020a033381166000908152600660209081526040808320938616835292905220819055600192915050565b60045481565b600160a060020a038084166000908152600660209081526040808320339094168352929052908120548190819084111561063a57600080fd5b505060075482026064810430600160a060020a0316318190101561065d57600080fd5b600954620100009004600160a060020a03166108fc82150282604051600060405180830381858888f19350505050151561069657600080fd5b600160a060020a03808716600090815260066020908152604080832033909416835292905220805485900390556106ce868686610b32565b50600195945050505050565b60005433600160a060020a039081169116146106f557600080fd5b7fb4214c8c54fc7442f36d3682f59aebaf09358a4431835b30efb29d52cf9e1e913382604051600160a060020a03909216825260208201526040908101905180910390a1600054600160a060020a031681156108fc0282604051600060405180830381858888f19350505050151561076c57600080fd5b50565b60035460ff1681565b600954620100009004600160a060020a031681565b60075481565b60056020526000908152604090205481565b60005433600160a060020a039081169116146107c057600080fd5b61076c333083610b32565b60085481565b600054600160a060020a031681565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105c35780601f10610598576101008083540402835291602001916105c3565b60075481026064810430600160a060020a0316318190101561086c57600080fd5b600954620100009004600160a060020a03166108fc82150282604051600060405180830381858888f1935050505015156108a557600080fd5b6108b0338585610b32565b50505050565b60005433600160a060020a039081169116146108d157600080fd5b6009805460ff19169215159290921761ff00191661010091151591909102179055565b600a6020526000908152604090205460ff1681565b600954610100900460ff1681565b60095460ff1681565b6000600160a060020a0330168031903134011161093c57600080fd5b7f1b851e1031ef35a238e6c67d0c7991162390df915f70eaf9098dbf0b175a61983334604051600160a060020a03909216825260208201526040908101905180910390a150600190565b600660209081526000928352604080842090915290825290205481565b60095460009081908190610100900460ff16156109bf57600080fd5b5050600754820290506064810480820130600160a060020a031631819010156109e757600080fd5b600954620100009004600160a060020a03166108fc83150283604051600060405180830381858888f193505050501515610a2057600080fd5b610a2b333086610b32565b600160a060020a03331683156108fc0284604051600060405180830381858888f1935050505015156108b057600080fd5b60005433600160a060020a03908116911614610a7757600080fd5b600160a060020a0382166000908152600a602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15050565b60005433600160a060020a03908116911614610b0357600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0382161515610b4757600080fd5b600160a060020a03831660009081526005602052604090205481901015610b6d57600080fd5b600160a060020a03821660009081526005602052604090205481810111610b9357600080fd5b600160a060020a0383166000908152600a602052604090205460ff1615610bb957600080fd5b600160a060020a0382166000908152600a602052604090205460ff1615610bdf57600080fd5b600160a060020a038084166000818152600560205260408082208054869003905592851680825290839020805485019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35050505600a165627a7a72305820c5f48c057dd2e624a08ecc20503f7adfd8642c0d3bbdb0b1291420b4bcfe755300290000000000000000000000000000000000000000000000000000000002faf0800000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000002b47464320652d61756374696f6e20706c6174666f726d20666f7220416772692d636f6d6d6f64697469657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034746430000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6060604052600436106101485763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305fefda7811461015257806306fdde031461016b578063095ea7b3146101f557806318160ddd1461022b57806323b872dd146102505780632e1a7d4d14610278578063313ce5671461028e5780633651b401146102b75780634b750334146102e657806370a08231146102f95780637ef5b6ea146103185780638620410b1461032e5780638da5cb5b1461034157806395d89b4114610354578063a6f2ae3a14610148578063a9059cbb14610367578063b3c2eac114610389578063b414d4b6146103a6578063ba83c970146103c5578063c6ab5cdc146103d8578063d0e30db0146103eb578063dd62ed3e146103f3578063e4849b3214610418578063e724529c1461042e578063f2fde38b14610452575b610150610471565b005b341561015d57600080fd5b610150600435602435610507565b341561017657600080fd5b61017e61052d565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101ba5780820151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020057600080fd5b610217600160a060020a03600435166024356105cb565b604051901515815260200160405180910390f35b341561023657600080fd5b61023e6105fb565b60405190815260200160405180910390f35b341561025b57600080fd5b610217600160a060020a0360043581169060243516604435610601565b341561028357600080fd5b6101506004356106da565b341561029957600080fd5b6102a161076f565b60405160ff909116815260200160405180910390f35b34156102c257600080fd5b6102ca610778565b604051600160a060020a03909116815260200160405180910390f35b34156102f157600080fd5b61023e61078d565b341561030457600080fd5b61023e600160a060020a0360043516610793565b341561032357600080fd5b6101506004356107a5565b341561033957600080fd5b61023e6107cb565b341561034c57600080fd5b6102ca6107d1565b341561035f57600080fd5b61017e6107e0565b341561037257600080fd5b610150600160a060020a036004351660243561084b565b341561039457600080fd5b610150600435151560243515156108b6565b34156103b157600080fd5b610217600160a060020a03600435166108f4565b34156103d057600080fd5b610217610909565b34156103e357600080fd5b610217610917565b610217610920565b34156103fe57600080fd5b61023e600160a060020a0360043581169060243516610986565b341561042357600080fd5b6101506004356109a3565b341561043957600080fd5b610150600160a060020a03600435166024351515610a5c565b341561045d57600080fd5b610150600160a060020a0360043516610ae8565b6009546000908190819060ff161561048857600080fd5b6008543481151561049557fe5b600854919004935083029150506064810430600160a060020a031631819010156104be57600080fd5b600954620100009004600160a060020a03166108fc82150282604051600060405180830381858888f1935050505015156104f757600080fd5b610502303385610b32565b505050565b60005433600160a060020a0390811691161461052257600080fd5b600791909155600855565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105c35780601f10610598576101008083540402835291602001916105c3565b820191906000526020600020905b8154815290600101906020018083116105a657829003601f168201915b505050505081565b600160a060020a033381166000908152600660209081526040808320938616835292905220819055600192915050565b60045481565b600160a060020a038084166000908152600660209081526040808320339094168352929052908120548190819084111561063a57600080fd5b505060075482026064810430600160a060020a0316318190101561065d57600080fd5b600954620100009004600160a060020a03166108fc82150282604051600060405180830381858888f19350505050151561069657600080fd5b600160a060020a03808716600090815260066020908152604080832033909416835292905220805485900390556106ce868686610b32565b50600195945050505050565b60005433600160a060020a039081169116146106f557600080fd5b7fb4214c8c54fc7442f36d3682f59aebaf09358a4431835b30efb29d52cf9e1e913382604051600160a060020a03909216825260208201526040908101905180910390a1600054600160a060020a031681156108fc0282604051600060405180830381858888f19350505050151561076c57600080fd5b50565b60035460ff1681565b600954620100009004600160a060020a031681565b60075481565b60056020526000908152604090205481565b60005433600160a060020a039081169116146107c057600080fd5b61076c333083610b32565b60085481565b600054600160a060020a031681565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105c35780601f10610598576101008083540402835291602001916105c3565b60075481026064810430600160a060020a0316318190101561086c57600080fd5b600954620100009004600160a060020a03166108fc82150282604051600060405180830381858888f1935050505015156108a557600080fd5b6108b0338585610b32565b50505050565b60005433600160a060020a039081169116146108d157600080fd5b6009805460ff19169215159290921761ff00191661010091151591909102179055565b600a6020526000908152604090205460ff1681565b600954610100900460ff1681565b60095460ff1681565b6000600160a060020a0330168031903134011161093c57600080fd5b7f1b851e1031ef35a238e6c67d0c7991162390df915f70eaf9098dbf0b175a61983334604051600160a060020a03909216825260208201526040908101905180910390a150600190565b600660209081526000928352604080842090915290825290205481565b60095460009081908190610100900460ff16156109bf57600080fd5b5050600754820290506064810480820130600160a060020a031631819010156109e757600080fd5b600954620100009004600160a060020a03166108fc83150283604051600060405180830381858888f193505050501515610a2057600080fd5b610a2b333086610b32565b600160a060020a03331683156108fc0284604051600060405180830381858888f1935050505015156108b057600080fd5b60005433600160a060020a03908116911614610a7757600080fd5b600160a060020a0382166000908152600a602052604090819020805460ff19168315151790557f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a5908390839051600160a060020a039092168252151560208201526040908101905180910390a15050565b60005433600160a060020a03908116911614610b0357600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a0382161515610b4757600080fd5b600160a060020a03831660009081526005602052604090205481901015610b6d57600080fd5b600160a060020a03821660009081526005602052604090205481810111610b9357600080fd5b600160a060020a0383166000908152600a602052604090205460ff1615610bb957600080fd5b600160a060020a0382166000908152600a602052604090205460ff1615610bdf57600080fd5b600160a060020a038084166000818152600560205260408082208054869003905592851680825290839020805485019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35050505600a165627a7a72305820c5f48c057dd2e624a08ecc20503f7adfd8642c0d3bbdb0b1291420b4bcfe75530029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000002faf0800000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000002b47464320652d61756374696f6e20706c6174666f726d20666f7220416772692d636f6d6d6f64697469657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034746430000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 50000000
Arg [1] : tokenName (string): GFC e-auction platform for Agri-commodities
Arg [2] : decimalUnits (uint8): 0
Arg [3] : tokenSymbol (string): GFC
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000002faf080
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [4] : 000000000000000000000000000000000000000000000000000000000000002b
Arg [5] : 47464320652d61756374696f6e20706c6174666f726d20666f7220416772692d
Arg [6] : 636f6d6d6f646974696573000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 4746430000000000000000000000000000000000000000000000000000000000
Swarm Source
bzzr://c5f48c057dd2e624a08ecc20503f7adfd8642c0d3bbdb0b1291420b4bcfe7553
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.