ETH Price: $2,581.64 (+1.03%)

Transaction Decoder

Block:
12896306 at Jul-25-2021 03:48:33 PM +UTC
Transaction Fee:
0.00101392434 ETH $2.62
Gas Used:
46,553 Gas / 21.78 Gwei

Emitted Events:

345 GamblerShiba.Approval( owner=[Sender] 0xc30b9b931df443283692a6c202bc047471ba2732, spender=0x7a250d56...659F2488D, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
(Spark Pool)
33.130074447154567869 Eth33.131088371494567869 Eth0.00101392434
0xc30b9B93...471bA2732
0.047096902163781083 Eth
Nonce: 149
0.046082977823781083 Eth
Nonce: 150
0.00101392434
0xc7Eb46eE...AECbFBDD7

Execution Trace

GamblerShiba.approve( spender=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
    
Gambler Shiba
https://t.me/gshiba_official
Improved fork of EverShare
More info:
* Instead of giving equal weights to all users, we give weights based on their purchase token amount and contributed ETH amount
* If you sell or transfer tokens to other wallets, you lose your ticket, but as soon as you buy again you regain your ticket
* There's no min eligible amount. Even if you buy 1 token, you have the very little chance to get rewarded.
*/
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.6.12;
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX