ETH Price: $3,132.96 (+3.92%)

Transaction Decoder

Block:
17611064 at Jul-03-2023 04:26:47 AM +UTC
Transaction Fee:
0.000946035262125074 ETH $2.96
Gas Used:
68,507 Gas / 13.809322582 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x212BcD4A...94059A635
0.019646140757793002 Eth
Nonce: 64
0.018700105495667928 Eth
Nonce: 65
0.000946035262125074
0x7c472fb1...6e6cC2300
(Flashbots: Builder)
0.025688302818306973 Eth0.025725696051320318 Eth0.000037393233013345

Execution Trace

Nembus.transfer( recipient=0xd002B0cb92Cfe6F5b45C085b21f58234a0E0EeE0, amount=334640000000000 ) => ( True )
transfer[Nembus (ln:548)]
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: Unlicensed
pragma solidity ^0.8.4;
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return payable(msg.sender);
}
function _msgData() internal view virtual returns (bytes memory) {
this;
return msg.data;
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
library SafeMath {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX