ETH Price: $3,438.68 (-1.17%)
Gas: 0.22 Gwei

Transaction Decoder

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:

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
12.943495015929983771 Eth12.943495106700488571 Eth0.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)]
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: MIT
pragma 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.sol
Written by: mousedev.eth
Contributions by: manifold.xyz
Public Repository: https://github.com/mouse-dev-1/Akutar
15,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 URI
string public CONTRACT_URI;
//Base URI
string public BASE_URI;
//Shift Quantity;
uint256 public shiftQuantity;
//Block to base randomness off of
uint256 blockToUse;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX