ETH Price: $2,646.56 (+0.21%)

Transaction Decoder

Block:
22309765 at Apr-20-2025 10:57:59 AM +UTC
Transaction Fee:
0.000108335939979978 ETH $0.29
Gas Used:
46,301 Gas / 2.339818578 Gwei

Emitted Events:

36 AirSwapToken.Approval( _owner=[Sender] 0x6dd15947bfae24f074681eef8c78f6fae46b8ab5, _spender=0x00000000...43aC78BA3, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x27054b13...2d47eA75a
(Titan Builder)
23.529503831465653185 Eth23.529596433465653185 Eth0.000092602
0x6dd15947...aE46b8ab5
0.01462723939908045 Eth
Nonce: 167
0.014518903459100472 Eth
Nonce: 168
0.000108335939979978

Execution Trace

AirSwapToken.approve( _spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( success=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
pragma solidity ^0.4.11;
// See the Github at github.com/airswap/contracts
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
contract Ownable {
address public owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev The Ownable constructor sets the original `owner` of the contract to the sender
* account.
*/
function Ownable() {
owner = msg.sender;
}
/**
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX