Transaction Hash:
Block:
8867731 at Nov-03-2019 10:17:18 PM +UTC
Transaction Fee:
0.000055122 ETH
$0.16
Gas Used:
55,122 Gas / 1 Gwei
Emitted Events:
37 |
Wearables.TransferSingle( _operator=[Sender] 0xd1898665a01a91ac10bd2c6cb1899336df34ac33, _from=[Sender] 0xd1898665a01a91ac10bd2c6cb1899336df34ac33, _to=0xA4d0197d...c85404bB3, _id=9, _amount=1 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 53.668470724026200309 Eth | 53.668525846026200309 Eth | 0.000055122 | |
0xa58b5224...4247301A6 | |||||
0xD1898665...6df34AC33 |
0.131341779382485849 Eth
Nonce: 62
|
0.131286657382485849 Eth
Nonce: 63
| 0.000055122 |
Execution Trace
Wearables.safeTransferFrom( _from=0xD1898665a01A91AC10bD2C6cb1899336df34AC33, _to=0xA4d0197d4c99c0362378809131D8788c85404bB3, _id=9, _amount=1, _data=0x )
safeTransferFrom[ERC1155 (ln:428)]
isApprovedForAll[ERC1155 (ln:431)]
_safeTransferFrom[ERC1155 (ln:435)]
sub[ERC1155 (ln:474)]
add[ERC1155 (ln:475)]
TransferSingle[ERC1155 (ln:478)]
_callonERC1155Received[ERC1155 (ln:436)]
isContract[ERC1155 (ln:488)]
onERC1155Received[ERC1155 (ln:489)]
1234567891011121314151617181920212223242526// File: openzeppelin-solidity/contracts/ownership/Ownable.solpragma solidity ^0.5.0;/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be aplied to your functions to restrict their use to* the owner.*/contract Ownable {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev Initializes the contract setting the deployer as the initial owner.*/constructor () internal {_owner = msg.sender;emit OwnershipTransferred(address(0), _owner);}