ETH Price: $2,779.97 (+6.26%)

Transaction Decoder

Block:
17555334 at Jun-25-2023 08:33:23 AM +UTC
Transaction Fee:
0.000558597665211878 ETH $1.55
Gas Used:
43,181 Gas / 12.936191038 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x37674417...08c5D8E8b
0.014688804289753574 Eth
Nonce: 1083
0.014130206624541696 Eth
Nonce: 1084
0.000558597665211878
0xbB4f3aD7...5F06165ca
(Flashbots: Builder)
0.044430033906775258 Eth0.044437350018653837 Eth0.000007316111878579

Execution Trace

AuraDropERC20.transfer( to=0x8E120FC6650Ad4E9877f8aDf5595159ab2502C35, amount=237742957037409000000000000 ) => ( True )
transfer[ERC20 (ln:594)]
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
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/MathUpgradeable.sol";
import "./math/SignedMathUpgradeable.sol";
/**
* @dev String operations.
*/
library StringsUpgradeable {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = MathUpgradeable.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX