ETH Price: $3,137.12 (+5.36%)

Transaction Decoder

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 Code
(MiningPoolHub)
1,416.259474401066374218 Eth1,416.268171461066374218 Eth0.00869706
0x4582419b...d0cfa9506
0.355935052480163758 Eth
Nonce: 1620
0.347237992480163758 Eth
Nonce: 1621
0.00869706
0x465d3BD8...d9f4B8175 10.264347927452704941 Eth10.044347927452704941 Eth0.22
0x85966b69...bF49A0316 0.088963656505715365 Eth0.308963656505715365 Eth0.22

Execution Trace

BankWallet.transfer( _token=0x0000000000000000000000000000000000000000, _receiver=0x85966b69639f60A879CCb5AE6420329bF49A0316, _amount=220000000000000000 ) => ( _success=True )
  • EdgelessCasino.authorized( 0x4582419b10CabdF6152C28e128ead87d0cfa9506 ) => ( True )
  • ETH 0.22 0x85966b69639f60a879ccb5ae6420329bf49a0316.CALL( )
    File 1 of 2: BankWallet
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    /**
    * 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;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 2: EdgelessCasino
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    /**
    * 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;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX