ETH Price: $3,651.33 (+1.74%)

Transaction Decoder

Block:
17089981 at Apr-20-2023 08:15:35 PM +UTC
Transaction Fee:
0.003823319972977401 ETH $13.96
Gas Used:
63,719 Gas / 60.002824479 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x7c472fb1...6e6cC2300
0x8602eA04...7E069f0b9
0.010519367082115 Eth
Nonce: 3
0.006696047109137599 Eth
Nonce: 4
0.003823319972977401
(Fee Recipient: 0xc2...64f)
15.742508746795876094 Eth15.742515118695876094 Eth0.0000063719

Execution Trace

Nembus.transfer( recipient=0x0707cc36dAFDe0685dD7E87F6a608BD0542dA83b, amount=3492229719280836 ) => ( 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