Transaction Hash:
Block:
7719765 at May-08-2019 11:25:38 AM +UTC
Transaction Fee:
0.000214976 ETH
$0.65
Gas Used:
53,744 Gas / 4 Gwei
Emitted Events:
15 |
HuobiPoolToken.Transfer( _from=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, _to=[Receiver] TokenStore, _value=833000000000000000000 )
|
16 |
TokenStore.Deposit( token=HuobiPoolToken, user=[Sender] 0x343a3c7f789335c9ea60932d34be258f643678d9, amount=833000000000000000000, balance=833000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1cE7AE55...ee6Ee33D8 | (Token.Store) | ||||
0x343a3C7F...F643678d9 |
0.10621587604692148 Eth
Nonce: 162
|
0.10600090004692148 Eth
Nonce: 163
| 0.000214976 | ||
0xa66Daa57...7F5f95213 | |||||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 399.698954761152810389 Eth | 399.699169737152810389 Eth | 0.000214976 |
Execution Trace
TokenStore.depositToken( _token=0xa66Daa57432024023DB65477BA87D4E7F5f95213, _amount=833000000000000000000 )
-
HuobiPoolToken.transferFrom( _from=0x343a3C7F789335C9EA60932D34bE258F643678d9, _to=0x1cE7AE555139c5EF5A57CC8d814a867ee6Ee33D8, _value=833000000000000000000 ) => ( success=True )
depositToken[TokenStore (ln:183)]
transferFrom[TokenStore (ln:187)]
revert[TokenStore (ln:188)]
safeAdd[TokenStore (ln:190)]
Deposit[TokenStore (ln:191)]
File 1 of 2: TokenStore
File 2 of 2: HuobiPoolToken
12345678910111213141516pragma solidity ^0.4.11;// ERC20 token protocol, see more details at// https://theethereum.wiki/w/index.php/ERC20_Token_Standard// And also https://github.com/ethereum/eips/issues/20contract Token {function totalSupply() constant returns (uint256 supply);function balanceOf(address _owner) constant returns (uint256 balance);function transfer(address _to, uint256 _value) returns (bool success);function transferFrom(address _from, address _to, uint256 _value) returns (bool success);function approve(address _spender, uint256 _value) returns (bool success);function allowance(address _owner, address _spender) constant returns (uint256 remaining);event Transfer(address indexed _from, address indexed _to, uint256 _value);event Approval(address indexed _owner, address indexed _spender, uint256 _value);
File 2 of 2: HuobiPoolToken
12345678910111213141516pragma solidity ^0.4.10;contract SafeMath {function safeAdd(uint256 x, uint256 y) internal returns(uint256) {uint256 z = x + y;assert((z >= x) && (z >= y));return z;}function safeSubtract(uint256 x, uint256 y) internal returns(uint256) {assert(x >= y);uint256 z = x - y;return z;}