Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x27054b13...2d47eA75a | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 23.529503831465653185 Eth | 23.529596433465653185 Eth | 0.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 )
approve[Token (ln:127)]
1234567891011121314151617181920212223242526pragma 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;}/**