ETH Price: $2,685.31 (+5.87%)
Gas: 1.83 Gwei

Transaction Decoder

Block:
15283530 at Aug-05-2022 04:55:18 PM +UTC
Transaction Fee:
0.0012127568 ETH $3.26
Gas Used:
51,388 Gas / 23.6 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x1d3D083d...03886DD94
1.250825012050722955 Eth
Nonce: 77
1.249612255250722955 Eth
Nonce: 78
0.0012127568
(Flexpool.io)
5,885.836883306124071037 Eth5,885.836989862930034681 Eth0.000106556805963644
0x95aD61b0...f0B64C4cE
0xB4a81261...5132D81e4

Execution Trace

BuryShib.leave( _share=14108439798514859750866890 )
  • TokenMintERC20Token.balanceOf( account=0xB4a81261b16b92af0B9F7C4a83f1E885132D81e4 ) => ( 31491275644873535359669401480654 )
  • TokenMintERC20Token.transfer( recipient=0x1d3D083dbEDbC1f3741ed8301fA601f03886DD94, amount=14110565154027989214536467 ) => ( True )
    File 1 of 2: BuryShib
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // SPDX-License-Identifier: MIT
    pragma solidity 0.6.12;
    import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
    import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
    import "@openzeppelin/contracts/math/SafeMath.sol";
    // BuryShib is the coolest pit in town. You come in with some Shib, and leave with more! The longer you stay, the more Shib you get.
    //
    // This contract handles swapping to and from xShib.
    contract BuryShib is ERC20("xShib Staked Shiba Inu", "xSHIB"){
    using SafeMath for uint256;
    IERC20 public immutable shib;
    // Define the Shib token contract
    constructor(IERC20 _shib) public {
    require(address(_shib) != address(0), "_shib is a zero address");
    shib = _shib;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 2: TokenMintERC20Token
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    /**
    *Submitted for verification at Etherscan.io on 2019-08-02
    */
    // File: contracts\open-zeppelin-contracts\token\ERC20\IERC20.sol
    pragma solidity ^0.5.0;
    /**
    * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
    * the optional functions; to access them see `ERC20Detailed`.
    */
    interface IERC20 {
    /**
    * @dev Returns the amount of tokens in existence.
    */
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX