Source Code
Overview
ETH Balance
0.00009999999999999 ETH
Eth Value
$0.20 (@ $2,049.15/ETH)Latest 20 from a total of 20 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Multisend Ether | 10230922 | 2092 days ago | IN | 0.0001 ETH | 0.002222 | ||||
| Multisend Ether | 10219792 | 2093 days ago | IN | 0.0001 ETH | 0.002222 | ||||
| Multisend Ether | 10217974 | 2094 days ago | IN | 0.0001 ETH | 0.002222 | ||||
| Multisend Ether | 10214189 | 2094 days ago | IN | 0.0001 ETH | 0.002222 | ||||
| Multisend Ether | 10213423 | 2094 days ago | IN | 0.0001 ETH | 0.002222 | ||||
| Multisend Ether | 10213252 | 2094 days ago | IN | 0.0001 ETH | 0.002222 | ||||
| Multisend Ether | 10213239 | 2094 days ago | IN | 0.0001 ETH | 0.002222 | ||||
| Multisend Ether | 10213236 | 2094 days ago | IN | 0.0001 ETH | 0.002222 | ||||
| Multisend Ether | 10213003 | 2095 days ago | IN | 0.0001 ETH | 0.002222 | ||||
| Multisend Ether | 10213002 | 2095 days ago | IN | 0.0001 ETH | 0.002222 | ||||
| Multisend Ether | 10212966 | 2095 days ago | IN | 0.0001 ETH | 0.002222 | ||||
| Multisend Ether | 10212719 | 2095 days ago | IN | 0.0001 ETH | 0.002222 | ||||
| Multisend Ether | 10212493 | 2095 days ago | IN | 0.0001 ETH | 0.002222 | ||||
| Multisend Ether | 10212493 | 2095 days ago | IN | 0.0001 ETH | 0.0017776 | ||||
| Multisend Ether | 10212493 | 2095 days ago | IN | 0.0001 ETH | 0.0017776 | ||||
| Multisend Ether | 10212493 | 2095 days ago | IN | 0.0001 ETH | 0.0017776 | ||||
| Multisend Ether | 10212493 | 2095 days ago | IN | 0.0001 ETH | 0.002222 | ||||
| Multisend Ether | 10207198 | 2095 days ago | IN | 0.0001 ETH | 0.003597 | ||||
| Transfer | 10201291 | 2096 days ago | IN | 0.0001 ETH | 0.0003297 | ||||
| Multisend Ether | 10201275 | 2096 days ago | IN | 0.0001 ETH | 0.00050684 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| - | 10230922 | 2092 days ago | 0.00001 ETH | ||||
| - | 10230922 | 2092 days ago | 0.00009 ETH | ||||
| - | 10219792 | 2093 days ago | 0.00001 ETH | ||||
| - | 10219792 | 2093 days ago | 0.00009 ETH | ||||
| - | 10217974 | 2094 days ago | 0.00001 ETH | ||||
| - | 10217974 | 2094 days ago | 0.00009 ETH | ||||
| - | 10214189 | 2094 days ago | 0.00001 ETH | ||||
| - | 10214189 | 2094 days ago | 0.00009 ETH | ||||
| - | 10213423 | 2094 days ago | 0.00001 ETH | ||||
| - | 10213423 | 2094 days ago | 0.00009 ETH | ||||
| - | 10213252 | 2094 days ago | 0.00001 ETH | ||||
| - | 10213252 | 2094 days ago | 0.00009 ETH | ||||
| - | 10213239 | 2094 days ago | 0.00001 ETH | ||||
| - | 10213239 | 2094 days ago | 0.00009 ETH | ||||
| - | 10213236 | 2094 days ago | 0.00001 ETH | ||||
| - | 10213236 | 2094 days ago | 0.00009 ETH | ||||
| - | 10213003 | 2095 days ago | 0.00001 ETH | ||||
| - | 10213003 | 2095 days ago | 0.00009 ETH | ||||
| - | 10213002 | 2095 days ago | 0.00001 ETH | ||||
| - | 10213002 | 2095 days ago | 0.00009 ETH | ||||
| - | 10212966 | 2095 days ago | 0.00001 ETH | ||||
| - | 10212966 | 2095 days ago | 0.00009 ETH | ||||
| - | 10212719 | 2095 days ago | 0.00001 ETH | ||||
| - | 10212719 | 2095 days ago | 0.00009 ETH | ||||
| - | 10212493 | 2095 days ago | 0.00001 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
SSoftSolution
Compiler Version
v0.4.25+commit.59dbf8f1
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-06-04
*/
/**
*Submitted for verification at Etherscan.io on 2020-05-21
*/
pragma solidity 0.4.25;
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
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;
}
/**
* @dev Integer division of two numbers, truncating the quotient.
*/
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;
}
/**
* @dev Substracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
assert(b <= a);
return a - b;
}
/**
* @dev Adds two numbers, throws on overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
assert(c >= a);
return c;
}
}
contract SSoftSolution {
event Multisended(uint256 value , address sender);
using SafeMath for uint256;
function multisendEther(address[] _contributors, uint256[] _balances) public payable {
uint256 total = msg.value;
uint256 i = 0;
for (i; i < _contributors.length; i++) {
require(total >= _balances[i] );
total = total.sub(_balances[i]);
_contributors[i].transfer(_balances[i]);
}
emit Multisended(msg.value, msg.sender);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":false,"inputs":[{"name":"_contributors","type":"address[]"},{"name":"_balances","type":"uint256[]"}],"name":"multisendEther","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"anonymous":false,"inputs":[{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"sender","type":"address"}],"name":"Multisended","type":"event"}]Contract Creation Code
608060405234801561001057600080fd5b5061021b806100206000396000f3006080604052600436106100405763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663ab883d288114610045575b600080fd5b604080516020600480358082013583810280860185019096528085526100c695369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506100c89650505050505050565b005b3460005b835181101561019d5782818151811015156100e357fe5b602090810290910101518210156100f957600080fd5b610121838281518110151561010a57fe5b60209081029091010151839063ffffffff6101dd16565b9150838181518110151561013157fe5b9060200190602002015173ffffffffffffffffffffffffffffffffffffffff166108fc848381518110151561016257fe5b602090810290910101516040518115909202916000818181858888f19350505050158015610194573d6000803e3d6000fd5b506001016100cc565b6040805134815233602082015281517f04afd2ce457d973046bd54f5d7d36368546da08b88be1bca8ae50e32b451da17929181900390910190a150505050565b6000828211156101e957fe5b509003905600a165627a7a72305820e0c36667a675024181aa38f3e9b87698253696836be0a6cffb7aa2100c0134fe0029
Deployed Bytecode
0x6080604052600436106100405763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663ab883d288114610045575b600080fd5b604080516020600480358082013583810280860185019096528085526100c695369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a9989019892975090820195509350839250850190849080828437509497506100c89650505050505050565b005b3460005b835181101561019d5782818151811015156100e357fe5b602090810290910101518210156100f957600080fd5b610121838281518110151561010a57fe5b60209081029091010151839063ffffffff6101dd16565b9150838181518110151561013157fe5b9060200190602002015173ffffffffffffffffffffffffffffffffffffffff166108fc848381518110151561016257fe5b602090810290910101516040518115909202916000818181858888f19350505050158015610194573d6000803e3d6000fd5b506001016100cc565b6040805134815233602082015281517f04afd2ce457d973046bd54f5d7d36368546da08b88be1bca8ae50e32b451da17929181900390910190a150505050565b6000828211156101e957fe5b509003905600a165627a7a72305820e0c36667a675024181aa38f3e9b87698253696836be0a6cffb7aa2100c0134fe0029
Deployed Bytecode Sourcemap
1253:534:0:-;;;;;;;;;;;;;;;;;;;;;;;1374:410;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1374:410:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1374:410:0;;;;-1:-1:-1;1374:410:0;-1:-1:-1;1374:410:0;;-1:-1:-1;1374:410:0;;;;;;;;;-1:-1:-1;1374:410:0;;-1:-1:-1;1374:410:0;;-1:-1:-1;;;;;;;1374:410:0;;;;1486:9;1470:13;1530:197;1542:13;:20;1538:1;:24;1530:197;;;1601:9;1611:1;1601:12;;;;;;;;;;;;;;;;;;;1592:21;;;1584:31;;;;;;1638:23;1648:9;1658:1;1648:12;;;;;;;;;;;;;;;;;;;1638:5;;:23;:9;:23;:::i;:::-;1630:31;;1676:13;1690:1;1676:16;;;;;;;;;;;;;;;;;;:25;;:39;1702:9;1712:1;1702:12;;;;;;;;;;;;;;;;;;;1676:39;;;;;;;;;;;;1702:12;1676:39;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;1564:3:0;;1530:197;;;1742:34;;;1754:9;1742:34;;1765:10;1742:34;;;;;;;;;;;;;;;;;1374:410;;;;:::o;934:113::-;992:7;1015:6;;;;1008:14;;;;-1:-1:-1;1036:5:0;;;934:113::o
Swarm Source
bzzr://e0c36667a675024181aa38f3e9b87698253696836be0a6cffb7aa2100c0134fe
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.20
Net Worth in ETH
0.0001
Token Allocations
ETH
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $2,049.15 | 0.0001 | $0.204915 |
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.