Transaction Hash:
Block:
17414854 at Jun-05-2023 02:17:23 PM +UTC
Transaction Fee:
0.0128448909645463 ETH
$22.89
Gas Used:
152,150 Gas / 84.422549882 Gwei
Emitted Events:
1 |
HashBet.BetSettled( gambler=0x3b83de0c434bf1f9d65192569156bad60213fa7a, amount=10000000000000000, modulo=2, rollEdge=1, mask=2, outcome=1, winAmount=19800000000000000, finalWinAmount=19800000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3b83de0C...60213Fa7A | 0.326453984143090578 Eth | 0.346253984143090578 Eth | 0.0198 | ||
0x5421EC8A...07Bc96e66 | 49.590563472221763406 Eth | 49.570763472221763406 Eth | 0.0198 | ||
0x6DD396a3...68caDfA48 |
1.219023833795896069 Eth
Nonce: 64
|
1.206178942831349769 Eth
Nonce: 65
| 0.0128448909645463 | ||
0xDAFEA492...692c98Bc5
Miner
| (Flashbots: Builder) | 0.18320709630236605 Eth | 0.1892284895978134 Eth | 0.00602139329544735 |
Execution Trace
HashBet.settleBet( reveal=9986570717737547242005800803757872814906169399853184628173183795418248895866, transactionHash=0EA6AC7BC94734352D9F0E4078CF667310C96ED491D3984B99E8E2B533471D2F, finalWinAmount=19800000000000000 )
- ETH 0.0198
0x3b83de0c434bf1f9d65192569156bad60213fa7a.CALL( )
settleBet[HashBet (ln:422)]
settleBetCommon[HashBet (ln:437)]
getDiceWinAmount[HashBet (ln:492)]
getWealthTax[HashBet (ln:399)]
transfer[HashBet (ln:534)]
emitSettledEvent[HashBet (ln:537)]
BetSettled[HashBet (ln:551)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v3.1.0/contracts/utils/ReentrancyGuard.solpragma solidity ^0.6.0;/*** @dev Contract module that helps prevent reentrant calls to a function.** Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier* available, which can be applied to functions to make sure there are no nested* (reentrant) calls to them.** Note that because there is a single `nonReentrant` guard, functions marked as* `nonReentrant` may not call one another. This can be worked around by making* those functions `private`, and then adding `external` `nonReentrant` entry* points to them.** TIP: If you would like to learn more about reentrancy and alternative ways* to protect against it, check out our blog post* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].*/contract ReentrancyGuard {// Booleans are more expensive than uint256 or any type that takes up a full// word because each write operation emits an extra SLOAD to first read the// slot's contents, replace the bits taken up by the boolean, and then write