ETH Price: $4,639.62 (+8.25%)

Transaction Decoder

Block:
17090712 at Apr-20-2023 10:45:35 PM +UTC
Transaction Fee:
0.002458512986955601 ETH $11.41
Gas Used:
46,289 Gas / 53.112251009 Gwei

Emitted Events:

414 Nembus.Approval( owner=[Sender] 0x8942868bb0e2ef999accfe318c294d41fac43e0b, spender=0x00000000...43aC78BA3, value=318013079256864 )

Account State Difference:

  Address   Before After State Difference Code
8.287898378642079172 Eth8.287903007542079172 Eth0.0000046289
0x7c472fb1...6e6cC2300
0x8942868b...1faC43e0B
0.278984575112297318 Eth
Nonce: 106
0.276526062125341717 Eth
Nonce: 107
0.002458512986955601

Execution Trace

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