Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 241 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Finish Pre Sale2 | 5146422 | 2555 days ago | IN | 0 ETH | 0.00075108 | ||||
Transfer | 5144841 | 2555 days ago | IN | 0.05 ETH | 0.00072309 | ||||
Transfer | 5144832 | 2555 days ago | IN | 0.085 ETH | 0.00071594 | ||||
Transfer | 5144824 | 2555 days ago | IN | 0.06 ETH | 0.00100231 | ||||
Transfer | 5144815 | 2555 days ago | IN | 0.033 ETH | 0.00286376 | ||||
Transfer | 5144809 | 2555 days ago | IN | 0.4 ETH | 0.00143188 | ||||
Transfer | 5144684 | 2555 days ago | IN | 0.1201 ETH | 0.00017544 | ||||
Transfer | 5144670 | 2555 days ago | IN | 0.3 ETH | 0.00169782 | ||||
Transfer | 5144667 | 2555 days ago | IN | 0.65 ETH | 0.00293535 | ||||
Transfer | 5144631 | 2555 days ago | IN | 0.04 ETH | 0.00214782 | ||||
Transfer | 5144565 | 2555 days ago | IN | 0.04 ETH | 0.00214782 | ||||
Transfer | 5144476 | 2555 days ago | IN | 0.3 ETH | 0.00293535 | ||||
Transfer | 5144469 | 2555 days ago | IN | 0.144 ETH | 0.0018676 | ||||
Transfer | 5144453 | 2555 days ago | IN | 0.495 ETH | 0.00493998 | ||||
Transfer | 5144425 | 2555 days ago | IN | 0.144 ETH | 0.00221941 | ||||
Transfer | 5144359 | 2555 days ago | IN | 0.99727033 ETH | 0.00150347 | ||||
Transfer | 5144352 | 2555 days ago | IN | 0.305 ETH | 0.0035797 | ||||
Transfer | 5144350 | 2555 days ago | IN | 0.2 ETH | 0.00214782 | ||||
Transfer | 5144347 | 2555 days ago | IN | 1.5 ETH | 0.0035797 | ||||
Transfer | 5144345 | 2555 days ago | IN | 0.999 ETH | 0.00062966 | ||||
Transfer | 5144239 | 2555 days ago | IN | 0.008 ETH | 0.0035797 | ||||
Transfer | 5144221 | 2555 days ago | IN | 0.036 ETH | 0.00232035 | ||||
Transfer | 5143989 | 2555 days ago | IN | 0.2 ETH | 0.00293535 | ||||
Transfer | 5143975 | 2555 days ago | IN | 0.2 ETH | 0.00150347 | ||||
Transfer | 5143970 | 2555 days ago | IN | 0.2 ETH | 0.000483 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
5146422 | 2555 days ago | 68.39566469 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
preSale2
Compiler Version
v0.4.20+commit.3155dd80
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-02-15 */ pragma solidity ^0.4.18; /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) public constant returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public constant returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public constant returns (uint256 balance) { return balances[_owner]; } } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amout of tokens to be transfered */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { var _allowance = allowed[_from][msg.sender]; // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // require (_value <= _allowance); balances[_to] = balances[_to].add(_value); balances[_from] = balances[_from].sub(_value); allowed[_from][msg.sender] = _allowance.sub(_value); Transfer(_from, _to, _value); return true; } /** * @dev Aprove the passed address to spend the specified amount of tokens on behalf of msg.sender. * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { // To change the approve amount you first have to reduce the addresses` // allowance to zero by calling `approve(_spender, 0)` if it is not // already 0 to mitigate the race condition described here: // https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 require((_value == 0) || (allowed[msg.sender][_spender] == 0)); allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifing the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) public constant returns (uint256 remaining) { return allowed[_owner][_spender]; } } /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); owner = newOwner; } } /** * @title Mintable token * @dev Simple ERC20 Token example, with mintable token creation * @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol */ contract MintableToken is StandardToken, Ownable { event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; address public saleAgent; modifier canMint() { require(!mintingFinished); _; } modifier onlySaleAgent() { require(msg.sender == saleAgent); _; } function setSaleAgent(address newSaleAgent) public onlyOwner { saleAgent = newSaleAgent; } /** * @dev Function to mint tokens * @param _to The address that will recieve the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) public onlySaleAgent canMint returns (bool) { totalSupply = totalSupply.add(_amount); balances[_to] = balances[_to].add(_amount); Mint(_to, _amount); return true; } /** * @dev Function to stop minting new tokens. * @return True if the operation was successful. */ function finishMinting() public onlySaleAgent returns (bool) { mintingFinished = true; MintFinished(); return true; } } contract AgroTechFarmToken is MintableToken { string public constant name = "Agro Tech Farm"; string public constant symbol = "ATF"; uint32 public constant decimals = 18; } contract preSale2 is Ownable { using SafeMath for uint; AgroTechFarmToken public token; bool public preSale2Finished = false; address public multisig; uint public rate; uint public tokenCap; uint public start; uint public period; uint public hardcap; address public restricted; uint public restrictedPercent; function preSale2() public { token = AgroTechFarmToken(0xa55ffAeA5c8cf32B550F663bf17d4F7b739534ff); multisig = 0x227917ac3C1F192874d43031cF4D40fd40Ae6127; rate = 83333333333000000000; tokenCap = 25000000000000000000000; start = 1518739200; period = 8; hardcap = 500000000000000000000; restricted = 0xbcCd749ecCCee5B4898d0E38D2a536fa84Ea9Ef6; restrictedPercent = 35; } modifier saleIsOn() { require(now > start && now < start + period * 1 days); _; } modifier isUnderHardCap() { require(this.balance <= hardcap); _; } function balancePreSale2() public constant returns (uint) { return this.balance; } function finishPreSale2() public onlyOwner returns (bool) { if(now > start + period * 1 days || this.balance >= hardcap) { multisig.transfer(this.balance); preSale2Finished = true; return true; } else return false; } function createTokens() public isUnderHardCap saleIsOn payable { uint tokens = rate.mul(msg.value).div(1 ether); uint bonusTokens = 0; uint totalSupply = token.totalSupply(); if (totalSupply <= tokenCap) { bonusTokens = tokens.div(2); } else bonusTokens = tokens.mul(40).div(100); tokens += bonusTokens; token.mint(msg.sender, tokens); uint restrictedTokens = tokens.mul(restrictedPercent).div(100); token.mint(restricted, restrictedTokens); } function() external payable { createTokens(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"balancePreSale2","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"restrictedPercent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"multisig","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishPreSale2","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"restricted","outputs":[{"name":"","type":"address"}],"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":"preSale2Finished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"hardcap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"createTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"start","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"period","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"}]
Contract Creation Code
60606040526000600160146101000a81548160ff021916908315150217905550341561002a57600080fd5b336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a55ffaea5c8cf32b550f663bf17d4f7b739534ff600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073227917ac3c1f192874d43031cf4d40fd40ae6127600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506804847b7925beaf120060038190555069054b40b1f852bda00000600481905550635a861f006005819055506008600681905550681b1ae4d6e2ef50000060078190555073bccd749ecccee5b4898d0e38d2a536fa84ea9ef6600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506023600981905550610b23806101c46000396000f3006060604052600436106100db576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063146ef27d146100e55780632c4e722e1461010e57806337339506146101375780634783c35b146101605780635d49c199146101b55780637072c6b1146101e25780638da5cb5b14610237578063acd590d31461028c578063b071cbe6146102b9578063b4427263146102e2578063be9a6555146102ec578063dd54291b14610315578063ef78d4fd1461033e578063f2fde38b14610367578063fc0c546a146103a0575b6100e36103f5565b005b34156100f057600080fd5b6100f86107a2565b6040518082815260200191505060405180910390f35b341561011957600080fd5b6101216107c1565b6040518082815260200191505060405180910390f35b341561014257600080fd5b61014a6107c7565b6040518082815260200191505060405180910390f35b341561016b57600080fd5b6101736107cd565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156101c057600080fd5b6101c86107f3565b604051808215151515815260200191505060405180910390f35b34156101ed57600080fd5b6101f561092b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561024257600080fd5b61024a610951565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561029757600080fd5b61029f610976565b604051808215151515815260200191505060405180910390f35b34156102c457600080fd5b6102cc610989565b6040518082815260200191505060405180910390f35b6102ea6103f5565b005b34156102f757600080fd5b6102ff61098f565b6040518082815260200191505060405180910390f35b341561032057600080fd5b610328610995565b6040518082815260200191505060405180910390f35b341561034957600080fd5b61035161099b565b6040518082815260200191505060405180910390f35b341561037257600080fd5b61039e600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919050506109a1565b005b34156103ab57600080fd5b6103b3610a7b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6000806000806007543073ffffffffffffffffffffffffffffffffffffffff16311115151561042357600080fd5b6005544211801561043e575062015180600654026005540142105b151561044957600080fd5b610478670de0b6b3a764000061046a34600354610aa190919063ffffffff16565b610adc90919063ffffffff16565b935060009250600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6000604051602001526040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b151561050c57600080fd5b6102c65a03f1151561051d57600080fd5b5050506040518051905091506004548211151561054f57610548600285610adc90919063ffffffff16565b9250610579565b6105766064610568602887610aa190919063ffffffff16565b610adc90919063ffffffff16565b92505b8284019350600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1933866000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b151561064b57600080fd5b6102c65a03f1151561065c57600080fd5b505050604051805190505061068f606461068160095487610aa190919063ffffffff16565b610adc90919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b151561078057600080fd5b6102c65a03f1151561079157600080fd5b505050604051805190505050505050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b60035481565b60095481565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561085057600080fd5b62015180600654026005540142118061088257506007543073ffffffffffffffffffffffffffffffffffffffff163110155b1561092357600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050151561090057600080fd5b60018060146101000a81548160ff02191690831515021790555060019050610928565b600090505b90565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600160149054906101000a900460ff1681565b60075481565b60055481565b60045481565b60065481565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156109fc57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515610a3857600080fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806000841415610ab65760009150610ad5565b8284029050828482811515610ac757fe5b04141515610ad157fe5b8091505b5092915050565b6000808284811515610aea57fe5b04905080915050929150505600a165627a7a723058207688a0d511aeb17a20755c03cbcdd3d1461c72fcae6236bfc8310dddebe03f1f0029
Deployed Bytecode
0x6060604052600436106100db576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063146ef27d146100e55780632c4e722e1461010e57806337339506146101375780634783c35b146101605780635d49c199146101b55780637072c6b1146101e25780638da5cb5b14610237578063acd590d31461028c578063b071cbe6146102b9578063b4427263146102e2578063be9a6555146102ec578063dd54291b14610315578063ef78d4fd1461033e578063f2fde38b14610367578063fc0c546a146103a0575b6100e36103f5565b005b34156100f057600080fd5b6100f86107a2565b6040518082815260200191505060405180910390f35b341561011957600080fd5b6101216107c1565b6040518082815260200191505060405180910390f35b341561014257600080fd5b61014a6107c7565b6040518082815260200191505060405180910390f35b341561016b57600080fd5b6101736107cd565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34156101c057600080fd5b6101c86107f3565b604051808215151515815260200191505060405180910390f35b34156101ed57600080fd5b6101f561092b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561024257600080fd5b61024a610951565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b341561029757600080fd5b61029f610976565b604051808215151515815260200191505060405180910390f35b34156102c457600080fd5b6102cc610989565b6040518082815260200191505060405180910390f35b6102ea6103f5565b005b34156102f757600080fd5b6102ff61098f565b6040518082815260200191505060405180910390f35b341561032057600080fd5b610328610995565b6040518082815260200191505060405180910390f35b341561034957600080fd5b61035161099b565b6040518082815260200191505060405180910390f35b341561037257600080fd5b61039e600480803573ffffffffffffffffffffffffffffffffffffffff169060200190919050506109a1565b005b34156103ab57600080fd5b6103b3610a7b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6000806000806007543073ffffffffffffffffffffffffffffffffffffffff16311115151561042357600080fd5b6005544211801561043e575062015180600654026005540142105b151561044957600080fd5b610478670de0b6b3a764000061046a34600354610aa190919063ffffffff16565b610adc90919063ffffffff16565b935060009250600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6000604051602001526040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b151561050c57600080fd5b6102c65a03f1151561051d57600080fd5b5050506040518051905091506004548211151561054f57610548600285610adc90919063ffffffff16565b9250610579565b6105766064610568602887610aa190919063ffffffff16565b610adc90919063ffffffff16565b92505b8284019350600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1933866000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b151561064b57600080fd5b6102c65a03f1151561065c57600080fd5b505050604051805190505061068f606461068160095487610aa190919063ffffffff16565b610adc90919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836000604051602001526040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b151561078057600080fd5b6102c65a03f1151561079157600080fd5b505050604051805190505050505050565b60003073ffffffffffffffffffffffffffffffffffffffff1631905090565b60035481565b60095481565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561085057600080fd5b62015180600654026005540142118061088257506007543073ffffffffffffffffffffffffffffffffffffffff163110155b1561092357600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050151561090057600080fd5b60018060146101000a81548160ff02191690831515021790555060019050610928565b600090505b90565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600160149054906101000a900460ff1681565b60075481565b60055481565b60045481565b60065481565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156109fc57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515610a3857600080fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806000841415610ab65760009150610ad5565b8284029050828482811515610ac757fe5b04141515610ad157fe5b8091505b5092915050565b6000808284811515610aea57fe5b04905080915050929150505600a165627a7a723058207688a0d511aeb17a20755c03cbcdd3d1461c72fcae6236bfc8310dddebe03f1f0029
Swarm Source
bzzr://7688a0d511aeb17a20755c03cbcdd3d1461c72fcae6236bfc8310dddebe03f1f
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.