Overview
ETH Balance
0.009 ETH
Eth Value
$25.03 (@ $2,781.35/ETH)More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 7243422 | 2177 days ago | IN | 0 ETH | 0.00056133 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
7243422 | 2177 days ago | 0.001 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x7d48682F...190ff95e6 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
e2pAirEscrow
Compiler Version
v0.4.25+commit.59dbf8f1
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-11-17 */ /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) internal constant 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 constant returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal constant returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } /** * @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) constant returns (uint256); function transfer(address to, uint256 value) 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) constant returns (uint256); function transferFrom(address from, address to, uint256 value) returns (bool); function approve(address spender, uint256 value) returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @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) 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) constant returns (uint256 balance) { return balances[_owner]; } } /* * Ownable * * Base contract with an owner. * Provides onlyOwner modifier, which prevents function from running if it is called by anyone other than the owner. */ contract Ownable { address public owner; constructor() public { owner = msg.sender; } modifier onlyOwner() { require(msg.sender == owner); _; } } /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() public onlyOwner whenNotPaused { paused = true; emit Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() public onlyOwner whenPaused { paused = false; emit Unpause(); } } /** * @title Stoppable * @dev Base contract which allows children to implement final irreversible stop mechanism. */ contract Stoppable is Pausable { event Stop(); bool public stopped = false; /** * @dev Modifier to make a function callable only when the contract is not stopped. */ modifier whenNotStopped() { require(!stopped); _; } /** * @dev Modifier to make a function callable only when the contract is stopped. */ modifier whenStopped() { require(stopped); _; } /** * @dev called by the owner to pause, triggers stopped state */ function stop() public onlyOwner whenNotStopped { stopped = true; emit Stop(); } } /** * @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) 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) 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 avaible for the spender. */ function allowance(address _owner, address _spender) constant returns (uint256 remaining) { return allowed[_owner][_spender]; } } /** * @title e2pAir Escrow Contract * @dev Contract sends tokens from airdropper's account to receiver on claim. * * When deploying contract, airdroper provides airdrop parametrs: token, amount * of tokens and amount of eth should be claimed per link and airdrop transit * address and deposits ether needed for the airdrop. * * Airdrop transit address is used to verify that links are signed by airdropper. * * Airdropper generates claim links. Each link contains a private key * signed by the airdrop transit private key. The link private key can be used * once to sign receiver's address. Receiver provides signature * to the Relayer Server, which calls smart contract to withdraw tokens. * * On claim smart contract verifies, that receiver provided address signed * by a link private key. * If everything is correct smart contract sends tokens and ether to receiver. * * Anytime airdropper can get back unclaimed ether using getEtherBack method. * */ contract e2pAirEscrow is Stoppable { address public TOKEN_ADDRESS; // token to distribute uint public CLAIM_AMOUNT; // tokens claimed per link uint public REFERRAL_AMOUNT; // referral reward uint public CLAIM_AMOUNT_ETH; // ether claimed per link address public AIRDROPPER; // airdropper address, which has tokens to distribute address public AIRDROP_TRANSIT_ADDRESS; // special address, used on claim to verify // that links signed by the airdropper // Mappings of transit address => true if link is used. mapping (address => bool) usedTransitAddresses; // withdraw event event LogWithdraw( address transitAddress, // link ID address receiver, uint timestamp ); /** * @dev Contructor that sets airdrop params and receives ether needed for the * airdrop. * @param _tokenAddress address Token address to distribute * @param _claimAmount uint tokens (in atomic values) claimed per link * @param _claimAmountEth uint ether (in wei) claimed per link * @param _airdropTransitAddress special address, used on claim to verify that links signed by airdropper */ constructor(address _tokenAddress, uint _claimAmount, uint _referralAmount, uint _claimAmountEth, address _airdropTransitAddress) public payable { AIRDROPPER = msg.sender; TOKEN_ADDRESS = _tokenAddress; CLAIM_AMOUNT = _claimAmount; REFERRAL_AMOUNT = _referralAmount; CLAIM_AMOUNT_ETH = _claimAmountEth; AIRDROP_TRANSIT_ADDRESS = _airdropTransitAddress; } /** * @dev Verify that address is signed with needed private key. * @param _transitAddress transit address assigned to transfer * @param _addressSigned address Signed address. * @param _v ECDSA signature parameter v. * @param _r ECDSA signature parameters r. * @param _s ECDSA signature parameters s. * @return True if signature is correct. */ function verifyLinkPrivateKey( address _transitAddress, address _addressSigned, address _referralAddress, uint8 _v, bytes32 _r, bytes32 _s) public pure returns(bool success) { bytes32 prefixedHash = keccak256("\x19Ethereum Signed Message:\n32", _addressSigned, _referralAddress); address retAddr = ecrecover(prefixedHash, _v, _r, _s); return retAddr == _transitAddress; } /** * @dev Verify that address is signed with needed private key. * @param _transitAddress transit address assigned to transfer * @param _addressSigned address Signed address. * @param _v ECDSA signature parameter v. * @param _r ECDSA signature parameters r. * @param _s ECDSA signature parameters s. * @return True if signature is correct. */ function verifyReceiverAddress( address _transitAddress, address _addressSigned, uint8 _v, bytes32 _r, bytes32 _s) public pure returns(bool success) { bytes32 prefixedHash = keccak256("\x19Ethereum Signed Message:\n32", _addressSigned); address retAddr = ecrecover(prefixedHash, _v, _r, _s); return retAddr == _transitAddress; } /** * @dev Verify that claim params are correct and the link key wasn't used before. * @param _recipient address to receive tokens. * @param _transitAddress transit address provided by the airdropper * @param _keyV ECDSA signature parameter v. Signed by the airdrop transit key. * @param _keyR ECDSA signature parameters r. Signed by the airdrop transit key. * @param _keyS ECDSA signature parameters s. Signed by the airdrop transit key. * @param _recipientV ECDSA signature parameter v. Signed by the link key. * @param _recipientR ECDSA signature parameters r. Signed by the link key. * @param _recipientS ECDSA signature parameters s. Signed by the link key. * @return True if claim params are correct. */ function checkWithdrawal( address _recipient, address _referralAddress, address _transitAddress, uint8 _keyV, bytes32 _keyR, bytes32 _keyS, uint8 _recipientV, bytes32 _recipientR, bytes32 _recipientS) public view returns(bool success) { // verify that link wasn't used before require(usedTransitAddresses[_transitAddress] == false); // verifying that key is legit and signed by AIRDROP_TRANSIT_ADDRESS's key require(verifyLinkPrivateKey(AIRDROP_TRANSIT_ADDRESS, _transitAddress, _referralAddress, _keyV, _keyR, _keyS)); // verifying that recepients address signed correctly require(verifyReceiverAddress(_transitAddress, _recipient, _recipientV, _recipientR, _recipientS)); // verifying that there is enough ether to make transfer require(address(this).balance >= CLAIM_AMOUNT_ETH); return true; } /** * @dev Withdraw tokens to receiver address if withdraw params are correct. * @param _recipient address to receive tokens. * @param _transitAddress transit address provided to receiver by the airdropper * @param _keyV ECDSA signature parameter v. Signed by the airdrop transit key. * @param _keyR ECDSA signature parameters r. Signed by the airdrop transit key. * @param _keyS ECDSA signature parameters s. Signed by the airdrop transit key. * @param _recipientV ECDSA signature parameter v. Signed by the link key. * @param _recipientR ECDSA signature parameters r. Signed by the link key. * @param _recipientS ECDSA signature parameters s. Signed by the link key. * @return True if tokens (and ether) were successfully sent to receiver. */ function withdraw( address _recipient, address _referralAddress, address _transitAddress, uint8 _keyV, bytes32 _keyR, bytes32 _keyS, uint8 _recipientV, bytes32 _recipientR, bytes32 _recipientS ) public whenNotPaused whenNotStopped returns (bool success) { require(checkWithdrawal(_recipient, _referralAddress, _transitAddress, _keyV, _keyR, _keyS, _recipientV, _recipientR, _recipientS)); // save to state that address was used usedTransitAddresses[_transitAddress] = true; // send tokens if (CLAIM_AMOUNT > 0 && TOKEN_ADDRESS != 0x0000000000000000000000000000000000000000) { StandardToken token = StandardToken(TOKEN_ADDRESS); token.transferFrom(AIRDROPPER, _recipient, CLAIM_AMOUNT); } // send tokens to the address who refferred the airdrop if (REFERRAL_AMOUNT > 0 && _referralAddress != 0x0000000000000000000000000000000000000000) { token.transferFrom(AIRDROPPER, _referralAddress, REFERRAL_AMOUNT); } // send ether (if needed) if (CLAIM_AMOUNT_ETH > 0) { _recipient.transfer(CLAIM_AMOUNT_ETH); } // Log Withdrawal emit LogWithdraw(_transitAddress, _recipient, now); return true; } /** * @dev Get boolean if link is already claimed. * @param _transitAddress transit address provided to receiver by the airdropper * @return True if the transit address was already used. */ function isLinkClaimed(address _transitAddress) public view returns (bool claimed) { return usedTransitAddresses[_transitAddress]; } /** * @dev Withdraw ether back deposited to the smart contract. * @return True if ether was withdrawn. */ function getEtherBack() public returns (bool success) { require(msg.sender == AIRDROPPER); AIRDROPPER.transfer(address(this).balance); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[],"name":"stop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_ADDRESS","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_transitAddress","type":"address"},{"name":"_addressSigned","type":"address"},{"name":"_referralAddress","type":"address"},{"name":"_v","type":"uint8"},{"name":"_r","type":"bytes32"},{"name":"_s","type":"bytes32"}],"name":"verifyLinkPrivateKey","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"CLAIM_AMOUNT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"AIRDROPPER","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_recipient","type":"address"},{"name":"_referralAddress","type":"address"},{"name":"_transitAddress","type":"address"},{"name":"_keyV","type":"uint8"},{"name":"_keyR","type":"bytes32"},{"name":"_keyS","type":"bytes32"},{"name":"_recipientV","type":"uint8"},{"name":"_recipientR","type":"bytes32"},{"name":"_recipientS","type":"bytes32"}],"name":"withdraw","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"REFERRAL_AMOUNT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stopped","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"AIRDROP_TRANSIT_ADDRESS","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_transitAddress","type":"address"}],"name":"isLinkClaimed","outputs":[{"name":"claimed","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CLAIM_AMOUNT_ETH","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_transitAddress","type":"address"},{"name":"_addressSigned","type":"address"},{"name":"_v","type":"uint8"},{"name":"_r","type":"bytes32"},{"name":"_s","type":"bytes32"}],"name":"verifyReceiverAddress","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"name":"_recipient","type":"address"},{"name":"_referralAddress","type":"address"},{"name":"_transitAddress","type":"address"},{"name":"_keyV","type":"uint8"},{"name":"_keyR","type":"bytes32"},{"name":"_keyS","type":"bytes32"},{"name":"_recipientV","type":"uint8"},{"name":"_recipientR","type":"bytes32"},{"name":"_recipientS","type":"bytes32"}],"name":"checkWithdrawal","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"getEtherBack","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_tokenAddress","type":"address"},{"name":"_claimAmount","type":"uint256"},{"name":"_referralAmount","type":"uint256"},{"name":"_claimAmountEth","type":"uint256"},{"name":"_airdropTransitAddress","type":"address"}],"payable":true,"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"transitAddress","type":"address"},{"indexed":false,"name":"receiver","type":"address"},{"indexed":false,"name":"timestamp","type":"uint256"}],"name":"LogWithdraw","type":"event"},{"anonymous":false,"inputs":[],"name":"Stop","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"}]
Deployed Bytecode
0x6080604052600436106100fc576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806307da68f5146101015780630bdf5300146101185780630c82ed841461016f578063270ef38514610233578063368a5e341461025e5780633d8d020a146102b55780633f4ba83a146103a25780635c975abb146103b9578063611f1931146103e857806375f12b21146104135780638456cb59146104425780638da5cb5b14610459578063998ac104146104b0578063b2e357b414610507578063c90c205b14610562578063cd26ac831461058d578063df5f53f114610631578063fd68610f1461071e575b600080fd5b34801561010d57600080fd5b5061011661074d565b005b34801561012457600080fd5b5061012d61080d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561017b57600080fd5b50610219600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560ff16906020019092919080356000191690602001909291908035600019169060200190929190505050610833565b604051808215151515815260200191505060405180910390f35b34801561023f57600080fd5b506102486109b6565b6040518082815260200191505060405180910390f35b34801561026a57600080fd5b506102736109bc565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156102c157600080fd5b50610388600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560ff16906020019092919080356000191690602001909291908035600019169060200190929190803560ff169060200190929190803560001916906020019092919080356000191690602001909291905050506109e2565b604051808215151515815260200191505060405180910390f35b3480156103ae57600080fd5b506103b7610ed6565b005b3480156103c557600080fd5b506103ce610f94565b604051808215151515815260200191505060405180910390f35b3480156103f457600080fd5b506103fd610fa7565b6040518082815260200191505060405180910390f35b34801561041f57600080fd5b50610428610fad565b604051808215151515815260200191505060405180910390f35b34801561044e57600080fd5b50610457610fc0565b005b34801561046557600080fd5b5061046e611080565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156104bc57600080fd5b506104c56110a5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561051357600080fd5b50610548600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110cb565b604051808215151515815260200191505060405180910390f35b34801561056e57600080fd5b50610577611121565b6040518082815260200191505060405180910390f35b34801561059957600080fd5b50610617600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560ff16906020019092919080356000191690602001909291908035600019169060200190929190505050611127565b604051808215151515815260200191505060405180910390f35b34801561063d57600080fd5b50610704600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560ff16906020019092919080356000191690602001909291908035600019169060200190929190803560ff16906020019092919080356000191690602001909291908035600019169060200190929190505050611266565b604051808215151515815260200191505060405180910390f35b34801561072a57600080fd5b50610733611352565b604051808215151515815260200191505060405180910390f35b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156107a857600080fd5b600060159054906101000a900460ff161515156107c457600080fd5b6001600060156101000a81548160ff0219169083151502179055507fbedf0f4abfe86d4ffad593d9607fe70e83ea706033d44d24b3b6283cf3fc4f6b60405160405180910390a1565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806000878760405180807f19457468657265756d205369676e6564204d6573736167653a0a333200000000815250601c018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c010000000000000000000000000281526014018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c010000000000000000000000000281526014019250505060405180910390209150600182878787604051600081526020016040526040518085600019166000191681526020018460ff1660ff1681526020018360001916600019168152602001826000191660001916815260200194505050505060206040516020810390808403906000865af115801561096d573d6000803e3d6000fd5b5050506020604051035190508873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614925050509695505050505050565b60025481565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080600060149054906101000a900460ff16151515610a0157600080fd5b600060159054906101000a900460ff16151515610a1d57600080fd5b610a2e8b8b8b8b8b8b8b8b8b611266565b1515610a3957600080fd5b6001600760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600254118015610af25750600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b15610c5457600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166323b872dd600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168d6002546040518463ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b158015610c1757600080fd5b505af1158015610c2b573d6000803e3d6000fd5b505050506040513d6020811015610c4157600080fd5b8101908080519060200190929190505050505b6000600354118015610c935750600073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff1614155b15610dd0578073ffffffffffffffffffffffffffffffffffffffff166323b872dd600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168c6003546040518463ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b158015610d9357600080fd5b505af1158015610da7573d6000803e3d6000fd5b505050506040513d6020811015610dbd57600080fd5b8101908080519060200190929190505050505b60006004541115610e25578a73ffffffffffffffffffffffffffffffffffffffff166108fc6004549081150290604051600060405180830381858888f19350505050158015610e23573d6000803e3d6000fd5b505b7f9207361cc2a04b9c7a06691df1eb87c6a63957ae88bf01d0d18c81e3d1272099898c42604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001828152602001935050505060405180910390a160019150509998505050505050505050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515610f3157600080fd5b600060149054906101000a900460ff161515610f4c57600080fd5b60008060146101000a81548160ff0219169083151502179055507f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b600060149054906101000a900460ff1681565b60035481565b600060159054906101000a900460ff1681565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614151561101b57600080fd5b600060149054906101000a900460ff1615151561103757600080fd5b6001600060146101000a81548160ff0219169083151502179055507f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60045481565b60008060008660405180807f19457468657265756d205369676e6564204d6573736167653a0a333200000000815250601c018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166c0100000000000000000000000002815260140191505060405180910390209150600182878787604051600081526020016040526040518085600019166000191681526020018460ff1660ff1681526020018360001916600019168152602001826000191660001916815260200194505050505060206040516020810390808403906000865af115801561121e573d6000803e3d6000fd5b5050506020604051035190508773ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16149250505095945050505050565b6000801515600760008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415156112c657600080fd5b6112f6600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16898b8a8a8a610833565b151561130157600080fd5b61130e888b868686611127565b151561131957600080fd5b6004543073ffffffffffffffffffffffffffffffffffffffff16311015151561134157600080fd5b600190509998505050505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156113b057600080fd5b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f1935050505015801561142f573d6000803e3d6000fd5b5060019050905600a165627a7a72305820f0fea2675527e4efccbf62fd8de96e747c14073ee8b901064cf2c6fe7e2747430029
Swarm Source
bzzr://f0fea2675527e4efccbf62fd8de96e747c14073ee8b901064cf2c6fe7e274743
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $2,781.35 | 0.009 | $25.03 |
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.