Transaction Hash:
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:
52 |
BuryShib.Transfer( from=[Sender] 0x1d3d083dbedbc1f3741ed8301fa601f03886dd94, to=0x0000000000000000000000000000000000000000, value=14108439798514859750866890 )
|
53 |
TokenMintERC20Token.Transfer( from=[Receiver] BuryShib, to=[Sender] 0x1d3d083dbedbc1f3741ed8301fa601f03886dd94, value=14110565154027989214536467 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1d3D083d...03886DD94 |
1.250825012050722955 Eth
Nonce: 77
|
1.249612255250722955 Eth
Nonce: 78
| 0.0012127568 | ||
0x7F101fE4...353f2B90c
Miner
| (Flexpool.io) | 5,885.836883306124071037 Eth | 5,885.836989862930034681 Eth | 0.000106556805963644 | |
0x95aD61b0...f0B64C4cE | |||||
0xB4a81261...5132D81e4 |
Execution Trace
BuryShib.leave( _share=14108439798514859750866890 )

leave[BuryShib (ln:38)]
totalSupply[BuryShib (ln:40)]
div[BuryShib (ln:42)]
mul[BuryShib (ln:42)]
balanceOf[BuryShib (ln:42)]
_burn[BuryShib (ln:43)]
transfer[BuryShib (ln:44)]
File 1 of 2: BuryShib
File 2 of 2: TokenMintERC20Token
12345678910111213141516// SPDX-License-Identifier: MITpragma 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 contractconstructor(IERC20 _shib) public {require(address(_shib) != address(0), "_shib is a zero address");shib = _shib;}
File 2 of 2: TokenMintERC20Token
12345678910111213141516/***Submitted for verification at Etherscan.io on 2019-08-02*/// File: contracts\open-zeppelin-contracts\token\ERC20\IERC20.solpragma 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.*/