Source Code
Showing the last 25 transactions (View Advanced Filter)
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 6234841 | 2767 days ago | IN | 1 ETH | 0.0002088 | ||||
| Transfer | 6234579 | 2767 days ago | IN | 1.34083506 ETH | 0.00023289 | ||||
| Transfer | 6233346 | 2767 days ago | IN | 2 ETH | 0.00024092 | ||||
| Transfer | 6229602 | 2768 days ago | IN | 1.9 ETH | 0.00088338 | ||||
| Transfer | 6229513 | 2768 days ago | IN | 1.02328149 ETH | 0.0001847 | ||||
| Transfer | 6229475 | 2768 days ago | IN | 3 ETH | 0.00080308 | ||||
| Transfer | 6229370 | 2768 days ago | IN | 1.04929815 ETH | 0.00024092 | ||||
| Transfer | 6228979 | 2768 days ago | IN | 1.35 ETH | 0.00032123 | ||||
| Transfer | 6228814 | 2768 days ago | IN | 1.48986644 ETH | 0.00040154 | ||||
| Transfer | 6228780 | 2768 days ago | IN | 1.08 ETH | 0.00024092 | ||||
| Transfer | 6228625 | 2768 days ago | IN | 2.59253259 ETH | 0.00425632 | ||||
| Transfer | 6228622 | 2768 days ago | IN | 2.6 ETH | 0.00024092 | ||||
| Transfer | 6228408 | 2768 days ago | IN | 4.8 ETH | 0.00329262 | ||||
| Transfer | 6228229 | 2768 days ago | IN | 12.25 ETH | 0.00056215 | ||||
| Transfer | 6228015 | 2768 days ago | IN | 6.878 ETH | 0.00043366 | ||||
| Transfer | 6227974 | 2768 days ago | IN | 2.09133137 ETH | 0.00329262 | ||||
| 0xabd1ead4 | 6227905 | 2768 days ago | IN | 1 ETH | 0.00024543 | ||||
| Transfer | 6227887 | 2768 days ago | IN | 3.01841797 ETH | 0.00024092 | ||||
| Transfer | 6227821 | 2768 days ago | IN | 7.03 ETH | 0.00329262 | ||||
| 0xabd1ead4 | 6227656 | 2768 days ago | IN | 39.70182274 ETH | 0.00204527 | ||||
| Transfer | 6227610 | 2768 days ago | IN | 2.02413675 ETH | 0.00024895 | ||||
| Transfer | 6227532 | 2768 days ago | IN | 2.285 ETH | 0.00032123 | ||||
| Transfer | 6227522 | 2768 days ago | IN | 1.5 ETH | 0.00024092 | ||||
| Transfer | 6227479 | 2768 days ago | IN | 1.6 ETH | 0.00024092 | ||||
| Transfer | 6226199 | 2768 days ago | IN | 1.5 ETH | 0.00015258 |
Showing the last 25 internal transactions (View Advanced Filter)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| - | 11328680 | 1948 days ago | 1.34676144 ETH | ||||
| - | 11328680 | 1948 days ago | 1.19105468 ETH | ||||
| - | 11325627 | 1948 days ago | 1.34676144 ETH | ||||
| - | 11325627 | 1948 days ago | 1.19105468 ETH | ||||
| - | 11323096 | 1948 days ago | 1.34676144 ETH | ||||
| - | 11323096 | 1948 days ago | 1.19105468 ETH | ||||
| - | 11323037 | 1948 days ago | 1.34676144 ETH | ||||
| - | 11323037 | 1948 days ago | 1.19105468 ETH | ||||
| - | 11322868 | 1948 days ago | 1.34676144 ETH | ||||
| - | 11322868 | 1948 days ago | 1.19105468 ETH | ||||
| - | 11322843 | 1948 days ago | 1.34676144 ETH | ||||
| - | 11322843 | 1948 days ago | 1.19105468 ETH | ||||
| - | 11322819 | 1948 days ago | 1.34676144 ETH | ||||
| - | 11322819 | 1948 days ago | 1.19105468 ETH | ||||
| - | 11322777 | 1948 days ago | 1.34676144 ETH | ||||
| - | 11322777 | 1948 days ago | 1.19105468 ETH | ||||
| - | 11317575 | 1949 days ago | 1.34676144 ETH | ||||
| - | 11317575 | 1949 days ago | 1.19105468 ETH | ||||
| - | 11316471 | 1949 days ago | 1.34676144 ETH | ||||
| - | 11316471 | 1949 days ago | 1.19105468 ETH | ||||
| - | 11316299 | 1949 days ago | 1.34676144 ETH | ||||
| - | 11316299 | 1949 days ago | 1.19105468 ETH | ||||
| - | 11311699 | 1950 days ago | 1.34676144 ETH | ||||
| - | 11311699 | 1950 days ago | 1.19105468 ETH | ||||
| - | 11311114 | 1950 days ago | 1.34676144 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Pandemica
Compiler Version
v0.2.1+commit.91a6b35
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2018-08-11
*/
contract Pandemica
{
struct _Tx {
address txuser;
uint txvalue;
}
_Tx[] public Tx;
uint public counter;
address owner;
modifier onlyowner
{
if (msg.sender == owner)
_
}
function Pandemica() {
owner = msg.sender;
}
function() {
Sort();
if (msg.sender == owner )
{
Count();
}
}
function Sort() internal
{
uint feecounter;
feecounter+=msg.value/5;
owner.send(feecounter);
feecounter=0;
uint txcounter=Tx.length;
counter=Tx.length;
Tx.length++;
Tx[txcounter].txuser=msg.sender;
Tx[txcounter].txvalue=msg.value;
}
function Count() onlyowner {
while (counter>0) {
Tx[counter].txuser.send((Tx[counter].txvalue/100)*3);
counter-=1;
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"Tx","outputs":[{"name":"txuser","type":"address"},{"name":"txvalue","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"counter","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"Count","outputs":[],"type":"function"},{"inputs":[],"type":"constructor"}]Contract Creation Code
606060405260028054600160a060020a03191633179055610317806100246000396000f3606060405236156100355760e060020a60003504633327d22f81146100d357806361bc221a1461014657806393a8333e1461014f575b6102216102236002546040516005340491600091600160a060020a03909116908290849082818181858883f1505081546001818155810180845592955093508392508491905082801582901161027c5760020281600202836000526020600020918201910161027c91905b8082111561031357805473ffffffffffffffffffffffffffffffffffffffff1916815560006001919091019081556100a0565b610244600435600080548290811015610002575080526002027f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5638101547f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5649190910154600160a060020a03919091169082565b61026a60015481565b6102215b60025433600160a060020a0390811691161415610242575b600154600090111561024257600154600080549091908110156100025781805260015482546002929092027f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5630154600160a060020a031692916064918391811015610002576040516002919091027f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5640154929092046003029190818181858883f15050600180546000190190555061016b915050565b005b60025433600160a060020a039081169116141561024257610242610153565b565b6040518083600160a060020a031681526020018281526020019250505060405180910390f35b60408051918252519081900360200190f35b50505050336000600050828154811015610002578180526002027f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56301805473ffffffffffffffffffffffffffffffffffffffff191690921790915580543491908390811015610002576002027f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5640191909155505050565b509056
Deployed Bytecode
0x606060405236156100355760e060020a60003504633327d22f81146100d357806361bc221a1461014657806393a8333e1461014f575b6102216102236002546040516005340491600091600160a060020a03909116908290849082818181858883f1505081546001818155810180845592955093508392508491905082801582901161027c5760020281600202836000526020600020918201910161027c91905b8082111561031357805473ffffffffffffffffffffffffffffffffffffffff1916815560006001919091019081556100a0565b610244600435600080548290811015610002575080526002027f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5638101547f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5649190910154600160a060020a03919091169082565b61026a60015481565b6102215b60025433600160a060020a0390811691161415610242575b600154600090111561024257600154600080549091908110156100025781805260015482546002929092027f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5630154600160a060020a031692916064918391811015610002576040516002919091027f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5640154929092046003029190818181858883f15050600180546000190190555061016b915050565b005b60025433600160a060020a039081169116141561024257610242610153565b565b6040518083600160a060020a031681526020018281526020019250505060405180910390f35b60408051918252519081900360200190f35b50505050336000600050828154811015610002578180526002027f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56301805473ffffffffffffffffffffffffffffffffffffffff191690921790915580543491908390811015610002576002027f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e5640191909155505050565b509056
Loading...
Loading
Loading...
Loading
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.