Transaction Hash:
Block:
8661439 at Oct-02-2019 07:15:05 AM +UTC
Transaction Fee:
0.000560175 ETH
$2.27
Gas Used:
37,345 Gas / 15 Gwei
Emitted Events:
241 |
OwnedUpgradeabilityProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x000000000000000000000000d26a4d3ce34eef62a5eacc1f07b6e4ed11d0d516, 0x000000000000000000000000cff21a4cb1ca02504d86d406c16cb270a018bdd0, 0000000000000000000000000000000000000000000000007c38bc216ad471c7 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x00000000...ecd22b376 | |||||
0x2f701eAB...EA4347FE2 |
0 Eth
Nonce: 0
|
0 Eth
Nonce: 0
| |||
0x829BD824...93333A830
Miner
| (F2Pool Old) | 1,881.634721700220659188 Eth | 1,881.635281875220659188 Eth | 0.000560175 | |
0xD26A4D3C...d11d0d516 |
30.983300493340133136 Eth
Nonce: 844
|
30.982740318340133136 Eth
Nonce: 845
| 0.000560175 |
Execution Trace
TrueUSD.transfer( to=0xcFF21a4cB1cA02504d86d406c16cB270a018BDD0, value=8951111111111111111 ) => ( True )

OwnedUpgradeabilityProxy.9cd1a121( )
TrueUSD.delegateTransfer( to=0xcFF21a4cB1cA02504d86d406c16cB270a018BDD0, value=8951111111111111111, origSender=0xD26A4D3Ce34EeF62a5eaCC1f07B6e4Ed11d0d516 ) => ( True )
0x2f701eabc402d4d89f0ea62ecdb419eea4347fe2.CALL( )
-
Null: 0x000...000.SELFDESTRUCT( )
-
transfer[ERC20Basic (ln:293)]
File 1 of 3: TrueUSD
File 2 of 3: OwnedUpgradeabilityProxy
File 3 of 3: TrueUSD
12345678910111213141516pragma solidity ^0.4.18;contract DelegateERC20 {function delegateTotalSupply() public view returns (uint256);function delegateBalanceOf(address who) public view returns (uint256);function delegateTransfer(address to, uint256 value, address origSender) public returns (bool);function delegateAllowance(address owner, address spender) public view returns (uint256);function delegateTransferFrom(address from, address to, uint256 value, address origSender) public returns (bool);function delegateApprove(address spender, uint256 value, address origSender) public returns (bool);function delegateIncreaseApproval(address spender, uint addedValue, address origSender) public returns (bool);function delegateDecreaseApproval(address spender, uint subtractedValue, address origSender) public returns (bool);}library SafeMath {/**
File 2 of 3: OwnedUpgradeabilityProxy
12345678910111213141516pragma solidity ^0.4.23;// This is the proxy contract for the TrustToken Registry// File: contracts/Proxy/Proxy.sol/*** @title Proxy* @dev Gives the possibility to delegate any call to a foreign implementation.*/contract Proxy {/*** @dev Tells the address of the implementation where every call will be delegated.* @return address of the implementation to which it will be delegated*/
File 3 of 3: TrueUSD
12345678910111213141516pragma solidity ^0.4.23;// File: contracts/TrueCoinReceiver.solcontract TrueCoinReceiver {function tokenFallback( address from, uint256 value ) external;}// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol/*** @title ERC20Basic* @dev Simpler version of ERC20 interface* @dev see https://github.com/ethereum/EIPs/issues/179*/contract ERC20Basic {