Source Code
Latest 25 from a total of 46 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Batch Send | 10903305 | 2013 days ago | IN | 0 ETH | 0.00371716 | ||||
| Batch Send | 8701769 | 2362 days ago | IN | 0 ETH | 0.0000926 | ||||
| Batch Send | 8449374 | 2401 days ago | IN | 0 ETH | 0.00025158 | ||||
| Batch Send | 8386749 | 2411 days ago | IN | 0 ETH | 0.00020622 | ||||
| Batch Send | 8373664 | 2413 days ago | IN | 0 ETH | 0.00010194 | ||||
| Batch Send | 8317676 | 2422 days ago | IN | 0 ETH | 0.00009818 | ||||
| Batch Send | 8316609 | 2422 days ago | IN | 0 ETH | 0.00015093 | ||||
| Batch Send | 8314458 | 2422 days ago | IN | 0 ETH | 0.00004124 | ||||
| Batch Send | 8314267 | 2422 days ago | IN | 0 ETH | 0.00022659 | ||||
| Batch Send | 8314143 | 2422 days ago | IN | 0 ETH | 0.00012392 | ||||
| Batch Send | 8314139 | 2422 days ago | IN | 0 ETH | 0.00011135 | ||||
| Batch Send | 8311396 | 2423 days ago | IN | 0 ETH | 0.00006422 | ||||
| Batch Send | 8311190 | 2423 days ago | IN | 0 ETH | 0.00006422 | ||||
| Batch Send | 8310972 | 2423 days ago | IN | 0 ETH | 0.00044374 | ||||
| Batch Send | 8303177 | 2424 days ago | IN | 0 ETH | 0.00012074 | ||||
| Batch Send | 8303087 | 2424 days ago | IN | 0 ETH | 0.00009341 | ||||
| Batch Send | 8301458 | 2424 days ago | IN | 0 ETH | 0.00017516 | ||||
| Batch Send | 8301415 | 2424 days ago | IN | 0 ETH | 0.00022659 | ||||
| Batch Send | 8301365 | 2424 days ago | IN | 0 ETH | 0.00052548 | ||||
| Batch Send | 8299955 | 2424 days ago | IN | 0 ETH | 0.00005838 | ||||
| Batch Send | 8289007 | 2426 days ago | IN | 0 ETH | 0.00005838 | ||||
| Batch Send | 8288918 | 2426 days ago | IN | 0 ETH | 0.00009267 | ||||
| Batch Send | 8285526 | 2427 days ago | IN | 0 ETH | 0.00005838 | ||||
| Batch Send | 8285215 | 2427 days ago | IN | 0 ETH | 0.00005838 | ||||
| Batch Send | 8285186 | 2427 days ago | IN | 0 ETH | 0.00005838 |
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers.
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
|||
|---|---|---|---|---|---|---|---|---|
| Transfer | 10903305 | 2013 days ago | 0 ETH | |||||
| Transfer | 8701769 | 2362 days ago | 0 ETH | |||||
| Transfer | 8701769 | 2362 days ago | 0 ETH | |||||
| Transfer | 8701769 | 2362 days ago | 0 ETH | |||||
| Transfer | 8701769 | 2362 days ago | 0 ETH | |||||
| Transfer | 8449374 | 2401 days ago | 0 ETH | |||||
| Transfer | 8386749 | 2411 days ago | 0 ETH | |||||
| Transfer | 8373664 | 2413 days ago | 0 ETH | |||||
| Transfer | 8373664 | 2413 days ago | 0 ETH | |||||
| Transfer | 8373664 | 2413 days ago | 0 ETH | |||||
| Transfer | 8373664 | 2413 days ago | 0 ETH | |||||
| Transfer | 8317676 | 2422 days ago | 0 ETH | |||||
| Transfer | 8317676 | 2422 days ago | 0 ETH | |||||
| Transfer | 8317676 | 2422 days ago | 0 ETH | |||||
| Transfer | 8316609 | 2422 days ago | 0 ETH | |||||
| Transfer | 8316609 | 2422 days ago | 0 ETH | |||||
| Transfer | 8316609 | 2422 days ago | 0 ETH | |||||
| Transfer | 8314458 | 2422 days ago | 0 ETH | |||||
| Transfer | 8314267 | 2422 days ago | 0 ETH | |||||
| Transfer | 8314267 | 2422 days ago | 0 ETH | |||||
| Transfer | 8314267 | 2422 days ago | 0 ETH | |||||
| Transfer | 8314143 | 2422 days ago | 0 ETH | |||||
| Transfer | 8314139 | 2422 days ago | 0 ETH | |||||
| Transfer | 8311396 | 2423 days ago | 0 ETH | |||||
| Transfer | 8311396 | 2423 days ago | 0 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
SendBonus
Compiler Version
v0.4.18+commit.9cf6e910
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2019-08-01
*/
//this is the Smart Contract for QFP to send QOB Bonus for:
//1. QOB Bonus for Reservation Period;
//2. QOB Bonus for Early Bird of Genesis Period;
//3. Extra QOB Bonus for referee of QPass, for Extra QOB purchase;
//4. QOB Bonus for Genesis reference;
// Submitted for verification on 2019-Aug-01
pragma solidity ^0.4.18;
contract Owned {
address public owner;
function Owned() public {
owner = msg.sender;
}
modifier onlyOwner {
require(msg.sender == owner);
_;
}
function transferOwnership(address newOwner) public onlyOwner {
owner = newOwner;
}
}
interface Token {
function transfer(address _to, uint256 _value) external returns (bool success);
}
contract SendBonus is Owned {
function batchSend(address _tokenAddr, address[] _to, uint256[] _value) returns (bool _success) {
require(_to.length == _value.length);
require(_to.length <= 200);
for (uint8 i = 0; i < _to.length; i++) {
(Token(_tokenAddr).transfer(_to[i], _value[i]));
}
return true;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":false,"inputs":[{"name":"_tokenAddr","type":"address"},{"name":"_to","type":"address[]"},{"name":"_value","type":"uint256[]"}],"name":"batchSend","outputs":[{"name":"_success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
606060405260008054600160a060020a033316600160a060020a03199091161790556102e5806100306000396000f3006060604052600436106100565763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166319648bed811461005b5780638da5cb5b1461010c578063f2fde38b1461013b575b600080fd5b341561006657600080fd5b6100f860048035600160a060020a03169060446024803590810190830135806020808202016040519081016040528093929190818152602001838360200280828437820191505050505050919080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284375094965061015c95505050505050565b604051901515815260200160405180910390f35b341561011757600080fd5b61011f610260565b604051600160a060020a03909116815260200160405180910390f35b341561014657600080fd5b61015a600160a060020a036004351661026f565b005b600080825184511461016d57600080fd5b60c88451111561017c57600080fd5b5060005b83518160ff1610156102555784600160a060020a031663a9059cbb858360ff16815181106101aa57fe5b90602001906020020151858460ff16815181106101c357fe5b906020019060200201516000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561023257600080fd5b6102c65a03f1151561024357600080fd5b50505060405180515050600101610180565b506001949350505050565b600054600160a060020a031681565b60005433600160a060020a0390811691161461028a57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a72305820047aaf6d52ecb6b9ceb03fd4411861935d45c92c5567ee6b0641288a70f73ae00029
Deployed Bytecode
0x6060604052600436106100565763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166319648bed811461005b5780638da5cb5b1461010c578063f2fde38b1461013b575b600080fd5b341561006657600080fd5b6100f860048035600160a060020a03169060446024803590810190830135806020808202016040519081016040528093929190818152602001838360200280828437820191505050505050919080359060200190820180359060200190808060200260200160405190810160405280939291908181526020018383602002808284375094965061015c95505050505050565b604051901515815260200160405180910390f35b341561011757600080fd5b61011f610260565b604051600160a060020a03909116815260200160405180910390f35b341561014657600080fd5b61015a600160a060020a036004351661026f565b005b600080825184511461016d57600080fd5b60c88451111561017c57600080fd5b5060005b83518160ff1610156102555784600160a060020a031663a9059cbb858360ff16815181106101aa57fe5b90602001906020020151858460ff16815181106101c357fe5b906020019060200201516000604051602001526040517c010000000000000000000000000000000000000000000000000000000063ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561023257600080fd5b6102c65a03f1151561024357600080fd5b50505060405180515050600101610180565b506001949350505050565b600054600160a060020a031681565b60005433600160a060020a0390811691161461028a57600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a72305820047aaf6d52ecb6b9ceb03fd4411861935d45c92c5567ee6b0641288a70f73ae00029
Deployed Bytecode Sourcemap
753:393:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;790:353;;;;;;;;;;;;;-1:-1:-1;;;;;790:353:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:353:0;;-1:-1:-1;790:353:0;;-1:-1:-1;;;;;;790:353:0;;;;;;;;;;;;;;;;;;356:20;;;;;;;;;;;;;;;-1:-1:-1;;;;;356:20:0;;;;;;;;;;;;;;540:97;;;;;;;;;;-1:-1:-1;;;;;540:97:0;;;;;;;790:353;871:13;996:7;919:6;:13;905:3;:10;:27;897:36;;;;;;966:3;952;:10;:17;;944:26;;;;;;-1:-1:-1;1006:1:0;991:113;1013:3;:10;1009:1;:14;;;991:113;;;1052:10;-1:-1:-1;;;;;1046:26:0;;1073:3;1077:1;1073:6;;;;;;;;;;;;;;;;;;1081;1088:1;1081:9;;;;;;;;;;;;;;;;;;1046:45;;;;;;;;;;;;;;;-1:-1:-1;;;;;1046:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1025:3:0;;991:113;;;-1:-1:-1;1131:4:0;;790:353;-1:-1:-1;;;;790:353:0:o;356:20::-;;;-1:-1:-1;;;;;356:20:0;;:::o;540:97::-;506:5;;492:10;-1:-1:-1;;;;;492:19:0;;;506:5;;492:19;484:28;;;;;;613:5;:16;;-1:-1:-1;;613:16:0;-1:-1:-1;;;;;613:16:0;;;;;;;;;;540:97::o
Swarm Source
bzzr://047aaf6d52ecb6b9ceb03fd4411861935d45c92c5567ee6b0641288a70f73ae0
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 32 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.