Transaction Hash:
Block:
11802258 at Feb-06-2021 10:31:47 AM +UTC
Transaction Fee:
0.009989935 ETH
$42.80
Gas Used:
86,869 Gas / 115 Gwei
Emitted Events:
276 |
AdminUpgradeabilityProxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x0000000000000000000000006f966aa1e21b42024159c8ecb708bc9fa6afa4d4, 0x0000000000000000000000005edce5523e351fb18c18c351be4bb274e12d3afe, 000000000000000000000000000000000000000000000226354d1e6121eb0000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 5.198875723339371686 Eth | 5.208865658339371686 Eth | 0.009989935 | |
0x6f966AA1...FA6AfA4d4 |
0.041973472843139273 Eth
Nonce: 25
|
0.031983537843139273 Eth
Nonce: 26
| 0.009989935 | ||
0xfACd9A6f...6d9DCAE01 |
Execution Trace
AdminUpgradeabilityProxy.a9059cbb( )

-
DfDepositToken.transfer( recipient=0x5EDce5523E351fb18C18C351bE4bB274E12D3aFE, amount=10149550000000000000000 ) => ( True )
transfer[DfDepositToken (ln:1156)]
_transfer[DfDepositToken (ln:1161)]
File 1 of 2: AdminUpgradeabilityProxy
File 2 of 2: DfDepositToken
12345678910111213141516// File: @openzeppelin/upgrades/contracts/upgradeability/Proxy.solpragma solidity ^0.5.0;/*** @title Proxy* @dev Implements delegation of calls to other contracts, with proper* forwarding of return values and bubbling of failures.* It defines a fallback function that delegates all calls to the address* returned by the abstract _implementation() internal function.*/contract Proxy {/*** @dev Fallback function.* Implemented entirely in `_fallback`.*/
File 2 of 2: DfDepositToken
12345678910111213141516// File: @openzeppelin/upgrades/contracts/Initializable.solpragma solidity >=0.4.24 <0.7.0;/*** @title Initializable** @dev Helper contract to support initializer functions. To use it, replace* the constructor with a function that has the `initializer` modifier.* WARNING: Unlike constructors, initializer functions must be manually* invoked. This applies both to deploying an Initializable contract, as well* as extending an Initializable contract via inheritance.* WARNING: When used with inheritance, manual care must be taken to not invoke* a parent initializer twice, or ensure that all initializers are idempotent,* because this is not dealt with automatically as with constructors.