Transaction Hash:
Block:
12010396 at Mar-10-2021 11:00:07 AM +UTC
Transaction Fee:
0.00869706 ETH
$27.28
Gas Used:
38,145 Gas / 228 Gwei
Emitted Events:
14 |
BankWallet.Transfer( _token=0x00000000...000000000, _receiver=0x85966b69639f60a879ccb5ae6420329bf49a0316, _amount=220000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3EcEf08D...8bFf2D5bB
Miner
| (MiningPoolHub) | 1,416.259474401066374218 Eth | 1,416.268171461066374218 Eth | 0.00869706 | |
0x4582419b...d0cfa9506 |
0.355935052480163758 Eth
Nonce: 1620
|
0.347237992480163758 Eth
Nonce: 1621
| 0.00869706 | ||
0x465d3BD8...d9f4B8175 | 10.264347927452704941 Eth | 10.044347927452704941 Eth | 0.22 | ||
0x85966b69...bF49A0316 | 0.088963656505715365 Eth | 0.308963656505715365 Eth | 0.22 |
Execution Trace
BankWallet.transfer( _token=0x0000000000000000000000000000000000000000, _receiver=0x85966b69639f60A879CCb5AE6420329bF49A0316, _amount=220000000000000000 ) => ( _success=True )
-
EdgelessCasino.authorized( 0x4582419b10CabdF6152C28e128ead87d0cfa9506 ) => ( True )
- ETH 0.22
0x85966b69639f60a879ccb5ae6420329bf49a0316.CALL( )
transfer[BankWallet (ln:96)]
_transfer[BankWallet (ln:98)]
send[BankWallet (ln:127)]
balanceOf[BankWallet (ln:130)]
transfer[BankWallet (ln:131)]
Transfer[BankWallet (ln:100)]
File 1 of 2: BankWallet
File 2 of 2: EdgelessCasino
12345678910111213141516/*** Smart contract holds Ethereum and Edgeless tokens.* Ethereum is used to fund authorized casino wallets which is responsible for* approving withdrawal and sending deposits to casino smart contract.* Edgeless tokens is used to fund casino bankroll for users who chooses* to deposit not an EDG token but crypto like BTC, ETH, etc.* author: Rytis Grincevičius* */pragma solidity ^0.5.10;contract SafeMath {function safeSub(uint a, uint b) internal pure returns (uint) {assert(b <= a);return a - b;}
File 2 of 2: EdgelessCasino
12345678910111213141516/*** The edgeless casino contract v2 holds the players's funds and provides state channel functionality.* The casino has at no time control over the players's funds.* State channels can be updated and closed from both parties: the player and the casino.* author: Julia Altenried**/pragma solidity ^0.4.21;contract SafeMath {function safeSub(uint a, uint b) pure internal returns(uint) {assert(b <= a);return a - b;}