Transaction Hash:
Block:
19744986 at Apr-27-2024 06:48:23 AM +UTC
Transaction Fee:
0.000261404003564932 ETH
$0.90
Gas Used:
48,236 Gas / 5.419271987 Gwei
Emitted Events:
459 |
Akutar.Approval( owner=[Sender] 0x684340ae7d83f083078597aae1d5420bcd354bd7, approved=0x00000000...000000000, tokenId=11843 )
|
460 |
Akutar.Transfer( from=[Sender] 0x684340ae7d83f083078597aae1d5420bcd354bd7, to=0x3FC38f3d...175D59fd9, tokenId=11843 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 12.943495015929983771 Eth | 12.943495106700488571 Eth | 0.0000000907705048 | |
0x684340ae...Bcd354BD7 |
0.222275295266382066 Eth
Nonce: 73
|
0.222013891262817134 Eth
Nonce: 74
| 0.000261404003564932 | ||
0xaaD35C2D...76c891Fa9 |
Execution Trace
Akutar.safeTransferFrom( from=0x684340ae7d83f083078597aae1D5420Bcd354BD7, to=0x3FC38f3d3Dc09817f1A8670D825Eca4175D59fd9, tokenId=11843 )
safeTransferFrom[ERC721 (ln:374)]
safeTransferFrom[ERC721 (ln:379)]
safeTransferFrom[ERC721 (ln:379)]
1234567891011121314151617181920212223242526//SPDX-License-Identifier: MITpragma solidity 0.8.13;import "@openzeppelin/contracts/access/Ownable.sol";import "@openzeppelin/contracts/token/ERC721/ERC721.sol";import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";import "@openzeppelin/contracts/utils/Strings.sol";/*Akutar.solWritten by: mousedev.ethContributions by: manifold.xyzPublic Repository: https://github.com/mouse-dev-1/Akutar15,000 NFTs in 4 sections(6) ID 1-6 partner reserved NFTs(529) ID 7-535 Mega OG Akutars, randomly assigned to 529 Mega OG Mint Pass holders (addresses known)(2527) ID 536-3,062 OG Akutars, randomly assigned to 2,527 OG Mint Pass holders (addresses known)(11938) ID 3,063-15,000 Akutars, randomly assigned to 6,443 Mint Pass holders + 5495 public bids (addresses known)*/contract Akutar is Ownable, ERC721, ERC721Burnable {//Contract URIstring public CONTRACT_URI;//Base URIstring public BASE_URI;//Shift Quantity;uint256 public shiftQuantity;//Block to base randomness off ofuint256 blockToUse;