ETH Price: $3,141.09 (+5.49%)
Gas: 1.45 Gwei

Transaction Decoder

Block:
17096451 at Apr-21-2023 06:11:47 PM +UTC
Transaction Fee:
0.001554407302145073 ETH $4.88
Gas Used:
46,589 Gas / 33.364255557 Gwei

Emitted Events:

363 Nembus.Approval( owner=[Sender] 0x6ce3ab3e1eb0fd0ccdbbcc10def1e5c9c34e581d, spender=0x00000000...43aC78BA3, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x6Ce3ab3E...9c34E581d
0.067300114443190801 Eth
Nonce: 134
0.065745707141045728 Eth
Nonce: 135
0.001554407302145073
0x7c472fb1...6e6cC2300
(beaverbuild)
31.224720885764159124 Eth31.224725544664159124 Eth0.0000046589

Execution Trace

Nembus.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
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