-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCoinbaseTransferOut.sol
55 lines (45 loc) · 1.41 KB
/
CoinbaseTransferOut.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
pragma solidity ^0.4.25;
import './TRC20.sol';
contract CoinbaseTokenOut{
address public owner;
function Ownable()public{
owner=msg.sender;
}
modifier onlyOwner(){
require(msg.sender==owner);
_;
}
function sendTrx(address[] _to, uint256[] _value) payable returns (bool _success) {
assert(_to.length == _value.length);
assert(_to.length <= 255);
uint256 beforeValue = msg.value;
uint256 afterValue = 0;
for (uint8 i = 0; i < _to.length; i++) {
afterValue = afterValue + _value[i];
assert(_to[i].send(_value[i]));
}
uint256 remainingValue = beforeValue - afterValue;
if (remainingValue > 0) {
assert(msg.sender.send(remainingValue));
}
return true;
}
function transferTrxout(address _to,uint256 _value)onlyOwner returns(bool _success){
assert(_to.send(_value));
return true;
}
function transferTokenout(address _tokenAddress,address _to, uint256 _value) onlyOwner returns (bool _success){
TRC20 token = TRC20(_tokenAddress);
assert(token.transfer(_to,_value)==true);
return true;
}
function sendToken(address _tokenAddress, address[] _to, uint256[] _value) returns (bool _success) {
assert(_to.length == _value.length);
assert(_to.length <= 255);
TRC20 token = TRC20(_tokenAddress);
for (uint8 i = 0; i < _to.length; i++) {
assert(token.transferFrom(msg.sender, _to[i], _value[i]) == true);
}
return true;
}
}