More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 913 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim Tokens | 19326558 | 333 days ago | IN | 0 ETH | 0.00302912 | ||||
Multisend Token | 13919639 | 1121 days ago | IN | 0.0199 ETH | 0.19102229 | ||||
Multisend Token | 13919619 | 1121 days ago | IN | 0.01994 ETH | 0.38639494 | ||||
Multisend Token | 13919615 | 1121 days ago | IN | 0.01994 ETH | 0.35797254 | ||||
Multisend Token | 13859312 | 1130 days ago | IN | 0.01996 ETH | 0.20396565 | ||||
Multisend Token | 13853668 | 1131 days ago | IN | 0.01998 ETH | 0.25077646 | ||||
Multisend Token | 13853627 | 1131 days ago | IN | 0.02 ETH | 0.28081101 | ||||
Multisend Token | 13326162 | 1214 days ago | IN | 0.02 ETH | 0.33866719 | ||||
Multisend Token | 12858504 | 1287 days ago | IN | 0.02 ETH | 0.09811011 | ||||
Multisend Token | 12689134 | 1313 days ago | IN | 0.02 ETH | 0.14479844 | ||||
Multisend Token | 12678638 | 1315 days ago | IN | 0.02 ETH | 0.2827157 | ||||
Multisend Token | 12673493 | 1316 days ago | IN | 0.02 ETH | 0.14165213 | ||||
Multisend Token | 12673492 | 1316 days ago | IN | 0.02 ETH | 0.1427892 | ||||
Multisend Token | 12673491 | 1316 days ago | IN | 0.02 ETH | 0.14278754 | ||||
Multisend Token | 12673489 | 1316 days ago | IN | 0.02 ETH | 0.14278976 | ||||
Multisend Token | 12673489 | 1316 days ago | IN | 0.02 ETH | 0.14278782 | ||||
Multisend Token | 12673488 | 1316 days ago | IN | 0.02 ETH | 0.14278893 | ||||
Multisend Token | 12673485 | 1316 days ago | IN | 0.02 ETH | 0.14278809 | ||||
Multisend Token | 12673485 | 1316 days ago | IN | 0.02 ETH | 0.14239114 | ||||
Multisend Token | 12673482 | 1316 days ago | IN | 0.02 ETH | 0.0072999 | ||||
Multisend Token | 12048099 | 1412 days ago | IN | 19.61998 ETH | 0.14647463 | ||||
Multisend Token | 12048049 | 1412 days ago | IN | 0.42 ETH | 0.01140612 | ||||
Multisend Token | 11934867 | 1430 days ago | IN | 0.01984 ETH | 0.88730085 | ||||
Multisend Token | 11934863 | 1430 days ago | IN | 0.01984 ETH | 0.88934901 | ||||
Multisend Token | 11934862 | 1430 days ago | IN | 0.01984 ETH | 0.88935391 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
19326558 | 333 days ago | 0.65872 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH | ||||
12048099 | 1412 days ago | 0.2 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xf7325c1F...3D0be81ba The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
UpgradebleStormSender
Compiler Version
v0.4.24+commit.e67f0147
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-08-13 */ pragma solidity 0.4.24; contract EternalStorage { mapping(bytes32 => uint256) internal uintStorage; mapping(bytes32 => string) internal stringStorage; mapping(bytes32 => address) internal addressStorage; mapping(bytes32 => bytes) internal bytesStorage; mapping(bytes32 => bool) internal boolStorage; mapping(bytes32 => int256) internal intStorage; } contract UpgradeabilityOwnerStorage { address private _upgradeabilityOwner; function upgradeabilityOwner() public view returns (address) { return _upgradeabilityOwner; } function setUpgradeabilityOwner(address newUpgradeabilityOwner) internal { _upgradeabilityOwner = newUpgradeabilityOwner; } } contract UpgradeabilityStorage { string internal _version; address internal _implementation; function version() public view returns (string) { return _version; } function implementation() public view returns (address) { return _implementation; } } contract OwnedUpgradeabilityStorage is UpgradeabilityOwnerStorage, UpgradeabilityStorage, EternalStorage {} 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; } } contract Ownable is EternalStorage { event OwnershipTransferred(address previousOwner, address newOwner); modifier onlyOwner() { require(msg.sender == owner()); _; } function owner() public view returns (address) { return addressStorage[keccak256("owner")]; } function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); setOwner(newOwner); } function setOwner(address newOwner) internal { emit OwnershipTransferred(owner(), newOwner); addressStorage[keccak256("owner")] = newOwner; } } contract Claimable is EternalStorage, Ownable { function pendingOwner() public view returns (address) { return addressStorage[keccak256("pendingOwner")]; } modifier onlyPendingOwner() { require(msg.sender == pendingOwner()); _; } function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0)); addressStorage[keccak256("pendingOwner")] = newOwner; } function claimOwnership() public onlyPendingOwner { emit OwnershipTransferred(owner(), pendingOwner()); addressStorage[keccak256("owner")] = addressStorage[keccak256("pendingOwner")]; addressStorage[keccak256("pendingOwner")] = address(0); } } contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public view 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); } contract UpgradebleStormSender is OwnedUpgradeabilityStorage, Claimable { using SafeMath for uint256; event Multisended(uint256 total, address tokenAddress); event ClaimedTokens(address token, address owner, uint256 balance); modifier hasFee() { if (currentFee(msg.sender) > 0) { require(msg.value >= currentFee(msg.sender)); } _; } function() public payable {} function initialize(address _owner) public { require(!initialized()); setOwner(_owner); setArrayLimit(200); setDiscountStep(0.00002 ether); setFee(0.02 ether); boolStorage[keccak256("rs_multisender_initialized")] = true; } function initialized() public view returns (bool) { return boolStorage[keccak256("rs_multisender_initialized")]; } function txCount(address customer) public view returns(uint256) { return uintStorage[keccak256(abi.encodePacked("txCount", customer))]; } function arrayLimit() public view returns(uint256) { return uintStorage[keccak256(abi.encodePacked("arrayLimit"))]; } function setArrayLimit(uint256 _newLimit) public onlyOwner { require(_newLimit != 0); uintStorage[keccak256("arrayLimit")] = _newLimit; } function discountStep() public view returns(uint256) { return uintStorage[keccak256("discountStep")]; } function setDiscountStep(uint256 _newStep) public onlyOwner { require(_newStep != 0); uintStorage[keccak256("discountStep")] = _newStep; } function fee() public view returns(uint256) { return uintStorage[keccak256("fee")]; } function currentFee(address _customer) public view returns(uint256) { if (fee() > discountRate(msg.sender)) { return fee().sub(discountRate(_customer)); } else { return 0; } } function setFee(uint256 _newStep) public onlyOwner { require(_newStep != 0); uintStorage[keccak256("fee")] = _newStep; } function discountRate(address _customer) public view returns(uint256) { uint256 count = txCount(_customer); return count.mul(discountStep()); } function multisendToken(address token, address[] _contributors, uint256[] _balances) public hasFee payable { if (token == 0x000000000000000000000000000000000000bEEF){ multisendEther(_contributors, _balances); } else { uint256 total = 0; require(_contributors.length <= arrayLimit()); ERC20 erc20token = ERC20(token); uint8 i = 0; for (i; i < _contributors.length; i++) { erc20token.transferFrom(msg.sender, _contributors[i], _balances[i]); total += _balances[i]; } setTxCount(msg.sender, txCount(msg.sender).add(1)); emit Multisended(total, token); } } function multisendEther(address[] _contributors, uint256[] _balances) public payable { uint256 total = msg.value; uint256 userfee = currentFee(msg.sender); require(total >= userfee); require(_contributors.length <= arrayLimit()); total = total.sub(userfee); uint256 i = 0; for (i; i < _contributors.length; i++) { require(total >= _balances[i]); total = total.sub(_balances[i]); _contributors[i].transfer(_balances[i]); } setTxCount(msg.sender, txCount(msg.sender).add(1)); emit Multisended(msg.value, 0x000000000000000000000000000000000000bEEF); } function claimTokens(address _token) public onlyOwner { if (_token == 0x0) { owner().transfer(address(this).balance); return; } ERC20 erc20token = ERC20(_token); uint256 balance = erc20token.balanceOf(this); erc20token.transfer(owner(), balance); emit ClaimedTokens(_token, owner(), balance); } function setTxCount(address customer, uint256 _txCount) private { uintStorage[keccak256(abi.encodePacked("txCount", customer))] = _txCount; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"_contributors","type":"address[]"},{"name":"_balances","type":"uint256[]"}],"name":"multisendToken","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"initialized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newStep","type":"uint256"}],"name":"setDiscountStep","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claimOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_customer","type":"address"}],"name":"currentFee","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"implementation","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newStep","type":"uint256"}],"name":"setFee","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradeabilityOwner","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":false,"inputs":[{"name":"_contributors","type":"address[]"},{"name":"_balances","type":"uint256[]"}],"name":"multisendEther","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"arrayLimit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"customer","type":"address"}],"name":"txCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"fee","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"pendingOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"discountStep","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newLimit","type":"uint256"}],"name":"setArrayLimit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_customer","type":"address"}],"name":"discountRate","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"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"total","type":"uint256"},{"indexed":false,"name":"tokenAddress","type":"address"}],"name":"Multisended","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"token","type":"address"},{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"balance","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"previousOwner","type":"address"},{"indexed":false,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Deployed Bytecode
0x6080604052600436106101035763ffffffff60e060020a6000350416630b66f3f58114610105578063158ef93e146101945780632f781393146101bd5780634e71e0c8146101d557806354fd4d50146101ea578063591552da146102745780635c60da1b146102a757806369fe0e2d146102d85780636fde8202146102f05780638da5cb5b14610305578063ab883d281461031a578063b4ae641c1461039b578063c1258f69146103b0578063c4d66de8146103d1578063ddca3f43146103f2578063df8de3e714610407578063e30c397814610428578063e4e1f29b1461043d578063ee8a0a3014610452578063eff8e7481461046a578063f2fde38b1461048b575b005b604080516020600460248035828101358481028087018601909752808652610103968435600160a060020a031696369660449591949091019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506104ac9650505050505050565b3480156101a057600080fd5b506101a961067e565b604080519115158252519081900360200190f35b3480156101c957600080fd5b506101036004356106c2565b3480156101e157600080fd5b5061010361072a565b3480156101f657600080fd5b506101ff61085d565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610239578181015183820152602001610221565b50505050905090810190601f1680156102665780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028057600080fd5b50610295600160a060020a03600435166108f2565b60408051918252519081900360200190f35b3480156102b357600080fd5b506102bc61093b565b60408051600160a060020a039092168252519081900360200190f35b3480156102e457600080fd5b5061010360043561094a565b3480156102fc57600080fd5b506102bc6109b4565b34801561031157600080fd5b506102bc6109c3565b6040805160206004803580820135838102808601850190965280855261010395369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750949750610a0f9650505050505050565b3480156103a757600080fd5b50610295610b70565b3480156103bc57600080fd5b50610295600160a060020a0360043516610c25565b3480156103dd57600080fd5b50610103600160a060020a0360043516610d04565b3480156103fe57600080fd5b50610295610d93565b34801561041357600080fd5b50610103600160a060020a0360043516610dd6565b34801561043457600080fd5b506102bc610fcf565b34801561044957600080fd5b50610295611019565b34801561045e57600080fd5b5061010360043561105a565b34801561047657600080fd5b50610295600160a060020a03600435166110c2565b34801561049757600080fd5b50610103600160a060020a03600435166110ef565b6000806000806104bb336108f2565b11156104d6576104ca336108f2565b3410156104d657600080fd5b61beef600160a060020a03871614156104f8576104f38585610a0f565b610676565b60009250610504610b70565b8551111561051157600080fd5b5084905060005b84518160ff16101561060f5781600160a060020a03166323b872dd33878460ff1681518110151561054557fe5b90602001906020020151878560ff1681518110151561056057fe5b60209081029091018101516040805160e060020a63ffffffff8816028152600160a060020a03958616600482015293909416602484015260448301529151606480830193928290030181600087803b1580156105bb57600080fd5b505af11580156105cf573d6000803e3d6000fd5b505050506040513d60208110156105e557600080fd5b50508351849060ff83169081106105f857fe5b602090810290910101519290920191600101610518565b6106323361062d600161062133610c25565b9063ffffffff61118b16565b6111a5565b60408051848152600160a060020a038816602082015281517f04afd2ce457d973046bd54f5d7d36368546da08b88be1bca8ae50e32b451da17929181900390910190a15b505050505050565b604080517f72735f6d756c746973656e6465725f696e697469616c697a65640000000000008152815190819003601a01902060009081526007602052205460ff1690565b6106ca6109c3565b600160a060020a031633146106de57600080fd5b8015156106ea57600080fd5b604080517f646973636f756e745374657000000000000000000000000000000000000000008152815190819003600c019020600090815260036020522055565b610732610fcf565b600160a060020a0316331461074657600080fd5b7f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e061076f6109c3565b610777610fcf565b60408051600160a060020a03938416815291909216602082015281519081900390910190a1604080517f70656e64696e674f776e657200000000000000000000000000000000000000008082528251600c9281900383018120600090815260056020818152868320547f6f776e657200000000000000000000000000000000000000000000000000000085528751948590038301852084528282528784208054600160a060020a0390921673ffffffffffffffffffffffffffffffffffffffff199283161790559484528651938490039095019092208152925291902080549091169055565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156108e85780601f106108bd576101008083540402835291602001916108e8565b820191906000526020600020905b8154815290600101906020018083116108cb57829003601f168201915b5050505050905090565b60006108fd336110c2565b610905610d93565b11156109325761092b610917836110c2565b61091f610d93565b9063ffffffff61128416565b9050610936565b5060005b919050565b600254600160a060020a031690565b6109526109c3565b600160a060020a0316331461096657600080fd5b80151561097257600080fd5b604080517f6665650000000000000000000000000000000000000000000000000000000000815281516003918190038201902060009081526020919091522055565b600054600160a060020a031690565b604080517f6f776e6572000000000000000000000000000000000000000000000000000000815281516005918190038201902060009081526020919091522054600160a060020a031690565b34600080610a1c336108f2565b915081831015610a2b57600080fd5b610a33610b70565b85511115610a4057600080fd5b610a50838363ffffffff61128416565b9250600090505b8451811015610b1b578381815181101515610a6e57fe5b60209081029091010151831015610a8457600080fd5b610aac8482815181101515610a9557fe5b60209081029091010151849063ffffffff61128416565b92508481815181101515610abc57fe5b90602001906020020151600160a060020a03166108fc8583815181101515610ae057fe5b602090810290910101516040518115909202916000818181858888f19350505050158015610b12573d6000803e3d6000fd5b50600101610a57565b610b2d3361062d600161062133610c25565b6040805134815261beef602082015281517f04afd2ce457d973046bd54f5d7d36368546da08b88be1bca8ae50e32b451da17929181900390910190a15050505050565b60006003600060405160200180807f61727261794c696d697400000000000000000000000000000000000000000000815250600a0190506040516020818303038152906040526040518082805190602001908083835b60208310610be55780518252601f199092019160209182019101610bc6565b51815160209384036101000a6000190180199092169116179052604080519290940182900390912086528501959095529290920160002054949350505050565b6000600360008360405160200180807f7478436f756e740000000000000000000000000000000000000000000000000081525060070182600160a060020a0316600160a060020a03166c010000000000000000000000000281526014019150506040516020818303038152906040526040518082805190602001908083835b60208310610cc35780518252601f199092019160209182019101610ca4565b51815160209384036101000a600019018019909216911617905260408051929094018290039091208652850195909552929092016000205495945050505050565b610d0c61067e565b15610d1657600080fd5b610d1f81611296565b610d2960c861105a565b610d386512309ce540006106c2565b610d4866470de4df82000061094a565b50604080517f72735f6d756c746973656e6465725f696e697469616c697a65640000000000008152815190819003601a0190206000908152600760205220805460ff19166001179055565b604080517f666565000000000000000000000000000000000000000000000000000000000081528151600391819003820190206000908152602091909152205490565b600080610de16109c3565b600160a060020a03163314610df557600080fd5b600160a060020a0383161515610e4b57610e0d6109c3565b604051600160a060020a039190911690303180156108fc02916000818181858888f19350505050158015610e45573d6000803e3d6000fd5b50610fca565b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051849350600160a060020a038416916370a082319160248083019260209291908290030181600087803b158015610eaf57600080fd5b505af1158015610ec3573d6000803e3d6000fd5b505050506040513d6020811015610ed957600080fd5b50519050600160a060020a03821663a9059cbb610ef46109c3565b836040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b158015610f4757600080fd5b505af1158015610f5b573d6000803e3d6000fd5b505050506040513d6020811015610f7157600080fd5b507ff931edb47c50b4b4104c187b5814a9aef5f709e17e2ecf9617e860cacade929c905083610f9e6109c3565b60408051600160a060020a03938416815291909216602082015280820184905290519081900360600190a15b505050565b604080517f70656e64696e674f776e657200000000000000000000000000000000000000008152815190819003600c019020600090815260056020522054600160a060020a031690565b604080517f646973636f756e745374657000000000000000000000000000000000000000008152815190819003600c01902060009081526003602052205490565b6110626109c3565b600160a060020a0316331461107657600080fd5b80151561108257600080fd5b604080517f61727261794c696d6974000000000000000000000000000000000000000000008152815190819003600a019020600090815260036020522055565b6000806110ce83610c25565b90506110e86110db611019565b829063ffffffff61134d16565b9392505050565b6110f76109c3565b600160a060020a0316331461110b57600080fd5b600160a060020a038116151561112057600080fd5b604080517f70656e64696e674f776e657200000000000000000000000000000000000000008152815190819003600c01902060009081526005602052208054600160a060020a0390921673ffffffffffffffffffffffffffffffffffffffff19909216919091179055565b60008282018381101561119a57fe5b8091505b5092915050565b80600360008460405160200180807f7478436f756e740000000000000000000000000000000000000000000000000081525060070182600160a060020a0316600160a060020a03166c010000000000000000000000000281526014019150506040516020818303038152906040526040518082805190602001908083835b602083106112425780518252601f199092019160209182019101611223565b51815160209384036101000a60001901801990921691161790526040805192909401829003909120865285019590955292909201600020939093555050505050565b60008282111561129057fe5b50900390565b7f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e06112bf6109c3565b60408051600160a060020a03928316815291841660208301528051918290030190a1604080517f6f776e65720000000000000000000000000000000000000000000000000000008152815160059181900382019020600090815260209190915220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600080831515611360576000915061119e565b5082820282848281151561137057fe5b041461119a57fe00a165627a7a7230582093cc05b37c4195ec640bd506fed41494b00b1f0a2a3464f400346e38b2a5c7280029
Swarm Source
bzzr://93cc05b37c4195ec640bd506fed41494b00b1f0a2a3464f400346e38b2a5c728
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 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.