diff --git a/app/Console/Commands/LiveDumpNfts.php b/app/Console/Commands/LiveDumpNfts.php index 2d49ff915..682d81424 100644 --- a/app/Console/Commands/LiveDumpNfts.php +++ b/app/Console/Commands/LiveDumpNfts.php @@ -43,30 +43,28 @@ class LiveDumpNfts extends Command /** * @var array */ - protected $requiredAttributes = [ - 'title', + protected array $requiredAttributes = [ + 'name', 'description', + 'tokenId', 'contract' => [ 'address', - ], - 'id' => [ - 'tokenId', - ], - 'media' => [ - '0' => ['thumbnail', 'gateway', 'raw'], - ], - 'contractMetadata' => [ 'symbol', 'name', 'totalSupply', - 'openSea' => ['twitterUsername', 'discordUrl', 'floorPrice', 'collectionName', 'imageUrl', 'externalUrl', 'description'], + 'openSeaMetadata' => ['twitterUsername', 'discordUrl', 'floorPrice', 'collectionName', 'imageUrl', 'externalUrl', 'description'], 'deployedBlockNumber', ], - 'metadata' => [ - 'image', - 'attributes', - 'properties', - 'external_url', + 'image' => [ + 'thumbnailUrl', 'cachedUrl', 'originalUrl', + ], + 'raw' => [ + 'metadata' => [ + 'image', + 'attributes', + 'properties', + 'external_url', + ], ], ]; @@ -188,10 +186,10 @@ private function getTopCollections(Chain $chain, int $limit = 25): IlluminateCol private function removeEncodedAttributes(array $nft): array { $potentiallyEncodedAttributes = [ - 'media.0.thumbnail', - 'media.0.gateway', - 'media.0.raw', - 'metadata.image', + 'image.thumbnailUrl', + 'image.cachedUrl', + 'image.originalUrl', + 'raw.metadata.image', ]; foreach ($potentiallyEncodedAttributes as $attribute) { @@ -291,7 +289,7 @@ private function getTokenCursorForChunk(int $chunk, Chain $chain, string $contra $nftChunk = json_decode($file, true); - return Arr::get($nftChunk, 'nextToken'); + return Arr::get($nftChunk, 'pageKey'); } private function getCollectionTraitsAndPersist(Chain $chain, string $address): void diff --git a/app/Http/Client/Alchemy/AlchemyPendingRequest.php b/app/Http/Client/Alchemy/AlchemyPendingRequest.php index d5a8e7e4f..2e54357a3 100644 --- a/app/Http/Client/Alchemy/AlchemyPendingRequest.php +++ b/app/Http/Client/Alchemy/AlchemyPendingRequest.php @@ -187,7 +187,7 @@ public function getWalletTokens(Wallet $wallet, Network $network): Collection */ public function getWalletNfts(Wallet $wallet, Network $network, string $cursor = null, int $limit = null): Web3NftsChunk { - $this->apiUrl = $this->getNftV2ApiUrl(); + $this->apiUrl = $this->getNftV3ApiUrl(); $this->chain = AlchemyChain::fromChainId($network->chain_id); @@ -204,7 +204,7 @@ public function getWalletNfts(Wallet $wallet, Network $network, string $cursor = 'excludeFilters' => ['SPAM'], ]))); - $data = self::get('getNFTs', $query)->json(); + $data = self::get('getNFTsForOwner', $query)->json(); /** @var array $ownedNfts */ $ownedNfts = Arr::get($data, 'ownedNfts', []); @@ -227,7 +227,7 @@ public function getWalletNfts(Wallet $wallet, Network $network, string $cursor = */ public function nftMetadataBatch(Collection $nfts, Network $network): Web3NftsChunk { - $this->apiUrl = $this->getNftV2ApiUrl(); + $this->apiUrl = $this->getNftV3ApiUrl(); // All the requests need to have chain id defined. $this->chain = AlchemyChain::fromChainId($network->chain_id); @@ -241,14 +241,14 @@ public function nftMetadataBatch(Collection $nfts, Network $network): Web3NftsCh $response = self::post('getNFTMetadataBatch', [ 'tokens' => $tokens, - ])->json(); + ])->json('nfts'); /** @var Collection $response */ $nftItems = collect($response) ->filter(fn ($nft) => $this->filterNft($nft)) ->map(function ($nft) use ($network) { // With getNFTMetadataBatch, alchemy returns tokens numbers (`tokenId` field) as number instead of hex, - // thus the `convertTokenNumber flag to save it as is withouth attempting to convert from hex. + // thus the `convertTokenNumber flag to save it as is without attempting to convert from hex. // See https://docs.alchemy.com/reference/sdk-getnftmetadatabatch#response-1 return $this->parseNft($nft, $network->id, convertTokenNumber: false); }) @@ -265,7 +265,7 @@ public function collectionNfts( string $startToken = null, int $limit = null ): Web3NftsChunk { - $this->apiUrl = $this->getNftV2ApiUrl(); + $this->apiUrl = $this->getNftV3ApiUrl(); $this->chain = AlchemyChain::fromChainId($collection->network->chain_id); @@ -280,14 +280,14 @@ public function collectionNfts( 'limit' => $limit, ]); - $data = self::get('getNFTsForCollection', $query)->json(); + $data = self::get('getNFTsForContract', $query)->json(); /** * @var array $nfts */ $nfts = Arr::get($data, 'nfts', []); - $nextToken = Arr::get($data, 'nextToken'); + $nextToken = Arr::get($data, 'pageKey'); $nfts = collect($nfts) ->filter(fn ($nft) => $this->filterNft($nft)) @@ -305,7 +305,7 @@ public function collectionNfts( */ public function collectionNftsRaw(CollectionModel $collection, string $startToken = null): ?array { - $this->apiUrl = $this->getNftV2ApiUrl(); + $this->apiUrl = $this->getNftV3ApiUrl(); $this->chain = AlchemyChain::fromChainId($collection->network->chain_id); @@ -335,27 +335,27 @@ public function getNativeBalance(Wallet $wallet, Network $network): string */ public function getContractMetadataBatch(array $contactAddresses, Network $network): Collection { - $this->apiUrl = $this->getNftV2ApiUrl(); + $this->apiUrl = $this->getNftV3ApiUrl(); $this->chain = AlchemyChain::fromChainId($network->chain_id); /** @var array $collections */ - $collections = self::post('getContractMetadataBatch', ['contractAddresses' => $contactAddresses])->json(); + $collections = self::post('getContractMetadataBatch', ['contractAddresses' => $contactAddresses])->json('contracts'); return collect($collections)->map(function ($collectionMeta) { - $supply = Arr::get($collectionMeta, 'contractMetadata.totalSupply'); - $mintedBlock = Arr::get($collectionMeta, 'contractMetadata.deployedBlockNumber'); + $supply = Arr::get($collectionMeta, 'totalSupply'); + $mintedBlock = Arr::get($collectionMeta, 'deployedBlockNumber'); return new Web3ContractMetadata( contractAddress: $collectionMeta['address'], - collectionName: Arr::get($collectionMeta, 'contractMetadata.name'), + collectionName: Arr::get($collectionMeta, 'name'), totalSupply: $supply ? (int) $supply : null, mintedBlock: $mintedBlock ? (int) $mintedBlock : null, - collectionSlug: Arr::get($collectionMeta, 'contractMetadata.openSea.collectionSlug'), - imageUrl: Arr::get($collectionMeta, 'contractMetadata.openSea.imageUrl'), - floorPrice: Arr::get($collectionMeta, 'contractMetadata.openSea.floorPrice'), - bannerImageUrl: Arr::get($collectionMeta, 'contractMetadata.openSea.bannerImageUrl'), - description: Arr::get($collectionMeta, 'contractMetadata.openSea.description'), + collectionSlug: Arr::get($collectionMeta, 'openSeaMetadata.collectionSlug'), + imageUrl: Arr::get($collectionMeta, 'openSeaMetadata.imageUrl'), + floorPrice: Arr::get($collectionMeta, 'openSeaMetadata.floorPrice'), + bannerImageUrl: Arr::get($collectionMeta, 'openSeaMetadata.bannerImageUrl'), + description: Arr::get($collectionMeta, 'openSeaMetadata.description'), ); }); } @@ -368,13 +368,14 @@ public function parseNft(array $nft, int $networkId, bool $convertTokenNumber = $extractedFloorPrice = $this->tryExtractFloorPrice($nft); $collectionName = $this->collectionName($nft); $description = $nft['description'] ?? null; - $supply = Arr::get($nft, 'contractMetadata.totalSupply'); + $supply = Arr::get($nft, 'contract.totalSupply'); + if (is_numeric($supply)) { $supply = intval($supply); } if ($description === null) { - $description = $nft['metadata']['description'] ?? null; + $description = Arr::get($nft, 'raw.metadata.description'); } if (is_array($description)) { @@ -382,8 +383,8 @@ public function parseNft(array $nft, int $networkId, bool $convertTokenNumber = } $socials = [ - 'twitter' => Arr::get($nft, 'contractMetadata.openSea.twitterUsername'), - 'discord' => Arr::get($nft, 'contractMetadata.openSea.discordUrl'), + 'twitter' => Arr::get($nft, 'contract.openSeaMetadata.twitterUsername'), + 'discord' => Arr::get($nft, 'contract.openSeaMetadata.discordUrl'), ]; if ($socials['discord'] && preg_match('/https:\/\/discord.gg\/(\w+)/', $socials['discord'], $matches)) { @@ -392,16 +393,16 @@ public function parseNft(array $nft, int $networkId, bool $convertTokenNumber = $mintTimestamp = $this->getNftMintingDateProperty($nft); - $bannerImageUrl = Arr::get($nft, 'contractMetadata.openSea.bannerImageUrl'); + $bannerImageUrl = Arr::get($nft, 'contract.openSeaMetadata.bannerImageUrl'); if (! empty($bannerImageUrl)) { $bannerImageUrl = NftImageUrl::get($bannerImageUrl, ImageSize::Banner); } else { $bannerImageUrl = null; } - $tokenNumber = $convertTokenNumber === true ? CryptoUtils::hexToBigIntStr($nft['id']['tokenId']) : $nft['id']['tokenId']; + $tokenNumber = $convertTokenNumber === true ? CryptoUtils::hexToBigIntStr($nft['tokenId']) : $nft['tokenId']; - $error = Arr::get($nft, 'error'); + $error = Arr::get($nft, 'raw.error'); $nftInfo = null; $collectionAddress = Arr::get($nft, 'contract.address'); @@ -414,7 +415,7 @@ public function parseNft(array $nft, int $networkId, bool $convertTokenNumber = ]); // if metadata stuff is empty, is empty object or empty array - if (empty($nft['metadata']) || empty($nft['metadata']['metadata'])) { + if (empty(Arr::get($nft, 'raw.metadata')) || empty(Arr::get($nft, 'raw.metadata.metadata'))) { $nftInfo = NftInfo::MetadataOutdated->value; } } @@ -424,13 +425,13 @@ public function parseNft(array $nft, int $networkId, bool $convertTokenNumber = tokenNumber: $tokenNumber, networkId: $networkId, collectionName: $collectionName, - collectionSymbol: Arr::get($nft, 'contractMetadata.symbol') ?? $collectionName, - collectionImage: Arr::get($nft, 'contractMetadata.openSea.imageUrl') ?? Arr::get($nft, 'media.0.thumbnail') ?? Arr::get($nft, 'media.0.gateway'), - collectionWebsite: Arr::get($nft, 'contractMetadata.openSea.externalUrl') ?? Arr::get($nft, 'metadata.external_url'), - collectionDescription: Arr::get($nft, 'contractMetadata.openSea.description'), + collectionSymbol: Arr::get($nft, 'contract.symbol') ?? $collectionName, + collectionImage: Arr::get($nft, 'contract.openSeaMetadata.imageUrl') ?? Arr::get($nft, 'image.thumbnailUrl') ?? Arr::get($nft, 'image.cachedUrl'), + collectionWebsite: Arr::get($nft, 'contract.openSeaMetadata.externalUrl') ?? Arr::get($nft, 'raw.metadata.external_url'), + collectionDescription: Arr::get($nft, 'contract.openSeaMetadata.description'), collectionBannerImageUrl: $bannerImageUrl, - collectionBannerUpdatedAt: Arr::get($nft, 'contractMetadata.openSea.bannerImageUrl') ? Carbon::now() : null, - collectionOpenSeaSlug: Arr::get($nft, 'contractMetadata.openSea.collectionSlug'), + collectionBannerUpdatedAt: Arr::get($nft, 'contract.openSeaMetadata.bannerImageUrl') ? Carbon::now() : null, + collectionOpenSeaSlug: Arr::get($nft, 'contract.openSeaMetadata.collectionSlug'), collectionSocials: $socials, collectionSupply: $supply, name: $this->getNftName($nft), @@ -443,7 +444,7 @@ public function parseNft(array $nft, int $networkId, bool $convertTokenNumber = Carbon::now(), ) : null, traits: $this->extractTraits($nft), - mintedBlock: $nft['contractMetadata']['deployedBlockNumber'], + mintedBlock: $nft['contract']['deployedBlockNumber'], mintedAt: $mintTimestamp !== null ? Carbon::createFromTimestampMs($mintTimestamp) : null, hasError: ! empty($error), info: $nftInfo, @@ -592,19 +593,13 @@ private function getNftExtraAttributes(array $nft): array } /** - * This method extracts original asset URLs from the NFT data. - * originalRawUrl - Uri representing the location of the NFT's - * original metadata blob. - * originalUrl - Public gateway uri for the raw uri above. - * For more @see https://docs.alchemy.com/reference/getnfts - * * @param array $nft * @return array{originalRaw: string | null, original: string | null} */ private function tryExtractAssetUrls(array $nft): array { - $originalRaw = Arr::get($nft, 'media.0.raw'); - $original = Arr::get($nft, 'media.0.gateway'); + $originalRaw = Arr::get($nft, 'image.originalUrl'); + $original = Arr::get($nft, 'image.cachedUrl'); return [ 'originalRaw' => empty($originalRaw) || isBase64EncodedImage($originalRaw) ? null : $originalRaw, @@ -618,10 +613,10 @@ private function tryExtractAssetUrls(array $nft): array private function tryExtractImage(array $nft): ?string { $imageKeys = [ - 'media.0.thumbnail', - 'media.0.raw', - 'metadata.image', - 'contractMetadata.openSea.imageUrl', + 'image.thumbnailUrl', + 'image.originalUrl', + 'raw.metadata.image', + 'contract.openSeaMetadata.imageUrl', ]; foreach ($imageKeys as $imageKey) { @@ -641,7 +636,7 @@ private function tryExtractImage(array $nft): ?string private function getNftName(array $nft): ?string { // Intrinsic name has priority over any other name - $name = Arr::get($nft, 'title'); + $name = Arr::get($nft, 'name'); if (! empty($name)) { return $name; } @@ -656,7 +651,7 @@ private function getNftName(array $nft): ?string */ private function tryExtractFloorPrice(array $nft): ?string { - $floorPrice = Arr::get($nft, 'contractMetadata.openSea.floorPrice'); + $floorPrice = Arr::get($nft, 'contract.openSeaMetadata.floorPrice'); if (empty($floorPrice)) { return null; } @@ -671,7 +666,7 @@ private function tryExtractFloorPrice(array $nft): ?string private function getNftMintingDateProperty(array $nft): ?string { /** @var array $props */ - $props = Arr::get($nft, 'metadata.attributes', Arr::get($nft, 'metadata.properties', [])); + $props = Arr::get($nft, 'raw.metadata.attributes', Arr::get($nft, 'raw.metadata.properties', [])); return collect($props)->first( fn ($item) => ($item['trait_type'] ?? null) === 'date' @@ -685,7 +680,7 @@ private function getNftMintingDateProperty(array $nft): ?string private function extractTraits(array $nft): array { /** @var array $props */ - $props = Arr::get($nft, 'metadata.attributes', Arr::get($nft, 'metadata.properties', [])); + $props = Arr::get($nft, 'raw.metadata.attributes', Arr::get($nft, 'raw.metadata.properties', [])); return collect($props) ->filter(function ($item) { @@ -704,11 +699,6 @@ private function extractTraits(array $nft): array ->toArray(); } - private function getNftV2ApiUrl(): string - { - return 'https://'.self::$apiUrlPlaceholder.'.g.alchemy.com/nft/v2/'; - } - private function getNftV3ApiUrl(): string { return 'https://'.self::$apiUrlPlaceholder.'.g.alchemy.com/nft/v3/'; @@ -716,21 +706,21 @@ private function getNftV3ApiUrl(): string private function filterNft(mixed $nft, bool $filterError = true): bool { - if (Arr::get($nft, 'spamInfo.isSpam', false)) { + if (Arr::get($nft, 'contract.isSpam', false)) { return false; } - if (Arr::has($nft, 'error') && $filterError) { + if (Arr::get($nft, 'raw.error') && $filterError) { return false; } - if (! TokenType::compare(TokenType::Erc721, Arr::get($nft, 'id.tokenMetadata.tokenType', ''))) { + if (! TokenType::compare(TokenType::Erc721, Arr::get($nft, 'contract.tokenType', ''))) { return false; } // Only one has to exist, the missing one gets substituted $hasCollectionName = ! empty($this->collectionName($nft)); - $hasCollectionSymbol = ! empty(Arr::get($nft, 'contractMetadata.symbol')); + $hasCollectionSymbol = ! empty(Arr::get($nft, 'contract.symbol')); if (! $hasCollectionName && ! $hasCollectionSymbol) { return false; @@ -741,7 +731,7 @@ private function filterNft(mixed $nft, bool $filterError = true): bool private function collectionName(mixed $nft): ?string { - return Arr::get($nft, 'contractMetadata.name') ?? Arr::get($nft, 'contractMetadata.openSea.collectionName'); + return Arr::get($nft, 'contract.name') ?? Arr::get($nft, 'contract.openSeaMetadata.collectionName'); } /** diff --git a/tests/App/Console/Commands/LiveDumpNftsTest.php b/tests/App/Console/Commands/LiveDumpNftsTest.php index 0f8735434..4fbc93634 100644 --- a/tests/App/Console/Commands/LiveDumpNftsTest.php +++ b/tests/App/Console/Commands/LiveDumpNftsTest.php @@ -10,6 +10,7 @@ use App\Support\Facades\Mnemonic; use Illuminate\Console\Command; use Illuminate\Http\Client\Request; +use Illuminate\Support\Arr; use Illuminate\Support\Facades\Http; use Illuminate\Support\Facades\Storage; use Illuminate\Support\Str; @@ -19,7 +20,7 @@ if ($request->method() == 'GET') { $path = $request->toPsrRequest()->getUri()->getPath(); if (Str::contains($path, 'getNFTsForCollection')) { - return Http::response(fixtureData('alchemy.get_nfts_for_collection_last_page'), 200); + return Http::response(fixtureData('alchemy.get_nfts_for_contract'), 200); } } @@ -101,6 +102,9 @@ $this->artisan('nfts:live-dump --collection-index=0 --chain-id=1'); $liveDumps->each(fn ($liveDump) => expect($this->fakeFileSystem->exists($liveDump))->toBeTrue()); + + $dump = json_decode($this->fakeFileSystem->get($liveDumps[0])); + expect(Arr::get($dump, 'raw.metadata.image'))->toBe(null); }); it('should run only in non-production environments', function () { @@ -131,10 +135,10 @@ ->assertExitCode(Command::INVALID); }); -it('should continue continue from the given chunk', function () { +it('should continue from the given chunk', function () { $this->fakeFileSystem->put( 'collection-nfts/eth_0x4e1f41613c9084fdb9e34e11fae9412427480e56/nft-chunks/1.json', - json_encode(fixtureData('alchemy.get_nfts_for_collection')) + json_encode(fixtureData('alchemy.get_nfts_for_contract')) ); $this->artisan('nfts:live-dump --collection-index=0 --chain-id=1 --start-chunk-index=1'); diff --git a/tests/App/Console/Commands/LiveDumpWalletsTest.php b/tests/App/Console/Commands/LiveDumpWalletsTest.php index 2eda8c052..09051ebf6 100644 --- a/tests/App/Console/Commands/LiveDumpWalletsTest.php +++ b/tests/App/Console/Commands/LiveDumpWalletsTest.php @@ -18,8 +18,8 @@ Alchemy::fake(function (Request $request) { if ($request->method() == 'GET') { $path = $request->toPsrRequest()->getUri()->getPath(); - if (Str::endsWith($path, 'getNFTs')) { - return Http::response(fixtureData('alchemy.nfts'), 200); + if (Str::endsWith($path, 'getNFTsForOwner')) { + return Http::response(fixtureData('alchemy.nfts_for_owner_2'), 200); } } diff --git a/tests/App/Http/Client/Alchemy/AlchemyPendingRequestTest.php b/tests/App/Http/Client/Alchemy/AlchemyPendingRequestTest.php index c2455d799..b91a33804 100644 --- a/tests/App/Http/Client/Alchemy/AlchemyPendingRequestTest.php +++ b/tests/App/Http/Client/Alchemy/AlchemyPendingRequestTest.php @@ -49,8 +49,8 @@ it('should handle arrays in NFT descriptions', function () { Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*' => Http::sequence() - ->push(fixtureData('alchemy.nfts_array_description'), 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v3/*' => Http::sequence() + ->push(fixtureData('alchemy.nfts_for_owner'), 200), ]); $wallet = Wallet::factory()->create(); @@ -61,8 +61,8 @@ it('should increment default size for banner image if it is not null in parseNft', function () { Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*' => Http::sequence() - ->push(fixtureData('alchemy.nfts_array_description_with_banner'), 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v3/*' => Http::sequence() + ->push(fixtureData('alchemy.nfts_for_owner'), 200), ]); $wallet = Wallet::factory()->create(); @@ -88,7 +88,7 @@ $nfts->push($nft); Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*' => Http::response(fixtureData('alchemy.nft_batch_metadata'), 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v3/*' => Http::response(fixtureData('alchemy.nft_batch_metadata_2'), 200), ]); $fetchedNfts = Alchemy::nftMetadataBatch($nfts, $network); @@ -98,8 +98,8 @@ it('should add a flag in case of responses with errors', function () { Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*' => Http::sequence() - ->push(fixtureData('alchemy.nfts_array_with_error'), 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v3/*' => Http::sequence() + ->push(fixtureData('alchemy.nfts_for_owner'), 200), ]); $wallet = Wallet::factory()->create(); @@ -111,28 +111,28 @@ it('should not add a flag in case of valid responses', function () { Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*' => Http::sequence() - ->push(fixtureData('alchemy.nfts_array_valid'), 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v3/*' => Http::sequence() + ->push(fixtureData('alchemy.nfts_for_owner'), 200), ]); $wallet = Wallet::factory()->create(); $network = Network::polygon(); $collection = Alchemy::getWalletNfts($wallet, $network); - expect($collection->nfts[0]->hasError)->not->toBeTrue(); + expect($collection->nfts[1]->hasError)->not->toBeTrue(); }); it('should not filter nfts with errors if the flag is set as true', function () { Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*' => Http::sequence() - ->push(fixtureData('alchemy.nfts_array_with_error'), 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v3/*' => Http::sequence() + ->push(fixtureData('alchemy.nfts_for_owner'), 200), ]); $wallet = Wallet::factory()->create(); $network = Network::polygon(); $collection = Alchemy::getWalletNfts($wallet, $network); - expect($collection->nfts)->toHaveCount(1); + expect($collection->nfts)->toHaveCount(4); }); it('should filter nfts with errors by default', function () { @@ -150,18 +150,18 @@ $nfts->push($nft); Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*' => Http::response(fixtureData('alchemy.nft_batch_metadata_with_error'), 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v3/*' => Http::response(fixtureData('alchemy.nft_batch_metadata_2'), 200), ]); $fetchedNfts = Alchemy::nftMetadataBatch($nfts, $network); - expect($fetchedNfts->nfts)->toHaveCount(0); + expect($fetchedNfts->nfts)->toHaveCount(1); }); it('should return error field with METADATA_OUTDATED if parent metadata object is empty', function () { Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*' => Http::sequence() - ->push(fixtureData('alchemy.nfts_array_with_error_and_empty_metadata_object'), 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v3/*' => Http::sequence() + ->push(fixtureData('alchemy.nfts_for_owner'), 200), ]); $wallet = Wallet::factory()->create(); @@ -175,8 +175,8 @@ it('should return error field with METADATA_OUTDATED if metadata.metadata object is empty', function () { Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*' => Http::sequence() - ->push(fixtureData('alchemy.nfts_array_with_error_and_empty_metadata_metadata_object'), 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v3/*' => Http::sequence() + ->push(fixtureData('alchemy.nfts_for_owner'), 200), ]); $wallet = Wallet::factory()->create(); @@ -184,14 +184,14 @@ $collection = Alchemy::getWalletNfts($wallet, $network); - expect($collection->nfts[0]->hasError)->toBetrue(); - expect($collection->nfts[0]->info)->toBe(NftInfo::MetadataOutdated->value); + expect($collection->nfts[2]->hasError)->toBetrue(); + expect($collection->nfts[2]->info)->toBe(NftInfo::MetadataOutdated->value); }); it('should ignore arrays in trait values', function () { Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*' => Http::sequence() - ->push(fixtureData('alchemy.nfts_array_collection_array_traits'), 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v3/*' => Http::sequence() + ->push(fixtureData('alchemy.nfts_for_owner'), 200), ]); $wallet = Wallet::factory()->create(); @@ -199,13 +199,13 @@ $collection = Alchemy::getWalletNfts($wallet, $network); - expect($collection->nfts[0]->traits[1])->toContain('Tails'); + expect($collection->nfts[1]->traits[1])->toContain('Kick Kick Snare'); }); it('should handle unexpected trait values', function () { Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*' => Http::sequence() - ->push(fixtureData('alchemy.nfts_array_unexpected_traits'), 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v3/*' => Http::sequence() + ->push(fixtureData('alchemy.nfts_for_owner'), 200), ]); $wallet = Wallet::factory()->create(); @@ -213,7 +213,7 @@ $collection = Alchemy::getWalletNfts($wallet, $network); - expect(count($collection->nfts[0]->traits))->toBe(1); + expect(count($collection->nfts[3]->traits))->toBe(1); }); it('should fetch spam contracts', function () { diff --git a/tests/App/Jobs/FetchCollectionBannerBatchTest.php b/tests/App/Jobs/FetchCollectionBannerBatchTest.php index 154652774..b47eb7758 100644 --- a/tests/App/Jobs/FetchCollectionBannerBatchTest.php +++ b/tests/App/Jobs/FetchCollectionBannerBatchTest.php @@ -11,7 +11,7 @@ it('should fetch nft collection banner', function () { Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*/getContractMetadataBatch' => Http::response(fixtureData('alchemy.contract-metadata-batch'), 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v3/*/getContractMetadataBatch' => Http::response(fixtureData('alchemy.contract_metadata_batch'), 200), ]); $now = Carbon::now(); @@ -44,7 +44,7 @@ it('should skip updating banner if it is null', function () { Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*/getContractMetadataBatch' => Http::response(fixtureData('alchemy.contract-metadata-batch'), 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v3/*/getContractMetadataBatch' => Http::response(fixtureData('alchemy.contract_metadata_batch'), 200), ]); $network = Network::polygon(); diff --git a/tests/App/Jobs/FetchCollectionMetadataJobTest.php b/tests/App/Jobs/FetchCollectionMetadataJobTest.php index 94e373606..f155dab86 100644 --- a/tests/App/Jobs/FetchCollectionMetadataJobTest.php +++ b/tests/App/Jobs/FetchCollectionMetadataJobTest.php @@ -11,7 +11,7 @@ it('should update nft collection metadata', function () { Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*/getContractMetadataBatch' => Http::response(fixtureData('alchemy.contract-metadata-batch'), 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v3/*/getContractMetadataBatch' => Http::response(fixtureData('alchemy.contract_metadata_batch'), 200), ]); $now = Carbon::now(); @@ -21,7 +21,7 @@ /** @var Collection $collection */ $collection = Collection::factory()->create([ - 'address' => '0xe785e82358879f061bc3dcac6f0444462d4b5330', + 'address' => '0xe785E82358879F061BC3dcAC6f0444462D4b5330', 'network_id' => $network->id, 'supply' => 8000, 'minted_block' => 12907765, @@ -43,19 +43,20 @@ ->and($collection->description)->toBe('World of Women is a collection of 10,000 NFTs.') ->and($updatedAt->timestamp)->toBe($now->timestamp) ->and($collection->image())->toBe('image-url') + ->and($collection->openSeaSlug())->toBe('world-of-women-nft') ->and($collection->banner())->toBe('https://i.seadn.io/gae/GHhptRLebBOWOy8kfXpYCVqsqdes-1-6I_jbuRnGTHHW6TD63CtciH75Dotfu2u8v6EmkWt-tjhkFRVLxRUwgMfKqqy5W24AolJayeo?w=500&auto=format'); }); it('should skip updating column if metadata is null', function () { Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*/getContractMetadataBatch' => Http::response(fixtureData('alchemy.contract-metadata-batch'), 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v3/*/getContractMetadataBatch' => Http::response(fixtureData('alchemy.contract_metadata_batch'), 200), ]); $network = Network::polygon()->firstOrFail(); /** @var Collection $collection */ $collection = Collection::factory()->create([ - 'address' => '0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d', + 'address' => '0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D', 'network_id' => $network->id, 'supply' => 8000, 'floor_price' => 80000000, diff --git a/tests/App/Jobs/FetchCollectionNftsTest.php b/tests/App/Jobs/FetchCollectionNftsTest.php index 8eed4fcf3..c7dfd1974 100644 --- a/tests/App/Jobs/FetchCollectionNftsTest.php +++ b/tests/App/Jobs/FetchCollectionNftsTest.php @@ -16,7 +16,7 @@ Bus::fake(); Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*/getNFTsForCollection?contractAddress=*&withMetadata=true&limit=100' => Http::response(fixtureData('alchemy.get_nfts_for_collection'), 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v3/*/getNFTsForContract?contractAddress=*&withMetadata=true&limit=100' => Http::response(fixtureData('alchemy.get_nfts_for_contract'), 200), ]); $network = Network::polygon(); @@ -32,8 +32,8 @@ Bus::assertDispatched(FetchCollectionNfts::class, fn ($job) => $job->startToken === '0x0000000000000000000000000000000000000000000000000000000000000064'); - expect(Nft::count())->toBe(100); - expect(NftTrait::count())->toBe(585); + expect(Nft::count())->toBe(3); + expect(NftTrait::count())->toBe(30); expect($collection->fresh()->extra_attributes->get('nft_last_fetched_at'))->not->toBeNull(); }); @@ -41,25 +41,25 @@ it('should fetch nft collections without triggering another job if no next token', function () { Bus::fake(); - $response = fixtureData('alchemy.get_nfts_for_collection'); + $response = fixtureData('alchemy.get_nfts_for_contract'); - unset($response['nextToken']); + unset($response['pageKey']); Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*/getNFTsForCollection?contractAddress=*&withMetadata=true&limit=100' => Http::response($response, 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v3/*/getNFTsForContract?contractAddress=*&withMetadata=true&limit=100' => Http::response($response, 200), ]); $network = Network::polygon(); $collection = Collection::factory()->create([ - 'address' => '0x23581767a106ae21c074b2276d25e5c3e136a68b', + 'address' => '0xe785E82358879F061BC3dcAC6f0444462D4b5330', 'network_id' => $network->id, 'last_indexed_token_number' => null, ]); (new FetchCollectionNfts($collection))->handle(); - expect($collection->fresh()->last_indexed_token_number)->toBe('99'); + expect($collection->fresh()->last_indexed_token_number)->toBe('2'); Bus::assertNotDispatched(FetchCollectionNfts::class); }); @@ -79,9 +79,8 @@ }); it('should not fetch nfts if the collection address is blacklisted', function () { - Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*/getNFTsForCollection?contractAddress=*&withMetadata=true&limit=100' => Http::response(fixtureData('alchemy.get_nfts_for_blacklisted_collection'), 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v3/*/getNFTsForContract?contractAddress=*&withMetadata=true&limit=100' => Http::response(fixtureData('alchemy.get_nfts_for_contract_blacklisted'), 200), ]); $network = Network::polygon(); @@ -106,7 +105,7 @@ Bus::fake(); Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*/getNFTsForCollection?contractAddress=*&withMetadata=true&limit=100' => Http::response(fixtureData('alchemy.get_nfts_for_collection'), 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v3/*/getNFTsForContract?contractAddress=*&withMetadata=true&limit=100' => Http::response(fixtureData('alchemy.get_nfts_for_contract'), 200), ]); $network = Network::polygon(); @@ -124,15 +123,15 @@ (new FetchCollectionNfts($collection))->handle(); - expect(Nft::count())->toBe(100); - expect(NftTrait::count())->toBe(585); + expect(Nft::count())->toBe(3); + expect(NftTrait::count())->toBe(30); }); it('should not store nfts if the collection supply is higher than COLLECTIONS_MAX_CAP', function () { Bus::fake(); Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*/getNFTsForCollection?contractAddress=*&withMetadata=true&limit=100' => Http::response(fixtureData('alchemy.get_nfts_for_collection_exceeding_max_cap_supply'), 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v3/*/getNFTsForContract?contractAddress=*&withMetadata=true&limit=100' => Http::response(fixtureData('alchemy.get_nfts_for_contract_exceeding_max_cap_supply'), 200), ]); $network = Network::polygon(); @@ -154,7 +153,7 @@ it('does not store NFTs for collections that do not report a total supply', function () { Bus::fake(); - Alchemy::fake(Http::response(fixtureData('alchemy.get_nfts_for_collection_without_total_supply'), 200)); + Alchemy::fake(Http::response(fixtureData('alchemy.get_nfts_for_contract_without_total_supply'), 200)); $network = Network::polygon(); $collection = Collection::factory()->create([ @@ -176,17 +175,17 @@ Bus::fake(); Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*/getNFTsForCollection?contractAddress=*&withMetadata=true&limit=100' => Http::response(fixtureData('alchemy.get_nfts_for_collection'), 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v3/*/getNFTsForContract?contractAddress=*&withMetadata=true&limit=100' => Http::response(fixtureData('alchemy.get_nfts_for_contract'), 200), ]); $network = Network::polygon(); $collection = Collection::factory()->create([ - 'address' => '0x23581767a106ae21c074b2276d25e5c3e136a68b', + 'address' => '0xe785E82358879F061BC3dcAC6f0444462D4b5330', 'network_id' => $network->id, ]); (new FetchCollectionNfts($collection))->handle(); - expect($collection->fresh()->last_indexed_token_number)->toBe('99'); + expect($collection->fresh()->last_indexed_token_number)->toBe('2'); }); it('skips potentially full collections', function () { diff --git a/tests/App/Jobs/FetchWalletNftsTest.php b/tests/App/Jobs/FetchWalletNftsTest.php index f251b5d19..56a7f04ad 100644 --- a/tests/App/Jobs/FetchWalletNftsTest.php +++ b/tests/App/Jobs/FetchWalletNftsTest.php @@ -29,7 +29,7 @@ it('should fetch nfts for wallet', function () { Bus::fake(); - Alchemy::fake(Http::response(fixtureData('alchemy.nfts'), 200)); + Alchemy::fake(Http::response(fixtureData('alchemy.nfts_for_owner_2'), 200)); $network = Network::polygon(); $wallet = Wallet::factory()->create(); @@ -39,8 +39,8 @@ (new FetchWalletNfts($wallet, $network))->handle(); - $this->assertDatabaseCount('collections', 42); - $this->assertDatabaseCount('nfts', 94); + $this->assertDatabaseCount('collections', 3); + $this->assertDatabaseCount('nfts', 4); expect(Collection::whereNotNull('last_indexed_token_number')->count())->toBe(0); }); @@ -65,7 +65,7 @@ it('should fetch nfts for wallet and dispatch floor price job', function () { Bus::fake(); - Alchemy::fake(Http::response(fixtureData('alchemy.nfts'), 200)); + Alchemy::fake(Http::response(fixtureData('alchemy.nfts_for_owner_2'), 200)); $network = Network::polygon(); $wallet = Wallet::factory()->create(); @@ -77,10 +77,10 @@ (new FetchWalletNfts($wallet, $network))->handle(); - $this->assertDatabaseCount('collections', 42); - $this->assertDatabaseCount('nfts', 94); + $this->assertDatabaseCount('collections', 3); + $this->assertDatabaseCount('nfts', 4); - Bus::assertDispatchedTimes(FetchCollectionFloorPrice::class, 42); + Bus::assertDispatchedTimes(FetchCollectionFloorPrice::class, 3); }); it('should fetch nfts for wallet and skip floor price job if already present', function () { @@ -680,8 +680,8 @@ function (GalleryNftsChanged $notification) use ($wallet) { Alchemy::fake([ '*' => Http::sequence() - ->push(fixtureData('alchemy.nfts')) - ->push(fixtureData('alchemy.nfts')), + ->push(fixtureData('alchemy.nfts_for_owner_2')) + ->push(fixtureData('alchemy.nfts_for_owner_2')), ]); [$user1, $user2] = User::factory(2)->create(); @@ -707,12 +707,12 @@ function (GalleryNftsChanged $notification) use ($wallet) { // Fetch same NFTs with a different wallet (new FetchWalletNfts($wallet1, $network))->handle(); - $this->assertDatabaseCount('collections', 42); - $this->assertDatabaseCount('nfts', 94); + $this->assertDatabaseCount('collections', 3); + $this->assertDatabaseCount('nfts', 4); $this->assertDatabaseCount('galleries_dirty', 0); expect($galleryCache->nftsCount())->toBe(0) - ->and($userCache->nftsCount())->toBe(94); + ->and($userCache->nftsCount())->toBe(4); $nfts = Nft::query()->get(); $nfts->each(function ($nft) use ($gallery) { @@ -721,12 +721,12 @@ function (GalleryNftsChanged $notification) use ($wallet) { $this->assertDatabaseCount('galleries_dirty', 1); expect($galleryCache->nftsCount())->toBe(0) - ->and($userCache->nftsCount())->toBe(94); + ->and($userCache->nftsCount())->toBe(4); GalleryCache::clearAllDirty(); - expect($galleryCache->nftsCount())->toBe(94) - ->and($userCache->nftsCount())->toBe(94); + expect($galleryCache->nftsCount())->toBe(4) + ->and($userCache->nftsCount())->toBe(4); (new FetchWalletNfts($wallet2, $network))->handle(); @@ -759,27 +759,27 @@ function (GalleryNftsChanged $notification) use ($wallet) { '*' => Http::response([ 'ownedNfts' => [ [ - 'id' => [ - 'tokenId' => '0x0000000000000000000000000000000000000000000000000000000000000c92', - 'tokenMetadata' => ['tokenType' => 'ERC721'], - ], - 'contract' => ['address' => '0xd9b78a2f1dafc8bb9c60961790d2beefebee56f4'], - 'contractMetadata' => [ - 'name' => 'tiny dinos', 'symbol' => 'dino', + 'tokenId' => '0x0000000000000000000000000000000000000000000000000000000000000c92', + 'name' => 'tiny dinos #3218', + 'contract' => [ + 'address' => '0xd9b78a2f1dafc8bb9c60961790d2beefebee56f4', + 'tokenType' => 'ERC721', + 'name' => 'tiny dinos', + 'symbol' => 'dino', 'deployedBlockNumber' => 10000, 'totalSupply' => 10, - 'openSea' => [ + 'openSeaMetadata' => [ 'imageUrl' => 'https://opensea.com/image.jpg', ], ], - 'media' => [ - [ - 'gateway' => 'https://gateway.com/image.jpg', - 'raw' => 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAREDACTED', - 'thumbnail' => 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAREDACTED', - ], + 'image' => [ + 'cachedUrl' => 'https://gateway.com/image.jpg', + 'originalUrl' => 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAREDACTED', + 'thumbnailUrl' => 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAREDACTED', + ], + 'raw' => [ + 'error' => null, ], - 'title' => 'tiny dinos #3218', ], ], ], 200), @@ -808,27 +808,24 @@ function (GalleryNftsChanged $notification) use ($wallet) { '*' => Http::response([ 'ownedNfts' => [ [ - 'id' => [ - 'tokenId' => '0x0000000000000000000000000000000000000000000000000000000000000c92', - 'tokenMetadata' => ['tokenType' => 'ERC721'], - ], - 'contract' => ['address' => '0xd9b78a2f1dafc8bb9c60961790d2beefebee56f4'], - 'contractMetadata' => [ - 'name' => 'tiny dinos', 'symbol' => 'dino', + 'tokenId' => '0x0000000000000000000000000000000000000000000000000000000000000c92', + 'contract' => [ + 'address' => '0xd9b78a2f1dafc8bb9c60961790d2beefebee56f4', + 'tokenType' => 'ERC721', + 'name' => 'tiny dinos', + 'symbol' => 'dino', 'deployedBlockNumber' => 10000, 'totalSupply' => 10, - 'openSea' => [ + 'openSeaMetadata' => [ 'imageUrl' => null, ], ], - 'media' => [ - [ - 'gateway' => 'https://gateway.com/image.jpg', - 'raw' => 'https://raw.com/image.jpg', - 'thumbnail' => 'https://thumb.com/image.jpg', - ], + 'image' => [ + 'cachedUrl' => 'https://gateway.com/image.jpg', + 'originalUrl' => 'https://raw.com/image.jpg', + 'thumbnailUrl' => 'https://thumb.com/image.jpg', ], - 'title' => 'tiny dinos #3218', + 'name' => 'tiny dinos #3218', ], ], ], 200), @@ -859,23 +856,23 @@ function (GalleryNftsChanged $notification) use ($wallet) { '*' => Http::response([ 'ownedNfts' => [ [ - 'id' => ['tokenId' => '0x0000000000000000000000000000000000000000000000000000000000000c92', 'tokenMetadata' => ['tokenType' => 'ERC721']], - 'contract' => ['address' => '0xd9b78a2f1dafc8bb9c60961790d2beefebee56f4'], - 'contractMetadata' => [ - 'name' => 'tiny dinos', 'symbol' => 'dino', + 'tokenId' => '0x000000000000000000000000000000000000000000000000000000000000092', + 'contract' => [ + 'address' => '0xd9b78a2f1dafc8bb9c60961790d2beefebee56f4', + 'tokenType' => 'ERC721', + 'name' => 'tiny dinos', + 'symbol' => 'dino', 'deployedBlockNumber' => 10000, 'totalSupply' => 10, - 'openSea' => [ + 'openSeaMetadata' => [ 'imageUrl' => null, ], ], - 'media' => [ - [ - 'gateway' => 'https://gateway.com/image.jpg', - 'thumbnail' => null, - ], + 'image' => [ + 'cachedUrl' => 'https://gateway.com/image.jpg', + 'thumbnailUrl' => null, ], - 'title' => 'tiny dinos #3218', + 'name' => 'tiny dinos #3218', ], ], ], 200), @@ -906,27 +903,23 @@ function (GalleryNftsChanged $notification) use ($wallet) { '*' => Http::response([ 'ownedNfts' => [ [ - 'id' => [ - 'tokenId' => '0x0000000000000000000000000000000000000000000000000000000000000c92', - 'tokenMetadata' => ['tokenType' => 'ERC721'], - ], - 'contract' => ['address' => '0xd9b78a2f1dafc8bb9c60961790d2beefebee56f4'], - 'contractMetadata' => [ + 'tokenId' => '0x0000000000000000000000000000000000000000000000000000000000000c92', + 'contract' => [ + 'tokenType' => 'ERC721', + 'address' => '0xd9b78a2f1dafc8bb9c60961790d2beefebee56f4', 'name' => 'tiny dinos', 'symbol' => 'dino', 'deployedBlockNumber' => 10000, 'totalSupply' => 10, - 'openSea' => [ + 'openSeaMetadata' => [ 'imageUrl' => null, ], ], - 'media' => [ - [ - 'gateway' => 'https://gateway.com/image.jpg', - 'raw' => 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAREDACTED', - 'thumbnail' => null, - ], + 'image' => [ + 'cachedUrl' => 'https://gateway.com/image.jpg', + 'originalUrl' => 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAREDACTED', + 'thumbnailUrl' => null, ], - 'title' => 'tiny dinos #3218', + 'name' => 'tiny dinos #3218', ], ], ], 200), @@ -939,13 +932,7 @@ function (GalleryNftsChanged $notification) use ($wallet) { $nft = Nft::firstWhere('name', 'tiny dinos #3218'); - expect($nft->extra_attributes->get('images'))->toBe([ - 'thumb' => null, - 'small' => null, - 'large' => null, - 'originalRaw' => null, - 'original' => 'https://gateway.com/image.jpg', - ]); + expect($nft->extra_attributes->get('images')['originalRaw'])->toBe(null); }); it('should extract social details from opensea', function () { @@ -955,28 +942,24 @@ function (GalleryNftsChanged $notification) use ($wallet) { '*' => Http::response([ 'ownedNfts' => [ [ - 'id' => [ - 'tokenId' => '0x0000000000000000000000000000000000000000000000000000000000000c92', - 'tokenMetadata' => ['tokenType' => 'ERC721'], - ], - 'contract' => ['address' => '0xd9b78a2f1dafc8bb9c60961790d2beefebee56f4'], - 'contractMetadata' => [ + 'tokenId' => '0x0000000000000000000000000000000000000000000000000000000000000c92', + 'contract' => [ + 'address' => '0xd9b78a2f1dafc8bb9c60961790d2beefebee56f4', + 'tokenType' => 'ERC721', 'name' => 'tiny dinos', 'symbol' => 'dino', 'totalSupply' => 10, 'deployedBlockNumber' => 10000, - 'openSea' => [ + 'openSeaMetadata' => [ 'imageUrl' => null, 'twitterUsername' => 'testuser', 'discordUrl' => 'https://discord.gg/testuser', ], ], - 'media' => [ - [ - 'gateway' => 'https://gateway.com/image.jpg', - 'thumbnail' => null, - ], + 'image' => [ + 'cachedUrl' => 'https://gateway.com/image.jpg', + 'thumbnailUrl' => null, ], - 'title' => 'tiny dinos #3218', + 'name' => 'tiny dinos #3218', ], ], ], 200), @@ -989,14 +972,7 @@ function (GalleryNftsChanged $notification) use ($wallet) { $nft = Nft::firstWhere('name', 'tiny dinos #3218'); - expect($nft->extra_attributes->get('images'))->toBe([ - 'thumb' => null, - 'small' => null, - 'large' => null, - 'originalRaw' => null, - 'original' => 'https://gateway.com/image.jpg', - ]) - ->and($nft->extra_attributes->get('socials'))->toBeNull(); + expect($nft->extra_attributes->get('socials'))->toBeNull(); $collection = $nft->collection; @@ -1013,23 +989,22 @@ function (GalleryNftsChanged $notification) use ($wallet) { '*' => Http::response([ 'ownedNfts' => [ [ - 'id' => ['tokenId' => '0x0000000000000000000000000000000000000000000000000000000000000c92', 'tokenMetadata' => ['tokenType' => 'ERC721']], - 'contract' => ['address' => '0xd9b78a2f1dafc8bb9c60961790d2beefebee56f4'], - 'contractMetadata' => [ + 'tokenId' => '0x0000000000000000000000000000000000000000000000000000000000000c92', + 'contract' => [ + 'tokenType' => 'ERC721', + 'address' => '0xd9b78a2f1dafc8bb9c60961790d2beefebee56f4', 'name' => 'tiny dinos', 'symbol' => 'dino', 'totalSupply' => 10, 'deployedBlockNumber' => 10000, - 'openSea' => [ + 'openSeaMetadata' => [ 'description' => 'This is a sample collection.', ], ], - 'media' => [ - [ - 'gateway' => 'https://gateway.com/image.jpg', - 'thumbnail' => null, - ], + 'image' => [ + 'cachedUrl' => 'https://gateway.com/image.jpg', + 'thumbnailUrl' => null, ], - 'title' => 'tiny dinos #3218', + 'name' => 'tiny dinos #3218', ], ], ], 200), @@ -1052,9 +1027,10 @@ function (GalleryNftsChanged $notification) use ($wallet) { '*' => Http::response([ 'ownedNfts' => [ [ - 'id' => ['tokenId' => '0x0000000000000000000000000000000000000000000000000000000000000c92', 'tokenMetadata' => ['tokenType' => 'ERC721']], - 'contract' => ['address' => '0xd9b78a2f1dafc8bb9c60961790d2beefebee56f4'], - 'contractMetadata' => [ + 'tokenId' => '0x0000000000000000000000000000000000000000000000000000000000000c92', + 'contract' => [ + 'tokenType' => 'ERC721', + 'address' => '0xd9b78a2f1dafc8bb9c60961790d2beefebee56f4', 'name' => 'tiny dinos', 'symbol' => 'dino', 'deployedBlockNumber' => 10000, 'totalSupply' => 10, @@ -1062,27 +1038,27 @@ function (GalleryNftsChanged $notification) use ($wallet) { 'imageUrl' => null, ], ], - 'media' => [ - [ - 'gateway' => 'https://gateway.com/image.jpg', - 'thumbnail' => 'https://thumb.com/image.jpg', - ], + 'image' => [ + 'cachedUrl' => 'https://gateway.com/image.jpg', + 'thumbnailUrl' => 'https://thumb.com/image.jpg', ], - 'title' => 'tiny dinos #3218', - 'metadata' => [ - 'attributes' => [ - [ - 'value' => 'Slang', - 'trait_type' => 'Background', - ], - [ - 'value' => 35, - 'trait_type' => 'Soy %', - 'display_type' => 'number', - ], - [ - 'value' => '2022-12-01 00:00:00', - 'trait_type' => 'Creation Date', + 'name' => 'tiny dinos #3218', + 'raw' => [ + 'metadata' => [ + 'attributes' => [ + [ + 'value' => 'Slang', + 'trait_type' => 'Background', + ], + [ + 'value' => 35, + 'trait_type' => 'Soy %', + 'display_type' => 'number', + ], + [ + 'value' => '2022-12-01 00:00:00', + 'trait_type' => 'Creation Date', + ], ], ], ], @@ -1155,45 +1131,46 @@ function getTestNfts($length = 3, $offset = 0, $withCursor = false): array { $nfts = [ [ - 'id' => ['tokenId' => '1', 'tokenMetadata' => ['tokenType' => 'ERC721']], - 'contract' => ['address' => '0x0053399124f0cbb46d2cbacd8a89cf0599974963'], - 'contractMetadata' => [ + 'tokenId' => '1', + 'contract' => [ + 'tokenType' => 'ERC721', + 'address' => '0x0053399124f0cbb46d2cbacd8a89cf0599974963', 'deployedBlockNumber' => 10000, 'totalSupply' => 10, - 'name' => 'tiny dinos', 'symbol' => 'dino', - 'openSea' => [ + 'name' => 'tiny dinos', + 'symbol' => 'dino', + 'openSeaMetadata' => [ 'floorPrice' => 0.0589, ], ], - 'title' => 'tiny dinos #3218', ], [ - 'id' => ['tokenId' => '2', 'tokenMetadata' => ['tokenType' => 'ERC721']], - 'contract' => ['address' => '0x0053399124f0cbb46d2cbacd8a89cf0599974963'], - 'contractMetadata' => [ + 'tokenId' => '2', + 'contract' => [ + 'address' => '0x0053399124f0cbb46d2cbacd8a89cf0599974963', + 'tokenType' => 'ERC721', 'deployedBlockNumber' => 10000, 'totalSupply' => 10, 'name' => 'tiny dinos', 'symbol' => 'dino', - 'openSea' => [ + 'openSeaMetadata' => [ 'floorPrice' => 0.0589, ], ], - 'title' => 'tiny dinos #3218', ], [ - 'id' => ['tokenId' => '1', 'tokenMetadata' => ['tokenType' => 'ERC721']], - 'contract' => ['address' => '0x2253399124f0cbb46d2cbacd8a89cf0599974963'], - 'contractMetadata' => [ + 'tokenId' => '1', + 'contract' => [ + 'address' => '0x2253399124f0cbb46d2cbacd8a89cf0599974963', + 'tokenType' => 'ERC721', 'deployedBlockNumber' => 10000, 'totalSupply' => 10, 'name' => 'tiny dinos', 'symbol' => 'dino', - 'openSea' => [ + 'openSeaMetadata' => [ 'floorPrice' => 0.0589, ], ], - 'title' => 'tiny dinos #3218', ], ]; @@ -1206,7 +1183,7 @@ function getTestNfts($length = 3, $offset = 0, $withCursor = false): array it('should fetch nfts for wallet and keep previous collections last indexed token number', function () { Bus::fake(); - Alchemy::fake(Http::response(fixtureData('alchemy.nfts'), 200)); + Alchemy::fake(Http::response(fixtureData('alchemy.nfts_for_owner_2'), 200)); $network = Network::polygon(); $wallet = Wallet::factory()->create(); @@ -1224,8 +1201,8 @@ function getTestNfts($length = 3, $offset = 0, $withCursor = false): array (new FetchWalletNfts($wallet, $network))->handle(); - $this->assertDatabaseCount('collections', 42); - $this->assertDatabaseCount('nfts', 94); + $this->assertDatabaseCount('collections', 4); + $this->assertDatabaseCount('nfts', 4); expect(Collection::whereNotNull('last_indexed_token_number')->count())->toBe(1); diff --git a/tests/App/Jobs/RefreshNftMetadataTest.php b/tests/App/Jobs/RefreshNftMetadataTest.php index 2b9874982..66b8b9fca 100644 --- a/tests/App/Jobs/RefreshNftMetadataTest.php +++ b/tests/App/Jobs/RefreshNftMetadataTest.php @@ -33,7 +33,7 @@ expect(Nft::whereNotNull('metadata_fetched_at')->get())->toHaveCount(0); Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*' => Http::response(fixtureData('alchemy.nft_batch_metadata'), 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v3/*' => Http::response(fixtureData('alchemy.nft_batch_metadata_2'), 200), ]); (new RefreshNftMetadata($collection))->handle(app(AlchemyWeb3DataProvider::class)); @@ -59,7 +59,7 @@ expect(Nft::whereNotNull('metadata_fetched_at')->get())->toHaveCount(0); Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*' => Http::response(fixtureData('alchemy.nft_batch_metadata'), 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v2/*' => Http::response(fixtureData('alchemy.nft_batch_metadata_2'), 200), ]); (new RefreshNftMetadata($collection))->handle(app(AlchemyWeb3DataProvider::class)); diff --git a/tests/App/Services/Web3/Alchemy/AlchemyWeb3DataProviderTest.php b/tests/App/Services/Web3/Alchemy/AlchemyWeb3DataProviderTest.php index 9a8ae35b6..c79eb0b47 100644 --- a/tests/App/Services/Web3/Alchemy/AlchemyWeb3DataProviderTest.php +++ b/tests/App/Services/Web3/Alchemy/AlchemyWeb3DataProviderTest.php @@ -138,7 +138,7 @@ it('should getWalletNfts', function () { Alchemy::fake([ - '*' => Http::response(fixtureData('alchemy.nfts'), 200), + '*' => Http::response(fixtureData('alchemy.nfts_for_owner_2'), 200), ]); $network = Network::polygon(); @@ -149,9 +149,9 @@ $tokens = $provider->getWalletNfts($wallet, $network)->nfts; expect($tokens)->toBeInstanceOf(Collection::class) - ->and($tokens)->toHaveCount(94) + ->and($tokens)->toHaveCount(4) ->and($tokens[0])->toBeInstanceOf(Web3NftData::class) - ->and($tokens[0]->tokenAddress)->toBe('0x0631cc561618ee4fa142e502c5f5ab9fcc2aa90c') + ->and($tokens[0]->tokenAddress)->toBe('0x684E4ED51D350b4d76A3a07864dF572D24e6dC4c') ->and($tokens[2]->floorPrice) ->toBeInstanceOf(Web3NftCollectionFloorPrice::class) ->and($tokens[2]->floorPrice->price)->toEqual('3000000000000000') @@ -160,7 +160,7 @@ it('should getNftMetadata', function () { Alchemy::fake([ - 'https://polygon-mainnet.g.alchemy.com/nft/v2/*' => Http::response(fixtureData('alchemy.nft_batch_metadata'), 200), + 'https://polygon-mainnet.g.alchemy.com/nft/v3/*' => Http::response(fixtureData('alchemy.nft_batch_metadata_2'), 200), ]); $user = createUser(); @@ -181,12 +181,12 @@ expect($tokens)->toBeInstanceOf(Collection::class) ->and($tokens)->toHaveCount(1) ->and($tokens[0])->toBeInstanceOf(Web3NftData::class) - ->and($tokens[0]->tokenAddress)->toBe('0x0e33fd2db4f140dca8f65671c40e36f8fd648fff'); + ->and($tokens[0]->tokenAddress)->toBe('0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D'); }); it('should extract nft images', function () { Alchemy::fake([ - '*' => Http::response(fixtureData('alchemy.nfts_media'), 200), + '*' => Http::response(fixtureData('alchemy.nfts_for_owner_2'), 200), ]); $network = Network::polygon(); @@ -196,13 +196,13 @@ $tokens = $provider->getWalletNfts($wallet, $network)->nfts; expect($tokens)->toBeInstanceOf(Collection::class) - ->and($tokens)->toHaveCount(2) + ->and($tokens)->toHaveCount(4) ->and($tokens)->every(fn ($token) => expect($token->extraAttributes['images'])->toHaveKeys(['thumb', 'small', 'large', 'original', 'originalRaw'])); }); it('should extract nft traits', function () { Alchemy::fake([ - '*' => Http::response(fixtureData('alchemy.nfts_traits'), 200), + '*' => Http::response(fixtureData('alchemy.nfts_for_owner_2'), 200), ]); $network = Network::polygon(); @@ -212,23 +212,22 @@ $tokens = $provider->getWalletNfts($wallet, $network)->nfts; expect($tokens)->toBeInstanceOf(Collection::class) - ->and($tokens)->toHaveCount(3) + ->and($tokens)->toHaveCount(4) ->and($tokens[0]->traits)->toEqual([ - ['name' => 'Character', 'value' => 'Randy H.', 'displayType' => TraitDisplayType::Property], - ['name' => 'Skin', 'value' => 'OG Blue', 'displayType' => TraitDisplayType::Property], - ['name' => 'Mouth Creature', 'value' => 'Piquín Pink', 'displayType' => TraitDisplayType::Property], - ]) - ->and($tokens[1]->traits)->toEqual([ - ['name' => 'Wheel Fairing', 'value' => 'Type 4', 'displayType' => TraitDisplayType::Property], - ['name' => 'Windshield', 'value' => 'Type 1', 'displayType' => TraitDisplayType::Property], - ['name' => 'Speedometer', 'value' => 'Mechanical', 'displayType' => TraitDisplayType::Property], - ['name' => 'Speed', 'value' => '26', 'displayType' => TraitDisplayType::BoostPercentage], - ['name' => 'Bottom Fairing', 'value' => 'Type 4', 'displayType' => TraitDisplayType::Property], - ['name' => 'Score', 'value' => '8', 'displayType' => TraitDisplayType::Stat], + ['name' => 'Faction', 'value' => 'Human', 'displayType' => TraitDisplayType::Property], + ['name' => 'Background', 'value' => 'Flamingo Pink', 'displayType' => TraitDisplayType::Property], ]) ->and($tokens[2]->traits)->toEqual([ - ['name' => 'Background', 'value' => 'Slang', 'displayType' => TraitDisplayType::Property], - ['name' => 'Soy %', 'value' => '35', 'displayType' => TraitDisplayType::Property], + ['name' => 'Color', 'value' => 'Navy', 'displayType' => TraitDisplayType::Property], + ['name' => 'Face', 'value' => 'Core', 'displayType' => TraitDisplayType::Property], + ['name' => 'AUX', 'value' => 'Patrician', 'displayType' => TraitDisplayType::Property], + ['name' => 'Torso', 'value' => 'Kimono', 'displayType' => TraitDisplayType::Property], + + ]) + ->and($tokens[3]->traits)->toEqual([ + ['name' => 'shirt', 'value' => 'hoodie purple', 'displayType' => TraitDisplayType::Property], + ['name' => 'face', 'value' => 'ninja red', 'displayType' => TraitDisplayType::Property], + ['name' => 'tier', 'value' => 'cool_1', 'displayType' => TraitDisplayType::Property], ]); }); @@ -380,79 +379,108 @@ '*' => Http::sequence() ->push(['ownedNfts' => [ [ - 'id' => ['tokenId' => '1', 'tokenMetadata' => ['tokenType' => 'ERC721']], - 'contractMetadata' => [ - 'name' => 'SPAM Collection', 'symbol' => 'SPAM', + 'tokenId' => '1', + 'contract' => [ + 'tokenType' => 'ERC721', + 'name' => 'SPAM Collection', + 'symbol' => 'SPAM', 'deployedBlockNumber' => 10000, + 'address' => '0x0053399124f0cbb46d2cbacd8a89cf0599974963', + 'isSpam' => true, ], - 'contract' => ['address' => '0x0053399124f0cbb46d2cbacd8a89cf0599974963'], - 'spamInfo' => ['isSpam' => true], - 'title' => 'SPAM', + 'name' => 'SPAM', ], [ - 'id' => ['tokenId' => '2', 'tokenMetadata' => ['tokenType' => 'ERC721']], - 'contract' => ['address' => '0x0053399124f0cbb46d2cbacd8a89cf0599974963'], - 'title' => 'no collection name/symbol', - 'contractMetadata' => [ - 'name' => '', 'symbol' => '', + 'tokenId' => '2', + 'name' => 'no collection name/symbol', + 'contract' => [ + 'tokenType' => 'ERC721', + 'address' => '0x0053399124f0cbb46d2cbacd8a89cf0599974963', + 'name' => '', + 'symbol' => '', 'deployedBlockNumber' => 10000, ], ], [ - 'id' => ['tokenId' => '3', 'tokenMetadata' => ['tokenType' => 'ERC721']], - 'contract' => ['address' => '0x0053399124f0cbb46d2cbacd8a89cf0599974963'], - 'contractMetadata' => [ - 'name' => 'SPAM Collection', 'symbol' => 'SPAM', + 'tokenId' => '3', + 'contract' => [ + 'tokenType' => 'ERC721', + 'name' => 'SPAM Collection', + 'symbol' => 'SPAM', 'deployedBlockNumber' => 10000, + 'address' => '0x0053399124f0cbb46d2cbacd8a89cf0599974963', ], - 'title' => 'NFT WITH ERROR', + 'name' => 'NFT WITH ERROR', 'error' => 'some error', ], [ - 'id' => ['tokenId' => '4', 'tokenMetadata' => ['tokenType' => 'ERC721']], - 'contract' => ['address' => '0x0053399124f0cbb46d2cbacd8a89cf0599974963'], - 'contractMetadata' => [ - 'name' => 'Best Collection', 'symbol' => 'BEST', + 'tokenId' => '30', + 'contract' => [ + 'tokenType' => 'ERC155', + 'name' => 'ERC1155 Collection', + 'symbol' => '1155', + 'deployedBlockNumber' => 10000, + 'address' => '0x0053399124f0cbb46d2cbacd8a89cf0599974963', + ], + 'name' => 'ERC1155', + ], + [ + 'tokenId' => '4', + 'contract' => [ + 'tokenType' => 'ERC721', + 'name' => 'Best Collection', + 'symbol' => 'BEST', 'deployedBlockNumber' => 10000, + 'address' => '0x0053399124f0cbb46d2cbacd8a89cf0599974963', ], - 'title' => '', + 'name' => '', ], [ - 'id' => ['tokenId' => '4', 'tokenMetadata' => ['tokenType' => 'ERC721']], - 'contract' => ['address' => '0x0053399124f0cbb46d2cbacd8a89cf0599974963'], - 'contractMetadata' => [ - 'name' => 'Best Collection', 'symbol' => 'BEST', + 'tokenId' => '5', + 'contract' => [ + 'tokenType' => 'ERC721', + 'name' => 'Best Collection', + 'symbol' => 'BEST', 'deployedBlockNumber' => 10000, + 'address' => '0x0053399124f0cbb46d2cbacd8a89cf0599974963', ], - 'title' => 'OK Both', + 'name' => 'OK Both', ], [ - 'id' => ['tokenId' => '4', 'tokenMetadata' => ['tokenType' => 'ERC721']], - 'contract' => ['address' => '0x0053399124f0cbb46d2cbacd8a89cf0599974963'], - 'contractMetadata' => [ - 'name' => 'Best Collection', 'symbol' => null, + 'tokenId' => '6', + 'contract' => [ + 'tokenType' => 'ERC721', + 'name' => 'Best Collection', + 'symbol' => null, 'deployedBlockNumber' => 10000, + 'address' => '0x0053399124f0cbb46d2cbacd8a89cf0599974963', ], - 'title' => 'OK Name', + 'name' => 'OK Name', ], [ - 'id' => ['tokenId' => '4', 'tokenMetadata' => ['tokenType' => 'ERC721']], - 'contract' => ['address' => '0x0053399124f0cbb46d2cbacd8a89cf0599974963'], - 'contractMetadata' => [ - 'name' => '', 'symbol' => 'BEST', + 'tokenId' => '7', + 'contract' => [ + 'tokenType' => 'ERC721', + 'name' => '', + 'symbol' => 'BEST', 'deployedBlockNumber' => 10000, + 'address' => '0x0053399124f0cbb46d2cbacd8a89cf0599974963', ], - 'title' => 'OK Symbol', + 'name' => 'OK Symbol', ], [ - 'id' => ['tokenId' => '4', 'tokenMetadata' => ['tokenType' => 'ERC721']], - 'contract' => ['address' => '0x0053399124f0cbb46d2cbacd8a89cf0599974963'], - 'contractMetadata' => [ - 'name' => null, 'symbol' => null, + 'tokenId' => '8', + 'contract' => [ + 'tokenType' => 'ERC721', + 'name' => null, + 'symbol' => null, 'deployedBlockNumber' => 10000, - 'openSea' => ['collectionName' => 'BEST'], + 'address' => '0x0053399124f0cbb46d2cbacd8a89cf0599974963', + 'openSeaMetadata' => [ + 'collectionName' => 'BEST', + ], ], - 'title' => 'OK OpenSea fallback', + 'name' => 'OK OpenSea fallback', ], ]]), ]); @@ -469,7 +497,7 @@ }); it('should getCollectionsNfts', function () { - $original = fixtureData('alchemy.get_nfts_for_collection'); + $original = fixtureData('alchemy.get_nfts_for_contract'); $altered = $original; // 12345 in hex @@ -489,7 +517,7 @@ $result = $provider->getCollectionsNfts($collection); expect($result)->toBeInstanceOf(Web3NftsChunk::class) - ->and($result->nfts)->toHaveCount(100) + ->and($result->nfts)->toHaveCount(3) ->and($result->nfts[0])->toBeInstanceOf(Web3NftData::class) ->and($result->nextToken)->toBe('0x0000000000000000000000000000000000000000000000000000000000000064'); }); diff --git a/tests/fixtures/alchemy/contract-metadata-batch.json b/tests/fixtures/alchemy/contract-metadata-batch.json deleted file mode 100644 index e14b02620..000000000 --- a/tests/fixtures/alchemy/contract-metadata-batch.json +++ /dev/null @@ -1,37 +0,0 @@ -[ - { - "address": "0xe785e82358879f061bc3dcac6f0444462d4b5330", - "contractMetadata": { - "name": "World Of Women", - "symbol": "WOW", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0xc9b6321dc216d91e626e9baa61b06b0e4d55bdb1", - "deployedBlockNumber": 12907782, - "openSea": { - "floorPrice": 0.5691, - "collectionName": "World of Women", - "collectionSlug": "world-of-women-nft", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/8604de2d9aaec98dd389e3af1b1a14b6.gif?w=500&auto=format", - "description": "World of Women is a collection of 10,000 NFTs.", - "externalUrl": "http://worldofwomen.art", - "twitterUsername": "worldofwomennft", - "discordUrl": "https://discord.gg/worldofwomen", - "bannerImageUrl": "https://i.seadn.io/gae/GHhptRLebBOWOy8kfXpYCVqsqdes-1-6I_jbuRnGTHHW6TD63CtciH75Dotfu2u8v6EmkWt-tjhkFRVLxRUwgMfKqqy5W24AolJayeo?w=500&auto=format", - "lastIngestedAt": "2023-09-11T11:28:34.000Z" - } - } - }, - { - "address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d", - "contractMetadata": { - "name": "BoredApeYachtClub", - "symbol": "BAYC", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0xaba7161a7fb69c88e16ed9f455ce62b791ee4d03", - "deployedBlockNumber": 12287507 - } - } -] diff --git a/tests/fixtures/alchemy/contract_metadata_batch.json b/tests/fixtures/alchemy/contract_metadata_batch.json new file mode 100644 index 000000000..e96ece56b --- /dev/null +++ b/tests/fixtures/alchemy/contract_metadata_batch.json @@ -0,0 +1,32 @@ +{ + "contracts": [{ + "address": "0xe785E82358879F061BC3dcAC6f0444462D4b5330", + "name": "World Of Women", + "symbol": "WOW", + "totalSupply": "10000", + "tokenType": "ERC721", + "contractDeployer": "0xc9b6321dc216D91E626E9BAA61b06B0E4d55bdb1", + "deployedBlockNumber": 12907782, + "openSeaMetadata": { + "floorPrice": 1.539, + "collectionName": "World of Women", + "collectionSlug": "world-of-women-nft", + "safelistRequestStatus": "verified", + "imageUrl": "https://i.seadn.io/gae/EFAQpIktMBU5SU0TqSdPWZ4byHr3hFirL_mATsR8KWhM5z-GJljX8E73V933lkyKgv2SAFlfRRjGsWvWbQQmJAwu3F2FDXVa1C9F?w=500&auto=format", + "description": "World of Women is a collection of 10,000 NFTs.", + "externalUrl": "http://worldofwomen.art", + "twitterUsername": "worldofwomennft", + "discordUrl": "https://discord.gg/worldofwomen", + "lastIngestedAt": "2023-04-12T22:39:51.000Z", + "bannerImageUrl": "https://i.seadn.io/gae/GHhptRLebBOWOy8kfXpYCVqsqdes-1-6I_jbuRnGTHHW6TD63CtciH75Dotfu2u8v6EmkWt-tjhkFRVLxRUwgMfKqqy5W24AolJayeo?w=500&auto=format" + } + }, { + "address": "0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D", + "name": "BoredApeYachtClub", + "symbol": "BAYC", + "totalSupply": "10000", + "tokenType": "ERC721", + "contractDeployer": "0xaBA7161A7fb69c88e16ED9f455CE62B791EE4D03", + "deployedBlockNumber": 12287507 + }] +} diff --git a/tests/fixtures/alchemy/get_nfts_for_blacklisted_collection.json b/tests/fixtures/alchemy/get_nfts_for_blacklisted_collection.json deleted file mode 100644 index eef7e12e6..000000000 --- a/tests/fixtures/alchemy/get_nfts_for_blacklisted_collection.json +++ /dev/null @@ -1,545 +0,0 @@ -{ - "nfts": [ - { - "contract": { - "address": "0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000476c", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "godsdog", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0x676f6473646f6700000000000000000000000000000000000000000000000000", - "tokenUri": { - "gateway": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/18284", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/18284" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/38b0e9f7feb10405a48d04236e40c4a4", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/38b0e9f7feb10405a48d04236e40c4a4", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/18284", - "format": "svg+xml; charset=utf-8", - "bytes": 1944 - } - ], - "metadata": { - "name": "godsdog", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0x676f6473646f6700000000000000000000000000000000000000000000000000", - "image": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/18284", - "external_url": "https://linagee.vision/", - "attributes": [ - { - "value": "Yes", - "trait_type": "Normalized" - }, - { - "value": 7, - "trait_type": "Length" - }, - { - "value": "No", - "trait_type": "1 Digit" - }, - { - "value": "No", - "trait_type": "2 Digits" - }, - { - "value": "No", - "trait_type": "3 Digits" - }, - { - "value": "No", - "trait_type": "4 Digits" - }, - { - "value": "No", - "trait_type": "5 Digits" - }, - { - "value": "No", - "trait_type": "1 Letter (lowercase)" - }, - { - "value": "No", - "trait_type": "1 Letter (uppercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "Arabic 1 Digit" - }, - { - "value": "No", - "trait_type": "Arabic 2 Digits" - }, - { - "value": "No", - "trait_type": "Arabic 3 Digits" - }, - { - "value": "No", - "trait_type": "Emoji only" - }, - { - "value": "No", - "trait_type": "Historic" - } - ] - }, - "timeLastUpdated": "2023-07-14T12:00:39.059Z", - "contractMetadata": { - "name": "ETHRegistrarLinageeWrapper", - "symbol": "ERLW", - "totalSupply": "69588", - "tokenType": "ERC721", - "contractDeployer": "0x9ff81de5f866f4691f18392792be16f63f586ff7", - "deployedBlockNumber": 15663114, - "openSea": { - "floorPrice": 0.000089999, - "collectionName": "Linagee Name Registrar (LNR)", - "safelistRequestStatus": "approved", - "imageUrl": "https://i.seadn.io/gcs/files/240ac5920778f5ae0de8a3f6176b4d3c.png?w=500&auto=format", - "description": "By Linagee, from the first NFT contract on Ethereum, launched August 8, 2015. \n \nDisclaimer: \nPlease use the bytecode to confirm any names. The categories act as a guide but we cannot guarantee the accuracy of every name.", - "externalUrl": "https://linagee.vision/", - "twitterUsername": "LinageeDomains", - "discordUrl": "https://discord.gg/DAKRWGfMyx", - "lastIngestedAt": "2023-07-13T22:51:19.000Z" - } - } - }, - { - "contract": { - "address": "0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000bd39", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "وحيد", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0xd988d8add98ad8af000000000000000000000000000000000000000000000000", - "tokenUri": { - "gateway": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/48441", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/48441" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/17f84142e5577fa117d101deb9bb9dcb", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/17f84142e5577fa117d101deb9bb9dcb", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/48441", - "format": "svg+xml; charset=utf-8", - "bytes": 2114 - } - ], - "metadata": { - "name": "وحيد", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0xd988d8add98ad8af000000000000000000000000000000000000000000000000", - "image": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/48441", - "external_url": "https://linagee.vision/", - "attributes": [ - { - "value": "Yes", - "trait_type": "Normalized" - }, - { - "value": 4, - "trait_type": "Length" - }, - { - "value": "No", - "trait_type": "1 Digit" - }, - { - "value": "No", - "trait_type": "2 Digits" - }, - { - "value": "No", - "trait_type": "3 Digits" - }, - { - "value": "No", - "trait_type": "4 Digits" - }, - { - "value": "No", - "trait_type": "5 Digits" - }, - { - "value": "No", - "trait_type": "1 Letter (lowercase)" - }, - { - "value": "No", - "trait_type": "1 Letter (uppercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "Arabic 1 Digit" - }, - { - "value": "No", - "trait_type": "Arabic 2 Digits" - }, - { - "value": "No", - "trait_type": "Arabic 3 Digits" - }, - { - "value": "No", - "trait_type": "Emoji only" - }, - { - "value": "No", - "trait_type": "Historic" - } - ] - }, - "timeLastUpdated": "2023-07-03T11:02:38.477Z", - "contractMetadata": { - "name": "ETHRegistrarLinageeWrapper", - "symbol": "ERLW", - "totalSupply": "69588", - "tokenType": "ERC721", - "contractDeployer": "0x9ff81de5f866f4691f18392792be16f63f586ff7", - "deployedBlockNumber": 15663114, - "openSea": { - "floorPrice": 0.000089999, - "collectionName": "Linagee Name Registrar (LNR)", - "safelistRequestStatus": "approved", - "imageUrl": "https://i.seadn.io/gcs/files/240ac5920778f5ae0de8a3f6176b4d3c.png?w=500&auto=format", - "description": "By Linagee, from the first NFT contract on Ethereum, launched August 8, 2015. \n \nDisclaimer: \nPlease use the bytecode to confirm any names. The categories act as a guide but we cannot guarantee the accuracy of every name.", - "externalUrl": "https://linagee.vision/", - "twitterUsername": "LinageeDomains", - "discordUrl": "https://discord.gg/DAKRWGfMyx", - "lastIngestedAt": "2023-07-13T22:51:19.000Z" - } - } - }, - { - "contract": { - "address": "0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000be5a", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "قادر", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0xd982d8a7d8afd8b1000000000000000000000000000000000000000000000000", - "tokenUri": { - "gateway": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/48730", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/48730" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/38a55da7d0107b1e577bf3ed384e4515", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/38a55da7d0107b1e577bf3ed384e4515", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/48730", - "format": "svg+xml; charset=utf-8", - "bytes": 1270 - } - ], - "metadata": { - "name": "قادر", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0xd982d8a7d8afd8b1000000000000000000000000000000000000000000000000", - "image": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/48730", - "external_url": "https://linagee.vision/", - "attributes": [ - { - "value": "Yes", - "trait_type": "Normalized" - }, - { - "value": 4, - "trait_type": "Length" - }, - { - "value": "No", - "trait_type": "1 Digit" - }, - { - "value": "No", - "trait_type": "2 Digits" - }, - { - "value": "No", - "trait_type": "3 Digits" - }, - { - "value": "No", - "trait_type": "4 Digits" - }, - { - "value": "No", - "trait_type": "5 Digits" - }, - { - "value": "No", - "trait_type": "1 Letter (lowercase)" - }, - { - "value": "No", - "trait_type": "1 Letter (uppercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "Arabic 1 Digit" - }, - { - "value": "No", - "trait_type": "Arabic 2 Digits" - }, - { - "value": "No", - "trait_type": "Arabic 3 Digits" - }, - { - "value": "No", - "trait_type": "Emoji only" - }, - { - "value": "No", - "trait_type": "Historic" - } - ] - }, - "timeLastUpdated": "2023-07-14T12:00:39.230Z", - "contractMetadata": { - "name": "ETHRegistrarLinageeWrapper", - "symbol": "ERLW", - "totalSupply": "69588", - "tokenType": "ERC721", - "contractDeployer": "0x9ff81de5f866f4691f18392792be16f63f586ff7", - "deployedBlockNumber": 15663114, - "openSea": { - "floorPrice": 0.000089999, - "collectionName": "Linagee Name Registrar (LNR)", - "safelistRequestStatus": "approved", - "imageUrl": "https://i.seadn.io/gcs/files/240ac5920778f5ae0de8a3f6176b4d3c.png?w=500&auto=format", - "description": "By Linagee, from the first NFT contract on Ethereum, launched August 8, 2015. \n \nDisclaimer: \nPlease use the bytecode to confirm any names. The categories act as a guide but we cannot guarantee the accuracy of every name.", - "externalUrl": "https://linagee.vision/", - "twitterUsername": "LinageeDomains", - "discordUrl": "https://discord.gg/DAKRWGfMyx", - "lastIngestedAt": "2023-07-13T22:51:19.000Z" - } - } - }, - { - "contract": { - "address": "0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000bec3", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "писька", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0xd0bfd0b8d181d18cd0bad0b00000000000000000000000000000000000000000", - "tokenUri": { - "gateway": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/48835", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/48835" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/a591c72da3a33035eeba7c9ff5f73564", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/a591c72da3a33035eeba7c9ff5f73564", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/48835", - "format": "svg+xml; charset=utf-8", - "bytes": 2689 - } - ], - "metadata": { - "name": "писька", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0xd0bfd0b8d181d18cd0bad0b00000000000000000000000000000000000000000", - "image": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/48835", - "external_url": "https://linagee.vision/", - "attributes": [ - { - "value": "Yes", - "trait_type": "Normalized" - }, - { - "value": 6, - "trait_type": "Length" - }, - { - "value": "No", - "trait_type": "1 Digit" - }, - { - "value": "No", - "trait_type": "2 Digits" - }, - { - "value": "No", - "trait_type": "3 Digits" - }, - { - "value": "No", - "trait_type": "4 Digits" - }, - { - "value": "No", - "trait_type": "5 Digits" - }, - { - "value": "No", - "trait_type": "1 Letter (lowercase)" - }, - { - "value": "No", - "trait_type": "1 Letter (uppercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "Arabic 1 Digit" - }, - { - "value": "No", - "trait_type": "Arabic 2 Digits" - }, - { - "value": "No", - "trait_type": "Arabic 3 Digits" - }, - { - "value": "No", - "trait_type": "Emoji only" - }, - { - "value": "No", - "trait_type": "Historic" - } - ] - }, - "timeLastUpdated": "2023-07-14T12:00:39.118Z", - "contractMetadata": { - "name": "ETHRegistrarLinageeWrapper", - "symbol": "ERLW", - "totalSupply": "69588", - "tokenType": "ERC721", - "contractDeployer": "0x9ff81de5f866f4691f18392792be16f63f586ff7", - "deployedBlockNumber": 15663114, - "openSea": { - "floorPrice": 0.000089999, - "collectionName": "Linagee Name Registrar (LNR)", - "safelistRequestStatus": "approved", - "imageUrl": "https://i.seadn.io/gcs/files/240ac5920778f5ae0de8a3f6176b4d3c.png?w=500&auto=format", - "description": "By Linagee, from the first NFT contract on Ethereum, launched August 8, 2015. \n \nDisclaimer: \nPlease use the bytecode to confirm any names. The categories act as a guide but we cannot guarantee the accuracy of every name.", - "externalUrl": "https://linagee.vision/", - "twitterUsername": "LinageeDomains", - "discordUrl": "https://discord.gg/DAKRWGfMyx", - "lastIngestedAt": "2023-07-13T22:51:19.000Z" - } - } - } - ], - "nextToken": "0x0000000000000000000000000000000000000000000000000000000000000064" - } diff --git a/tests/fixtures/alchemy/get_nfts_for_collection.json b/tests/fixtures/alchemy/get_nfts_for_collection.json deleted file mode 100644 index 9adae4862..000000000 --- a/tests/fixtures/alchemy/get_nfts_for_collection.json +++ /dev/null @@ -1,7545 +0,0 @@ -{ - "nfts": [ - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#0", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/0", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/0" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/cf6b9a68325d77bcdf3a02722b7a2f86", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/0", - "format": "png" - } - ], - "metadata": { - "name": "#0", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/0", - "external_url": "https://www.proof.xyz/moonbirds/0", - "attributes": [ - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Hoodie Down", - "trait_type": "Outerwear" - }, - { - "value": "Tabby", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:9650"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.507Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000001", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#1", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/1", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/1" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/44427abec3f9f7fffbb66705b596a062", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/1", - "format": "png" - } - ], - "metadata": { - "name": "#1", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/1", - "external_url": "https://www.proof.xyz/moonbirds/1", - "attributes": [ - { - "value": "Rainbow", - "trait_type": "Eyes" - }, - { - "value": "Jean Jacket", - "trait_type": "Outerwear" - }, - { - "value": "Tabby", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:6429"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.527Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000002", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#2", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/2", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/2" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/3621c5a5350b1ba404478dd65667f116", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/2", - "format": "png" - } - ], - "metadata": { - "name": "#2", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/2", - "external_url": "https://www.proof.xyz/moonbirds/2", - "attributes": [ - { - "value": "Side-eye", - "trait_type": "Eyes" - }, - { - "value": "Skully", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:5717"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.547Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000003", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#3", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/3", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/3" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/0b5641b315b445fc0b8c34ce6b40b2ce", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/3", - "format": "png" - } - ], - "metadata": { - "name": "#3", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/3", - "external_url": "https://www.proof.xyz/moonbirds/3", - "attributes": [ - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Eyepatch", - "trait_type": "Eyewear" - }, - { - "value": "Professor", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:6109"] - }, - "timeLastUpdated": "2023-06-07T16:10:40.991Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000004", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#4", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/4", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/4" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/79c9f91c14bc58fa2cea9538689737d2", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/4", - "format": "png" - } - ], - "metadata": { - "name": "#4", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/4", - "external_url": "https://www.proof.xyz/moonbirds/4", - "attributes": [ - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Backwards Hat", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:7611"] - }, - "timeLastUpdated": "2023-05-24T13:14:41.398Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000005", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#5", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/5", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/5" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/85798d660b668110dc47124d3bdb52c7", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/5", - "format": "png" - } - ], - "metadata": { - "name": "#5", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/5", - "external_url": "https://www.proof.xyz/moonbirds/5", - "attributes": [ - { - "value": "Side-eye", - "trait_type": "Eyes" - }, - { - "value": "Brave", - "trait_type": "Body" - }, - { - "value": "Purple", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:4601"] - }, - "timeLastUpdated": "2023-06-05T20:30:41.110Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000006", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#6", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/6", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/6" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/c1bef2664613f3605d8b8f6091afa0d7", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/6", - "format": "png" - } - ], - "metadata": { - "name": "#6", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/6", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Lincoln", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Black", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:7815"] - }, - "timeLastUpdated": "2023-06-06T22:42:42.325Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000007", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#7", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/7", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/7" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/714244b1cfe9fa01c7ac68a2b0ca247b", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/7", - "format": "png" - } - ], - "metadata": { - "name": "#7", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/7", - "external_url": "https://www.proof.xyz/moonbirds/7", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Punk Jacket", - "trait_type": "Outerwear" - }, - { - "value": "Moon Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:3694"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.541Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000008", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#8", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/8", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/8" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/55f84dc7a16999ac9fc726b7d67a0e5f", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/8", - "format": "png" - } - ], - "metadata": { - "name": "#8", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/8", - "external_url": "https://www.proof.xyz/moonbirds/8", - "attributes": [ - { - "value": "Gazelles", - "trait_type": "Eyewear" - }, - { - "value": "Mohawk (Green)", - "trait_type": "Headwear" - }, - { - "value": "Tranquil", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2229"] - }, - "timeLastUpdated": "2023-05-24T17:36:41.068Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000009", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#9", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/9", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/9" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-goerli/3d2336f5deb3d24c4ce19fc4f8e422b1", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/9", - "format": "png" - } - ], - "metadata": { - "name": "#9", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/9", - "external_url": "https://www.proof.xyz/moonbirds/9", - "attributes": [ - { - "value": "Jobs Glasses", - "trait_type": "Eyewear" - }, - { - "value": "Moon Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:6047"] - }, - "timeLastUpdated": "2023-06-06T18:28:40.837Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000000a", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#10", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/10", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/10" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/8e1bd7b392b87e86862b0d03192ceb79", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/10", - "format": "png" - } - ], - "metadata": { - "name": "#10", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/10", - "external_url": "https://www.proof.xyz/moonbirds/10", - "attributes": [ - { - "value": "Side-eye", - "trait_type": "Eyes" - }, - { - "value": "Backwards Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:7727"] - }, - "timeLastUpdated": "2023-06-06T23:18:38.267Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000000b", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#11", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/11", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/11" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d685ebba95284d13b9c2fa9edc2bdd0f", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/11", - "format": "png" - } - ], - "metadata": { - "name": "#11", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/11", - "external_url": "https://www.proof.xyz/moonbirds/11", - "attributes": [ - { - "value": "Rainbow", - "trait_type": "Eyes" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:6931"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.577Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000000c", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#12", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/12", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/12" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/c7c2eb1091cefc26b66f9dc510429e82", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/12", - "format": "png" - } - ], - "metadata": { - "name": "#12", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/12", - "external_url": "https://www.proof.xyz/moonbirds/12", - "attributes": [ - { - "value": "Visor", - "trait_type": "Eyewear" - }, - { - "value": "Punk Jacket", - "trait_type": "Outerwear" - }, - { - "value": "Chromie", - "trait_type": "Headwear" - }, - { - "value": "Robot", - "trait_type": "Body" - }, - { - "value": "Metal", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:8928"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.551Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000000d", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#13", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/13", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/13" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/4e18b775000b22fd13ba5798b45c1376", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/13", - "format": "png" - } - ], - "metadata": { - "name": "#13", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/13", - "external_url": "https://www.proof.xyz/moonbirds/13", - "attributes": [ - { - "value": "Gazelles", - "trait_type": "Eyewear" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "Black", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2112"] - }, - "timeLastUpdated": "2023-05-31T06:47:13.797Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000000e", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#14", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/14", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/14" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/dded8178cf1e1180cd6afccdb1f9894e", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/14", - "format": "png" - } - ], - "metadata": { - "name": "#14", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/14", - "external_url": "https://www.proof.xyz/moonbirds/14", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Gold Chain", - "trait_type": "Outerwear" - }, - { - "value": "Lincoln", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1675"] - }, - "timeLastUpdated": "2023-05-30T04:09:16.129Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000000f", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#15", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/15", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/15" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/09c92bc4cab3e5190c52d24d2af6311c", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/15", - "format": "png" - } - ], - "metadata": { - "name": "#15", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/15", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Gray", - "trait_type": "Background" - }, - { - "value": "Golden", - "trait_type": "Body" - }, - { - "value": "Legendary Emperor", - "trait_type": "Feathers" - }, - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Small", - "trait_type": "Beak" - }, - { - "value": "Skully", - "trait_type": "Headwear" - } - ], - "x_debug": ["orig:8697"] - }, - "timeLastUpdated": "2023-06-06T21:56:43.455Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000010", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#16", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/16", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/16" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/2936bb9825a1a4184864d98dc5421edb", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/16", - "format": "png" - } - ], - "metadata": { - "name": "#16", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/16", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Captain's Cap", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:682"] - }, - "timeLastUpdated": "2023-06-06T22:42:38.749Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000011", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#17", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/17", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/17" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/12293988c3c7089f7d5f013ed9af5511", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/17", - "format": "png" - } - ], - "metadata": { - "name": "#17", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/17", - "external_url": "https://www.proof.xyz/moonbirds/17", - "attributes": [ - { - "value": "Rainbow", - "trait_type": "Eyes" - }, - { - "value": "Headphones", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1364"] - }, - "timeLastUpdated": "2023-06-06T19:14:42.318Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000012", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#18", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/18", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/18" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/7da2a3d0c4182e3852be37edc7e4db81", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/18", - "format": "png" - } - ], - "metadata": { - "name": "#18", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/18", - "external_url": "https://www.proof.xyz/moonbirds/18", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2207"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.650Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000013", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#19", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/19", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/19" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/ef92f0b6a88147ae5075a310603c3017", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/19", - "format": "png" - } - ], - "metadata": { - "name": "#19", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/19", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Fire", - "trait_type": "Eyes" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "Brown", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2919"] - }, - "timeLastUpdated": "2023-06-07T16:06:41.113Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000014", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#20", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/20", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/20" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/13d7c7bf68509478238b4a8ff3c923b2", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/20", - "format": "png" - } - ], - "metadata": { - "name": "#20", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/20", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "3D Glasses", - "trait_type": "Eyewear" - }, - { - "value": "Fire", - "trait_type": "Headwear" - }, - { - "value": "Tabby", - "trait_type": "Body" - }, - { - "value": "Brown", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:6516"] - }, - "timeLastUpdated": "2023-05-24T13:00:41.235Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000015", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#21", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/21", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/21" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/4d218b1c5321c6934aaa96eb1af711d5", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/21", - "format": "png" - } - ], - "metadata": { - "name": "#21", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/21", - "external_url": "https://www.proof.xyz/moonbirds/21", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Brave", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:9871"] - }, - "timeLastUpdated": "2023-04-15T14:36:40.957Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000016", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#22", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/22", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/22" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/81d3544532f0b799e4e1afadc367999e", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/22", - "format": "png" - } - ], - "metadata": { - "name": "#22", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/22", - "external_url": "https://www.proof.xyz/moonbirds/22", - "attributes": [ - { - "value": "Moon", - "trait_type": "Eyes" - }, - { - "value": "Emperor", - "trait_type": "Body" - }, - { - "value": "Black", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1733"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.521Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000017", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#23", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/23", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/23" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/bfadbf84995eb3795b3041ca5ca5c433", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/23", - "format": "png" - } - ], - "metadata": { - "name": "#23", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/23", - "external_url": "https://www.proof.xyz/moonbirds/23", - "attributes": [ - { - "value": "Black-rimmed Glasses", - "trait_type": "Eyewear" - }, - { - "value": "Moon Hat", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Brown", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2792"] - }, - "timeLastUpdated": "2023-06-07T16:10:38.698Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000018", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#24", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/24", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/24" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/c11253adf5881e0c447fcc850a0caea4", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/24", - "format": "png" - } - ], - "metadata": { - "name": "#24", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/24", - "external_url": "https://www.proof.xyz/moonbirds/24", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "Pink", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:4491"] - }, - "timeLastUpdated": "2023-06-07T20:06:41.590Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000019", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#25", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/25", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/25" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/ceb5acd673b562fdeef982acd8db082d", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/25", - "format": "png" - } - ], - "metadata": { - "name": "#25", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/25", - "external_url": "https://www.proof.xyz/moonbirds/25", - "attributes": [ - { - "value": "Diamond", - "trait_type": "Eyes" - }, - { - "value": "Raincloud", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Brown", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2277"] - }, - "timeLastUpdated": "2023-06-05T15:32:41.114Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000001a", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#26", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/26", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/26" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/27c33cd3525b17c744a8fa8904de3ce7", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/26", - "format": "png" - } - ], - "metadata": { - "name": "#26", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/26", - "external_url": "https://www.proof.xyz/moonbirds/26", - "attributes": [ - { - "value": "Side-eye", - "trait_type": "Eyes" - }, - { - "value": "Forest Ranger", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2970"] - }, - "timeLastUpdated": "2023-05-24T17:34:41.050Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000001b", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#27", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/27", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/27" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/8f379c7f51008f29d7caead3346f0c5f", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/27", - "format": "png" - } - ], - "metadata": { - "name": "#27", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/27", - "external_url": "https://www.proof.xyz/moonbirds/27", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Headband", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Brown", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:5836"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.537Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000001c", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#28", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/28", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/28" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d5c32e1105cf1009618de5c6779bae93", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/28", - "format": "png" - } - ], - "metadata": { - "name": "#28", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/28", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Fire", - "trait_type": "Headwear" - }, - { - "value": "Tabby", - "trait_type": "Body" - }, - { - "value": "Pink", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:7574"] - }, - "timeLastUpdated": "2023-06-07T16:12:41.128Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000001d", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#29", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/29", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/29" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/de3eb31671a1f157b3abbc69de353b8e", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/29", - "format": "png" - } - ], - "metadata": { - "name": "#29", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/29", - "external_url": "https://www.proof.xyz/moonbirds/29", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Raincloud", - "trait_type": "Headwear" - }, - { - "value": "Tabby", - "trait_type": "Body" - }, - { - "value": "Black", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:5576"] - }, - "timeLastUpdated": "2023-06-06T19:10:44.110Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000001e", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#30", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/30", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/30" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/38b6c516384ca02120605d9afb36b7c8", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/30", - "format": "png" - } - ], - "metadata": { - "name": "#30", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/30", - "external_url": "https://www.proof.xyz/moonbirds/30", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Beanie", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:285"] - }, - "timeLastUpdated": "2023-05-24T17:30:40.857Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000001f", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#31", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/31", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/31" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/93373bedfac272c46f5538592eba69c4", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/31", - "format": "png" - } - ], - "metadata": { - "name": "#31", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/31", - "external_url": "https://www.proof.xyz/moonbirds/31", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Witch's Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2670"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.541Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000020", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#32", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/32", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/32" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/e6c63cd320e4fe7cb9065de4693d1f68", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/32", - "format": "png" - } - ], - "metadata": { - "name": "#32", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/32", - "external_url": "https://www.proof.xyz/moonbirds/32", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Half-moon Spectacles", - "trait_type": "Eyewear" - }, - { - "value": "Professor", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Small", - "trait_type": "Beak" - }, - { - "value": "Blue", - "trait_type": "Background" - } - ], - "x_debug": ["orig:1437"] - }, - "timeLastUpdated": "2023-06-05T15:32:41.481Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000021", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#33", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/33", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/33" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d8a2ac42df9f790b1bf3d7b2a7692698", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/33", - "format": "png" - } - ], - "metadata": { - "name": "#33", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/33", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Moon Hat", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Brown", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:408"] - }, - "timeLastUpdated": "2023-06-06T23:08:40.691Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000022", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#34", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/34", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/34" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/62ce9f3949c45f48e0177804a6b40a0e", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/34", - "format": "png" - } - ], - "metadata": { - "name": "#34", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/34", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Side-eye", - "trait_type": "Eyes" - }, - { - "value": "Professor", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1500"] - }, - "timeLastUpdated": "2023-06-06T07:50:41.017Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000023", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#35", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/35", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/35" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/51f8de47a99705dbbe7e266207f865e3", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/35", - "format": "png" - } - ], - "metadata": { - "name": "#35", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/35", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Emperor", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2839"] - }, - "timeLastUpdated": "2023-05-24T13:18:43.226Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000024", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#36", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/36", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/36" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d9826f6447ef39887b431d395f3fc869", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/36", - "format": "png" - } - ], - "metadata": { - "name": "#36", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/36", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Big Tech", - "trait_type": "Eyewear" - }, - { - "value": "Forest Ranger", - "trait_type": "Headwear" - }, - { - "value": "Robot", - "trait_type": "Body" - }, - { - "value": "Metal", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:6392"] - }, - "timeLastUpdated": "2023-05-24T17:50:44.085Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000025", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#37", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/37", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/37" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/f92d7460b527f2a4ee0a002c0894aadf", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/37", - "format": "png" - } - ], - "metadata": { - "name": "#37", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/37", - "external_url": "https://www.proof.xyz/moonbirds/37", - "attributes": [ - { - "value": "Sunglasses", - "trait_type": "Eyewear" - }, - { - "value": "Halo", - "trait_type": "Headwear" - }, - { - "value": "Skeleton", - "trait_type": "Body" - }, - { - "value": "Bone", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:3773"] - }, - "timeLastUpdated": "2023-06-07T16:12:41.192Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000026", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#38", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/38", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/38" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/da26709ab5df8a670073dc4298b12439", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/38", - "format": "png" - } - ], - "metadata": { - "name": "#38", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/38", - "external_url": "https://www.proof.xyz/moonbirds/38", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Bomber Jacket", - "trait_type": "Outerwear" - }, - { - "value": "Queen's Crown", - "trait_type": "Headwear" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:8913"] - }, - "timeLastUpdated": "2023-06-06T22:36:40.874Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000027", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#39", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/39", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/39" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/a930d0512c25324cf517d879a9de784f", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/39", - "format": "png" - } - ], - "metadata": { - "name": "#39", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/39", - "external_url": "https://www.proof.xyz/moonbirds/39", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Tiara", - "trait_type": "Headwear" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "Black", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1621"] - }, - "timeLastUpdated": "2023-06-06T23:14:38.795Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000028", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#40", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/40", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/40" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/02b66dab7a34ab200bffcc697ffb84cb", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/40", - "format": "png" - } - ], - "metadata": { - "name": "#40", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/40", - "external_url": "https://www.proof.xyz/moonbirds/40", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Moon Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:3112"] - }, - "timeLastUpdated": "2023-06-06T22:36:41.017Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000029", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#41", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/41", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/41" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/cbd54d6f2643fffc22f917e725f9e590", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/41", - "format": "png" - } - ], - "metadata": { - "name": "#41", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/41", - "external_url": "https://www.proof.xyz/moonbirds/41", - "attributes": [ - { - "value": "Rainbow", - "trait_type": "Eyes" - }, - { - "value": "Flower", - "trait_type": "Headwear" - }, - { - "value": "Tranquil", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:7300"] - }, - "timeLastUpdated": "2023-05-24T13:02:41.749Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000002a", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#42", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/42", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/42" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/328756515d614331da8925d5971c5d44", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/42", - "format": "png" - } - ], - "metadata": { - "name": "#42", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/42", - "external_url": "https://www.proof.xyz/moonbirds/42", - "attributes": [ - { - "value": "Heart", - "trait_type": "Eyes" - }, - { - "value": "Cowboy Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Black", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:868"] - }, - "timeLastUpdated": "2023-06-07T19:52:41.382Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000002b", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#43", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/43", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/43" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/602fb55d1586dd5099eb579a5835d7b7", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/43", - "format": "png" - } - ], - "metadata": { - "name": "#43", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/43", - "external_url": "https://www.proof.xyz/moonbirds/43", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Diamond Necklace", - "trait_type": "Outerwear" - }, - { - "value": "Captain's Cap", - "trait_type": "Headwear" - }, - { - "value": "Sage", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:4614"] - }, - "timeLastUpdated": "2023-06-07T20:00:44.630Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000002c", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#44", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/44", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/44" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/3bb2252e498471da1d2204538613b0cb", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/44", - "format": "png" - } - ], - "metadata": { - "name": "#44", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/44", - "external_url": "https://www.proof.xyz/moonbirds/44", - "attributes": [ - { - "value": "Adorable", - "trait_type": "Eyes" - }, - { - "value": "Hero's Tunic", - "trait_type": "Outerwear" - }, - { - "value": "Hero's Cap", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:3879"] - }, - "timeLastUpdated": "2023-05-28T21:54:41.132Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000002d", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#45", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/45", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/45" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/967c8e04f6a39364a3e81ac92bdb7a79", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/45", - "format": "png" - } - ], - "metadata": { - "name": "#45", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/45", - "external_url": "https://www.proof.xyz/moonbirds/45", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:5852"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.601Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000002e", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#46", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/46", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/46" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/2164121e2da32d18fb17535aa8bd143d", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/46", - "format": "png" - } - ], - "metadata": { - "name": "#46", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/46", - "external_url": "https://www.proof.xyz/moonbirds/46", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:8211"] - }, - "timeLastUpdated": "2023-05-21T09:34:40.844Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000002f", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#47", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/47", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/47" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/c472a03b817a8b58d3350c6ddccd86d4", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/47", - "format": "png" - } - ], - "metadata": { - "name": "#47", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/47", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Rainbow", - "trait_type": "Eyes" - }, - { - "value": "Dancing Flame", - "trait_type": "Headwear" - }, - { - "value": "Tranquil", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2960"] - }, - "timeLastUpdated": "2023-06-06T19:36:41.455Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000030", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#48", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/48", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/48" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/7453b76542dcee4e163c005a26489366", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/48", - "format": "png" - } - ], - "metadata": { - "name": "#48", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/48", - "external_url": "https://www.proof.xyz/moonbirds/48", - "attributes": [ - { - "value": "Side-eye", - "trait_type": "Eyes" - }, - { - "value": "Crescent Talisman", - "trait_type": "Headwear" - }, - { - "value": "Brave", - "trait_type": "Body" - }, - { - "value": "Brown", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:3074"] - }, - "timeLastUpdated": "2023-06-06T21:56:42.032Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000031", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#49", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/49", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/49" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/31bafa656862e88c212d4f6fb886c9a7", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/49", - "format": "png" - } - ], - "metadata": { - "name": "#49", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/49", - "external_url": "https://www.proof.xyz/moonbirds/49", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Hoodie Down", - "trait_type": "Outerwear" - }, - { - "value": "Brave", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Gray", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1724"] - }, - "timeLastUpdated": "2023-06-01T15:42:41.958Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000032", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#50", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/50", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/50" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/ba8ccfac8b5a409be4f3c6edb2afa8a1", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/50", - "format": "png" - } - ], - "metadata": { - "name": "#50", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/50", - "external_url": "https://www.proof.xyz/moonbirds/50", - "attributes": [ - { - "value": "Side-eye", - "trait_type": "Eyes" - }, - { - "value": "Gold Chain", - "trait_type": "Outerwear" - }, - { - "value": "Tranquil", - "trait_type": "Body" - }, - { - "value": "Purple", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:4174"] - }, - "timeLastUpdated": "2023-05-31T06:26:43.731Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000033", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#51", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/51", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/51" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/b88500b9ac7226fda63eda7c40cbce59", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/51", - "format": "png" - } - ], - "metadata": { - "name": "#51", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/51", - "external_url": "https://www.proof.xyz/moonbirds/51", - "attributes": [ - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Skully", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:500"] - }, - "timeLastUpdated": "2023-06-06T22:36:41.070Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000034", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#52", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/52", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/52" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/29e356d5b30b11d4432f606edcede793", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/52", - "format": "png" - } - ], - "metadata": { - "name": "#52", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/52", - "external_url": "https://www.proof.xyz/moonbirds/52", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Moon Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Gray", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:6570"] - }, - "timeLastUpdated": "2023-05-31T06:26:44.312Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000035", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#53", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/53", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/53" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/469e4764fc2a3e9c1d8c9b614b00b469", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/53", - "format": "png" - } - ], - "metadata": { - "name": "#53", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/53", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Tiara", - "trait_type": "Headwear" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:9919"] - }, - "timeLastUpdated": "2023-05-29T15:04:43.174Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000036", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#54", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/54", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/54" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/fc3cc5f80eb968e96829b4f2cbea7b05", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/54", - "format": "png" - } - ], - "metadata": { - "name": "#54", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/54", - "external_url": "https://www.proof.xyz/moonbirds/54", - "attributes": [ - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Hoodie Down", - "trait_type": "Outerwear" - }, - { - "value": "Karate Band", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Pink", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1383"] - }, - "timeLastUpdated": "2023-06-07T16:58:45.978Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000037", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#55", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/55", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/55" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/294aba8d6031e8e6529b19b17cb4933f", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/55", - "format": "png" - } - ], - "metadata": { - "name": "#55", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/55", - "external_url": "https://www.proof.xyz/moonbirds/55", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Lincoln", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Purple", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1454"] - }, - "timeLastUpdated": "2023-06-07T16:54:41.054Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000038", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#56", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/56", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/56" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/aa10b67c15bda26b5ff8fb472f87899e", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/56", - "format": "png" - } - ], - "metadata": { - "name": "#56", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/56", - "external_url": "https://www.proof.xyz/moonbirds/56", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Bomber Jacket", - "trait_type": "Outerwear" - }, - { - "value": "Dancing Flame", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1923"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.543Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000039", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#57", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/57", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/57" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/a0041326dcc942568741affc1ad664fd", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/57", - "format": "png" - } - ], - "metadata": { - "name": "#57", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/57", - "external_url": "https://www.proof.xyz/moonbirds/57", - "attributes": [ - { - "value": "Sunglasses", - "trait_type": "Eyewear" - }, - { - "value": "Brave", - "trait_type": "Body" - }, - { - "value": "Green", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1784"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.530Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000003a", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#58", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/58", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/58" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/1deb22842d3a69bb5e5200b0374e68c4", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/58", - "format": "png" - } - ], - "metadata": { - "name": "#58", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/58", - "external_url": "https://www.proof.xyz/moonbirds/58", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Professor", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:9905"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.556Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000003b", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#59", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/59", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/59" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d9ec40315c2af5516f48cf11955b65b8", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/59", - "format": "png" - } - ], - "metadata": { - "name": "#59", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/59", - "external_url": "https://www.proof.xyz/moonbirds/59", - "attributes": [ - { - "value": "Jobs Glasses", - "trait_type": "Eyewear" - }, - { - "value": "Sage", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:870"] - }, - "timeLastUpdated": "2023-05-23T06:58:41.064Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000003c", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#60", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/60", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/60" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/4b15691ebad438486bfdb4c7554537c2", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/60", - "format": "png" - } - ], - "metadata": { - "name": "#60", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/60", - "external_url": "https://www.proof.xyz/moonbirds/60", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Space Helmet", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Gray", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2621"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.558Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000003d", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#61", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/61", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/61" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/ff920510b57b1b7d610718ac94514d7b", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/61", - "format": "png" - } - ], - "metadata": { - "name": "#61", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/61", - "external_url": "https://www.proof.xyz/moonbirds/61", - "attributes": [ - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Tabby", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:8020"] - }, - "timeLastUpdated": "2023-06-06T23:10:40.931Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000003e", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#62", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/62", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/62" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/85154c4849c33513e9899acce07620f9", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/62", - "format": "png" - } - ], - "metadata": { - "name": "#62", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/62", - "external_url": "https://www.proof.xyz/moonbirds/62", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2042"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.520Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000003f", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#63", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/63", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/63" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/a6a8443e832ef3cd3f184d7cec7b472f", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/63", - "format": "png" - } - ], - "metadata": { - "name": "#63", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/63", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Halo", - "trait_type": "Headwear" - }, - { - "value": "Professor", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1710"] - }, - "timeLastUpdated": "2023-06-06T22:52:41.456Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000040", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#64", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/64", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/64" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/788526367c40695a86137834ec117bb0", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/64", - "format": "png" - } - ], - "metadata": { - "name": "#64", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/64", - "external_url": "https://www.proof.xyz/moonbirds/64", - "attributes": [ - { - "value": "Rose-Colored Glasses", - "trait_type": "Eyewear" - }, - { - "value": "Moon Hat", - "trait_type": "Headwear" - }, - { - "value": "Skeleton", - "trait_type": "Body" - }, - { - "value": "Bone", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:3353"] - }, - "timeLastUpdated": "2023-05-24T13:00:41.340Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000041", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#65", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/65", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/65" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/984245844230212aa850e0563e68d4ad", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/65", - "format": "png" - } - ], - "metadata": { - "name": "#65", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/65", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Rainbow", - "trait_type": "Eyes" - }, - { - "value": "Moon Hat", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Brown", - "trait_type": "Feathers" - }, - { - "value": "Gray", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:328"] - }, - "timeLastUpdated": "2023-06-07T20:00:40.775Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000042", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#66", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/66", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/66" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/2edffca8ed479a903c16248c5f0139f2", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/66", - "format": "png" - } - ], - "metadata": { - "name": "#66", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/66", - "external_url": "https://www.proof.xyz/moonbirds/66", - "attributes": [ - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Tranquil", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:7706"] - }, - "timeLastUpdated": "2023-06-06T07:40:38.897Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000043", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#67", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/67", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/67" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/c0c055f51ca0afb7940b374764a3f3aa", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/67", - "format": "png" - } - ], - "metadata": { - "name": "#67", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/67", - "external_url": "https://www.proof.xyz/moonbirds/67", - "attributes": [ - { - "value": "Side-eye", - "trait_type": "Eyes" - }, - { - "value": "Beanie", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Green", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2401"] - }, - "timeLastUpdated": "2023-05-31T21:20:40.865Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000044", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#68", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/68", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/68" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/6a78d9232d4e56a3a65ddc8cb5204446", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/68", - "format": "png" - } - ], - "metadata": { - "name": "#68", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/68", - "external_url": "https://www.proof.xyz/moonbirds/68", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Skully", - "trait_type": "Headwear" - }, - { - "value": "Professor", - "trait_type": "Body" - }, - { - "value": "Purple", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:3070"] - }, - "timeLastUpdated": "2023-05-21T09:22:42.332Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000045", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#69", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/69", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/69" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/66ac596bf479568f634ebded080ca3f1", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/69", - "format": "png" - } - ], - "metadata": { - "name": "#69", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/69", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Monocle", - "trait_type": "Eyewear" - }, - { - "value": "Professor", - "trait_type": "Body" - }, - { - "value": "Brown", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2882"] - }, - "timeLastUpdated": "2023-06-06T22:46:41.041Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000046", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#70", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/70", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/70" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/4b109a13f95921b1ae8388ae97b53173", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/70", - "format": "png" - } - ], - "metadata": { - "name": "#70", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/70", - "external_url": "https://www.proof.xyz/moonbirds/70", - "attributes": [ - { - "value": "Moon", - "trait_type": "Eyes" - }, - { - "value": "Bucket Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Black", - "trait_type": "Feathers" - }, - { - "value": "Gray", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:5876"] - }, - "timeLastUpdated": "2023-06-07T20:04:40.732Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000047", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#71", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/71", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/71" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/52c9237be6ec7197856f808b38d5056c", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/71", - "format": "png" - } - ], - "metadata": { - "name": "#71", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/71", - "external_url": "https://www.proof.xyz/moonbirds/71", - "attributes": [ - { - "value": "Adorable", - "trait_type": "Eyes" - }, - { - "value": "Bomber Jacket", - "trait_type": "Outerwear" - }, - { - "value": "Queen's Crown", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:8037"] - }, - "timeLastUpdated": "2023-06-07T19:52:41.002Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000048", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#72", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/72", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/72" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d7cd014e3561446613038e5f1243248a", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/72", - "format": "png" - } - ], - "metadata": { - "name": "#72", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/72", - "external_url": "https://www.proof.xyz/moonbirds/72", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Brave", - "trait_type": "Body" - }, - { - "value": "Pink", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:50"] - }, - "timeLastUpdated": "2023-04-17T20:50:41.052Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000049", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#73", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/73", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/73" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/75522a20414348a65f4121508398a560", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/73", - "format": "png" - } - ], - "metadata": { - "name": "#73", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/73", - "external_url": "https://www.proof.xyz/moonbirds/73", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "Black", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2090"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.577Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000004a", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#74", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/74", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/74" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/ece6261a49453749489bac64aeb21f57", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/74", - "format": "png" - } - ], - "metadata": { - "name": "#74", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/74", - "external_url": "https://www.proof.xyz/moonbirds/74", - "attributes": [ - { - "value": "Black-rimmed Glasses", - "trait_type": "Eyewear" - }, - { - "value": "Grail", - "trait_type": "Headwear" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:6450"] - }, - "timeLastUpdated": "2023-04-22T14:28:41.252Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000004b", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#75", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/75", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/75" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/7b4cf5aec06181b3a11a03ccc78050bd", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/75", - "format": "png" - } - ], - "metadata": { - "name": "#75", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/75", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Side-eye", - "trait_type": "Eyes" - }, - { - "value": "Tranquil", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:5200"] - }, - "timeLastUpdated": "2023-06-07T16:10:40.980Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000004c", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#76", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/76", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/76" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/c55b5092b773c825f48c110362b59a43", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/76", - "format": "png" - } - ], - "metadata": { - "name": "#76", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/76", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Bomber Jacket", - "trait_type": "Outerwear" - }, - { - "value": "Crescent Talisman", - "trait_type": "Headwear" - }, - { - "value": "Tabby", - "trait_type": "Body" - }, - { - "value": "Purple", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2243"] - }, - "timeLastUpdated": "2023-06-07T16:10:41.255Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000004d", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#77", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/77", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/77" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/8a6cf83ed1cc2a4e0eb57801983abef0", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/77", - "format": "png" - } - ], - "metadata": { - "name": "#77", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/77", - "external_url": "https://www.proof.xyz/moonbirds/77", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Hoodie Down", - "trait_type": "Outerwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Purple", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:9897"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.539Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000004e", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#78", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/78", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/78" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/f14a9b300befa6c70ef851d8d94aac77", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/78", - "format": "png" - } - ], - "metadata": { - "name": "#78", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/78", - "external_url": "https://www.proof.xyz/moonbirds/78", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Pirate's Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:9028"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.560Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000004f", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#79", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/79", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/79" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d1747cc103ddb37aec263c5f274db24b", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/79", - "format": "png" - } - ], - "metadata": { - "name": "#79", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/79", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Adorable", - "trait_type": "Eyes" - }, - { - "value": "Crescent Talisman", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:6754"] - }, - "timeLastUpdated": "2023-05-21T09:34:41.200Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000050", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#80", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/80", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/80" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/021caba326dbbe98d4863a292e56763c", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/80", - "format": "png" - } - ], - "metadata": { - "name": "#80", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/80", - "external_url": "https://www.proof.xyz/moonbirds/80", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Wizard's Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Gray", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:8674"] - }, - "timeLastUpdated": "2023-06-02T09:36:42.938Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000051", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#81", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/81", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/81" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/e4ad827fc9add29d07b075f9e92747f7", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/81", - "format": "png" - } - ], - "metadata": { - "name": "#81", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/81", - "external_url": "https://www.proof.xyz/moonbirds/81", - "attributes": [ - { - "value": "Diamond", - "trait_type": "Eyes" - }, - { - "value": "Skully", - "trait_type": "Headwear" - }, - { - "value": "Brave", - "trait_type": "Body" - }, - { - "value": "Purple", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:7469"] - }, - "timeLastUpdated": "2023-06-07T16:58:41.643Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000052", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#82", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/82", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/82" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/ca4042a5d315c6bb25518fc9f6361877", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/82", - "format": "png" - } - ], - "metadata": { - "name": "#82", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/82", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Brave", - "trait_type": "Body" - }, - { - "value": "Black", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1872"] - }, - "timeLastUpdated": "2023-05-24T14:18:41.318Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000053", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#83", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/83", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/83" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/6326b25fbf370bca10deb9db3391af8b", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/83", - "format": "png" - } - ], - "metadata": { - "name": "#83", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/83", - "external_url": "https://www.proof.xyz/moonbirds/83", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Tabby", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:4386"] - }, - "timeLastUpdated": "2023-06-06T23:18:40.846Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000054", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#84", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/84", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/84" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/fc1af066f57cbf95192cdbf1268209c0", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/84", - "format": "png" - } - ], - "metadata": { - "name": "#84", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/84", - "external_url": "https://www.proof.xyz/moonbirds/84", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Jean Jacket", - "trait_type": "Outerwear" - }, - { - "value": "Captain's Cap", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:7122"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.597Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000055", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#85", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/85", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/85" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/fed66e032997be3005ad28a40cd45034", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/85", - "format": "png" - } - ], - "metadata": { - "name": "#85", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/85", - "external_url": "https://www.proof.xyz/moonbirds/85", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Tranquil", - "trait_type": "Body" - }, - { - "value": "Purple", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:8088"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.598Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000056", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#86", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/86", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/86" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/fe312e38075102a512ccd7e854b37052", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/86", - "format": "png" - } - ], - "metadata": { - "name": "#86", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/86", - "external_url": "https://www.proof.xyz/moonbirds/86", - "attributes": [ - { - "value": "Diamond", - "trait_type": "Eyes" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Brown", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:7035"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.535Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000057", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#87", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/87", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/87" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d022d4c23ea7b77eed7283a838260fff", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/87", - "format": "png" - } - ], - "metadata": { - "name": "#87", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/87", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "Pink", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:7529"] - }, - "timeLastUpdated": "2023-05-24T17:52:41.065Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000058", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#88", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/88", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/88" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/424a7446b8e50ec5a1b0bc10de135f8d", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/88", - "format": "png" - } - ], - "metadata": { - "name": "#88", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/88", - "external_url": "https://www.proof.xyz/moonbirds/88", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Tiny Crown", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Purple", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:4455"] - }, - "timeLastUpdated": "2023-05-24T17:36:40.962Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000059", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#89", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/89", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/89" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/51881fd83c438fa6065690cfcb013939", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/89", - "format": "png" - } - ], - "metadata": { - "name": "#89", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/89", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Tiny Crown", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:5156"] - }, - "timeLastUpdated": "2023-05-24T13:20:41.526Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000005a", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#90", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/90", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/90" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/3e810b07b3246819659bb9fd6d4c69c9", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/90", - "format": "png" - } - ], - "metadata": { - "name": "#90", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/90", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Skully", - "trait_type": "Headwear" - }, - { - "value": "Tranquil", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:3470"] - }, - "timeLastUpdated": "2023-06-06T22:38:42.129Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000005b", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#91", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/91", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/91" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/bb66c658ab0cfb9881fd35fcbfb54e16", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/91", - "format": "png" - } - ], - "metadata": { - "name": "#91", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/91", - "external_url": "https://www.proof.xyz/moonbirds/91", - "attributes": [ - { - "value": "Side-eye", - "trait_type": "Eyes" - }, - { - "value": "Space Helmet", - "trait_type": "Headwear" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1129"] - }, - "timeLastUpdated": "2023-06-06T22:52:41.372Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000005c", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#92", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/92", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/92" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/378e0a1852d692d259fa95920a78dab5", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/92", - "format": "png" - } - ], - "metadata": { - "name": "#92", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/92", - "external_url": "https://www.proof.xyz/moonbirds/92", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Sage", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:128"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.580Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000005d", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#93", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/93", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/93" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/803d1df974d09fd8142c3c4169d10955", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/93", - "format": "png" - } - ], - "metadata": { - "name": "#93", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/93", - "external_url": "https://www.proof.xyz/moonbirds/93", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Headphones", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:8935"] - }, - "timeLastUpdated": "2023-06-05T20:30:40.971Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000005e", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#94", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/94", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/94" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/c20b0d3c70a8685021e54de4d809f00c", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/94", - "format": "png" - } - ], - "metadata": { - "name": "#94", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/94", - "external_url": "https://www.proof.xyz/moonbirds/94", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Bucket Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:433"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.533Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000005f", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#95", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/95", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/95" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/b5770e006ad2b34120cc95df2bfc042b", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/95", - "format": "png" - } - ], - "metadata": { - "name": "#95", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/95", - "external_url": "https://www.proof.xyz/moonbirds/95", - "attributes": [ - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Hero's Tunic", - "trait_type": "Outerwear" - }, - { - "value": "Hero's Cap", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Gray", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:3681"] - }, - "timeLastUpdated": "2023-06-06T22:42:41.024Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000060", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#96", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/96", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/96" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/a8ecefb5e6b444f97c3925b7abe5d7ed", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/96", - "format": "png" - } - ], - "metadata": { - "name": "#96", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/96", - "external_url": "https://www.proof.xyz/moonbirds/96", - "attributes": [ - { - "value": "Black-rimmed Glasses", - "trait_type": "Eyewear" - }, - { - "value": "Fire", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Purple", - "trait_type": "Feathers" - }, - { - "value": "Gray", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:3853"] - }, - "timeLastUpdated": "2023-05-24T13:16:40.966Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000061", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#97", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/97", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/97" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/fd670b145db405ba45fdbf8b7c5ccfe9", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/97", - "format": "png" - } - ], - "metadata": { - "name": "#97", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/97", - "external_url": "https://www.proof.xyz/moonbirds/97", - "attributes": [ - { - "value": "Rose-Colored Glasses", - "trait_type": "Eyewear" - }, - { - "value": "Emperor", - "trait_type": "Body" - }, - { - "value": "Brown", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:4361"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.508Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000062", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#98", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/98", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/98" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/9fe5a4619a8a153af56a336be0bcede2", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/98", - "format": "png" - } - ], - "metadata": { - "name": "#98", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/98", - "external_url": "https://www.proof.xyz/moonbirds/98", - "attributes": [ - { - "value": "Adorable", - "trait_type": "Eyes" - }, - { - "value": "Backwards Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Gray", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1429"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.589Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000063", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#99", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/99", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/99" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/f563a136f0f42b8adbbd872c6e93df09", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/99", - "format": "png" - } - ], - "metadata": { - "name": "#99", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/99", - "external_url": "https://www.proof.xyz/moonbirds/99", - "attributes": [ - { - "value": "Fire", - "trait_type": "Eyes" - }, - { - "value": "Captain's Cap", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Green", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:4233"] - }, - "timeLastUpdated": "2023-06-06T22:42:40.824Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - } - ], - "nextToken": "0x0000000000000000000000000000000000000000000000000000000000000064" -} diff --git a/tests/fixtures/alchemy/get_nfts_for_collection_exceeding_max_cap_supply.json b/tests/fixtures/alchemy/get_nfts_for_collection_exceeding_max_cap_supply.json deleted file mode 100644 index 5cb0d83aa..000000000 --- a/tests/fixtures/alchemy/get_nfts_for_collection_exceeding_max_cap_supply.json +++ /dev/null @@ -1,545 +0,0 @@ -{ - "nfts": [ - { - "contract": { - "address": "0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000476c", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "godsdog", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0x676f6473646f6700000000000000000000000000000000000000000000000000", - "tokenUri": { - "gateway": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/18284", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/18284" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/38b0e9f7feb10405a48d04236e40c4a4", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/38b0e9f7feb10405a48d04236e40c4a4", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/18284", - "format": "svg+xml; charset=utf-8", - "bytes": 1944 - } - ], - "metadata": { - "name": "godsdog", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0x676f6473646f6700000000000000000000000000000000000000000000000000", - "image": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/18284", - "external_url": "https://linagee.vision/", - "attributes": [ - { - "value": "Yes", - "trait_type": "Normalized" - }, - { - "value": 7, - "trait_type": "Length" - }, - { - "value": "No", - "trait_type": "1 Digit" - }, - { - "value": "No", - "trait_type": "2 Digits" - }, - { - "value": "No", - "trait_type": "3 Digits" - }, - { - "value": "No", - "trait_type": "4 Digits" - }, - { - "value": "No", - "trait_type": "5 Digits" - }, - { - "value": "No", - "trait_type": "1 Letter (lowercase)" - }, - { - "value": "No", - "trait_type": "1 Letter (uppercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "Arabic 1 Digit" - }, - { - "value": "No", - "trait_type": "Arabic 2 Digits" - }, - { - "value": "No", - "trait_type": "Arabic 3 Digits" - }, - { - "value": "No", - "trait_type": "Emoji only" - }, - { - "value": "No", - "trait_type": "Historic" - } - ] - }, - "timeLastUpdated": "2023-07-14T12:00:39.059Z", - "contractMetadata": { - "name": "ETHRegistrarLinageeWrapper", - "symbol": "ERLW", - "totalSupply": "100000", - "tokenType": "ERC721", - "contractDeployer": "0x9ff81de5f866f4691f18392792be16f63f586ff7", - "deployedBlockNumber": 15663114, - "openSea": { - "floorPrice": 0.000089999, - "collectionName": "Linagee Name Registrar (LNR)", - "safelistRequestStatus": "approved", - "imageUrl": "https://i.seadn.io/gcs/files/240ac5920778f5ae0de8a3f6176b4d3c.png?w=500&auto=format", - "description": "By Linagee, from the first NFT contract on Ethereum, launched August 8, 2015. \n \nDisclaimer: \nPlease use the bytecode to confirm any names. The categories act as a guide but we cannot guarantee the accuracy of every name.", - "externalUrl": "https://linagee.vision/", - "twitterUsername": "LinageeDomains", - "discordUrl": "https://discord.gg/DAKRWGfMyx", - "lastIngestedAt": "2023-07-13T22:51:19.000Z" - } - } - }, - { - "contract": { - "address": "0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000bd39", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "وحيد", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0xd988d8add98ad8af000000000000000000000000000000000000000000000000", - "tokenUri": { - "gateway": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/48441", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/48441" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/17f84142e5577fa117d101deb9bb9dcb", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/17f84142e5577fa117d101deb9bb9dcb", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/48441", - "format": "svg+xml; charset=utf-8", - "bytes": 2114 - } - ], - "metadata": { - "name": "وحيد", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0xd988d8add98ad8af000000000000000000000000000000000000000000000000", - "image": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/48441", - "external_url": "https://linagee.vision/", - "attributes": [ - { - "value": "Yes", - "trait_type": "Normalized" - }, - { - "value": 4, - "trait_type": "Length" - }, - { - "value": "No", - "trait_type": "1 Digit" - }, - { - "value": "No", - "trait_type": "2 Digits" - }, - { - "value": "No", - "trait_type": "3 Digits" - }, - { - "value": "No", - "trait_type": "4 Digits" - }, - { - "value": "No", - "trait_type": "5 Digits" - }, - { - "value": "No", - "trait_type": "1 Letter (lowercase)" - }, - { - "value": "No", - "trait_type": "1 Letter (uppercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "Arabic 1 Digit" - }, - { - "value": "No", - "trait_type": "Arabic 2 Digits" - }, - { - "value": "No", - "trait_type": "Arabic 3 Digits" - }, - { - "value": "No", - "trait_type": "Emoji only" - }, - { - "value": "No", - "trait_type": "Historic" - } - ] - }, - "timeLastUpdated": "2023-07-03T11:02:38.477Z", - "contractMetadata": { - "name": "ETHRegistrarLinageeWrapper", - "symbol": "ERLW", - "totalSupply": "100000", - "tokenType": "ERC721", - "contractDeployer": "0x9ff81de5f866f4691f18392792be16f63f586ff7", - "deployedBlockNumber": 15663114, - "openSea": { - "floorPrice": 0.000089999, - "collectionName": "Linagee Name Registrar (LNR)", - "safelistRequestStatus": "approved", - "imageUrl": "https://i.seadn.io/gcs/files/240ac5920778f5ae0de8a3f6176b4d3c.png?w=500&auto=format", - "description": "By Linagee, from the first NFT contract on Ethereum, launched August 8, 2015. \n \nDisclaimer: \nPlease use the bytecode to confirm any names. The categories act as a guide but we cannot guarantee the accuracy of every name.", - "externalUrl": "https://linagee.vision/", - "twitterUsername": "LinageeDomains", - "discordUrl": "https://discord.gg/DAKRWGfMyx", - "lastIngestedAt": "2023-07-13T22:51:19.000Z" - } - } - }, - { - "contract": { - "address": "0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000be5a", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "قادر", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0xd982d8a7d8afd8b1000000000000000000000000000000000000000000000000", - "tokenUri": { - "gateway": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/48730", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/48730" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/38a55da7d0107b1e577bf3ed384e4515", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/38a55da7d0107b1e577bf3ed384e4515", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/48730", - "format": "svg+xml; charset=utf-8", - "bytes": 1270 - } - ], - "metadata": { - "name": "قادر", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0xd982d8a7d8afd8b1000000000000000000000000000000000000000000000000", - "image": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/48730", - "external_url": "https://linagee.vision/", - "attributes": [ - { - "value": "Yes", - "trait_type": "Normalized" - }, - { - "value": 4, - "trait_type": "Length" - }, - { - "value": "No", - "trait_type": "1 Digit" - }, - { - "value": "No", - "trait_type": "2 Digits" - }, - { - "value": "No", - "trait_type": "3 Digits" - }, - { - "value": "No", - "trait_type": "4 Digits" - }, - { - "value": "No", - "trait_type": "5 Digits" - }, - { - "value": "No", - "trait_type": "1 Letter (lowercase)" - }, - { - "value": "No", - "trait_type": "1 Letter (uppercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "Arabic 1 Digit" - }, - { - "value": "No", - "trait_type": "Arabic 2 Digits" - }, - { - "value": "No", - "trait_type": "Arabic 3 Digits" - }, - { - "value": "No", - "trait_type": "Emoji only" - }, - { - "value": "No", - "trait_type": "Historic" - } - ] - }, - "timeLastUpdated": "2023-07-14T12:00:39.230Z", - "contractMetadata": { - "name": "ETHRegistrarLinageeWrapper", - "symbol": "ERLW", - "totalSupply": "100000", - "tokenType": "ERC721", - "contractDeployer": "0x9ff81de5f866f4691f18392792be16f63f586ff7", - "deployedBlockNumber": 15663114, - "openSea": { - "floorPrice": 0.000089999, - "collectionName": "Linagee Name Registrar (LNR)", - "safelistRequestStatus": "approved", - "imageUrl": "https://i.seadn.io/gcs/files/240ac5920778f5ae0de8a3f6176b4d3c.png?w=500&auto=format", - "description": "By Linagee, from the first NFT contract on Ethereum, launched August 8, 2015. \n \nDisclaimer: \nPlease use the bytecode to confirm any names. The categories act as a guide but we cannot guarantee the accuracy of every name.", - "externalUrl": "https://linagee.vision/", - "twitterUsername": "LinageeDomains", - "discordUrl": "https://discord.gg/DAKRWGfMyx", - "lastIngestedAt": "2023-07-13T22:51:19.000Z" - } - } - }, - { - "contract": { - "address": "0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000bec3", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "писька", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0xd0bfd0b8d181d18cd0bad0b00000000000000000000000000000000000000000", - "tokenUri": { - "gateway": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/48835", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/48835" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/a591c72da3a33035eeba7c9ff5f73564", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/a591c72da3a33035eeba7c9ff5f73564", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/48835", - "format": "svg+xml; charset=utf-8", - "bytes": 2689 - } - ], - "metadata": { - "name": "писька", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0xd0bfd0b8d181d18cd0bad0b00000000000000000000000000000000000000000", - "image": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/48835", - "external_url": "https://linagee.vision/", - "attributes": [ - { - "value": "Yes", - "trait_type": "Normalized" - }, - { - "value": 6, - "trait_type": "Length" - }, - { - "value": "No", - "trait_type": "1 Digit" - }, - { - "value": "No", - "trait_type": "2 Digits" - }, - { - "value": "No", - "trait_type": "3 Digits" - }, - { - "value": "No", - "trait_type": "4 Digits" - }, - { - "value": "No", - "trait_type": "5 Digits" - }, - { - "value": "No", - "trait_type": "1 Letter (lowercase)" - }, - { - "value": "No", - "trait_type": "1 Letter (uppercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "Arabic 1 Digit" - }, - { - "value": "No", - "trait_type": "Arabic 2 Digits" - }, - { - "value": "No", - "trait_type": "Arabic 3 Digits" - }, - { - "value": "No", - "trait_type": "Emoji only" - }, - { - "value": "No", - "trait_type": "Historic" - } - ] - }, - "timeLastUpdated": "2023-07-14T12:00:39.118Z", - "contractMetadata": { - "name": "ETHRegistrarLinageeWrapper", - "symbol": "ERLW", - "totalSupply": "100000", - "tokenType": "ERC721", - "contractDeployer": "0x9ff81de5f866f4691f18392792be16f63f586ff7", - "deployedBlockNumber": 15663114, - "openSea": { - "floorPrice": 0.000089999, - "collectionName": "Linagee Name Registrar (LNR)", - "safelistRequestStatus": "approved", - "imageUrl": "https://i.seadn.io/gcs/files/240ac5920778f5ae0de8a3f6176b4d3c.png?w=500&auto=format", - "description": "By Linagee, from the first NFT contract on Ethereum, launched August 8, 2015. \n \nDisclaimer: \nPlease use the bytecode to confirm any names. The categories act as a guide but we cannot guarantee the accuracy of every name.", - "externalUrl": "https://linagee.vision/", - "twitterUsername": "LinageeDomains", - "discordUrl": "https://discord.gg/DAKRWGfMyx", - "lastIngestedAt": "2023-07-13T22:51:19.000Z" - } - } - } - ], - "nextToken": "0x0000000000000000000000000000000000000000000000000000000000000064" - } diff --git a/tests/fixtures/alchemy/get_nfts_for_collection_last_page.json b/tests/fixtures/alchemy/get_nfts_for_collection_last_page.json deleted file mode 100644 index d6a5f62c6..000000000 --- a/tests/fixtures/alchemy/get_nfts_for_collection_last_page.json +++ /dev/null @@ -1,7544 +0,0 @@ -{ - "nfts": [ - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#0", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/0", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/0" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/cf6b9a68325d77bcdf3a02722b7a2f86", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/0", - "format": "png" - } - ], - "metadata": { - "name": "#0", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/0", - "external_url": "https://www.proof.xyz/moonbirds/0", - "attributes": [ - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Hoodie Down", - "trait_type": "Outerwear" - }, - { - "value": "Tabby", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:9650"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.507Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000001", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#1", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/1", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/1" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/44427abec3f9f7fffbb66705b596a062", - "raw": "data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPScyLjAnIGVuY29kaW5nPSd1dGYtOCcgdmlld0JveD0nMCAwIDM4OCA1NjAnIHByZXNlcnZlQXNwZWN0UmF0aW89J3hNaWRZTWlkJyB4bWxuczp4bGluaz0naHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluaycgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48c3R5bGU+QGZvbnQtZmFjZSB7Zm9udC1mYW1pbHk6J01hdGhjYXN0bGVzUmVtaXgtUmVndWxhcic7Zm9udC1kaXNwbGF5OmJsb2NrO3NyYzp1cmwoZGF0YTphcHBsaWNhdGlvbi9mb250LXdvZmYyO2NoYXJzZXQ9dXRmLTg7YmFzZTY0LEFBRUFBQUFLQUlBQUF3QWdUMU12TW5xWFBzNEFBQUVvQUFBQVlHTnRZWEJKMm8xMEFBQUJ2QUFBQU94bmJIbG0rNjJJV3dBQUFzUUFBQk04YUdWaFpDWnZQMjhBQUFDc0FBQUFObWhvWldFSjVnVFJBQUFBNUFBQUFDUm9iWFI0TExJREtnQUFBWWdBQUFBMGJHOWpZUnY0SHk0QUFBS29BQUFBSEcxaGVIQUFWZ015QUFBQkNBQUFBQ0J1WVcxbER3NHlYd0FBRmdBQUFBb0NjRzl6ZFArZkFESUFBQ0FFQUFBQUlBQUJBQUFBQWdHSkZWUnBVMThQUFBVSUN3UG9BQUFBQU52QlAxZ0FBQUFBM2RhNnF3QUEveFFGdHdQcUFBQUFDQUFDQUFBQUFBQUFBQUVBQUFRdC90c0FBQVhvQUFBQUFBVzNBQUVBQUFBQUFBQUFBQUFBQUFBQUFBQU5BQUVBQUFBTkFqNEFTQUFBQUFBQUFRQUFBQUFBQUFBQUFBQUE4d0FBQUFBQUJBTHlBWkFBQlFBQUFvb0NXQUFBQUVzQ2lnSllBQUFCWGdBeUFVSUFBQUlMQlFrRUJRUUNBZ1FBQUFBQkFBQVFBQUFBQUFBQUFBQUFSMDlQUndGQUFDNy8vd1F0L3RzQUFBUXRBU1VBQUFHZjM5Y0FBQUlZQXNvQUFBQWdBQUVENkFBQUFsZ0E3Z0ZpQURNQ1dBQWVBbGdBQUFMSEFETUR1Z0F6QmVnQU1RS2tBRE1ENkFCY0JUWUFNd1BzQUY4RVNRQXpBQUFBQkFBQUFBTUFBQUFrQUFBQUJBQUFBR1FBQXdBQkFBQUFKQUFEQUFvQUFBQmtBQVFBUUFBQUFBd0FDQUFDQUFRQUxpTEdKWkltMHllci8vOEFBQUF1SXNZbGtTYlRKNnYvLy8vVDNUemFjdGt5MkZzQUFRQUFBQUFBQUFBQUFBQUFBQUFNQUFBQUFBQ0lBQUFBQUFBQUFBb0FBQUF1QUFBQUxnQUFBQUVBQUNMR0FBQWl4Z0FBQUFJQUFDV1JBQUFsa2dBQUFBTUFBQ2JUQUFBbTB3QUFBQVVBQUNlckFBQW5xd0FBQUFZQUFUR1BBQUV4andBQUFBY0FBZlZJQUFIMVNBQUFBQWdBQWZWeEFBSDFjUUFBQUFrQUFmV3pBQUgxc3dBQUFBb0FBZlhnQUFIMTRRQUFBQXNBQUFBQUFCWUFLd0R4QW1vRE9nTmFCbkFHdFFnU0NPd0pOUW1lQUFFQTd2LzJBV29BZmdBTEFBQUZJaVkxTkRZek1oWVZGQVlCTEJva0pCb2FKQ1FLSUNRbUhoNG1KQ0FBQVFBekFQb0JMd0h2QUFrQUFEYzNKek0zRnpNSEZ5ZGZIMHRkSVNGZFN4OVMrbDR6WkdRelhqc0FKQUFlLzBBQ1JBTjlBQU1BQndBTEFBOEFFd0FYQUJzQUh3QWpBQ2NBS3dBdkFETUFOd0E3QUQ4QVF3QkhBRXNBVHdCVEFGY0FXd0JmQUdNQVp3QnJBRzhBY3dCM0FIc0Fmd0NEQUljQWl3Q1BBQUFYTlRNVk16VXpGVE0xTXhVbE5UTVZNelV6RlRNMU14VWxOVE1WTXpVekZUTTFNeFVsTlRNVk16VXpGVE0xTXhVbE5UTVZNelV6RlRNMU14VWxOVE1WTXpVekZUTTFNeFVsTlRNVk16VXpGVE0xTXhVbE5UTVZNelV6RlRNMU14VWxOVE1WTXpVekZUTTFNeFVsTlRNVk16VXpGVE0xTXhVbE5UTVZNelV6RlRNMU14VWxOVE1WTXpVekZUTTFNeFdDTXBZeWxqTDkyaktXTXBZeS9xSXlsaktXTXYzYU1wWXlsakwrb2pLV01wWXkvZG95bGpLV012NmlNcFl5bGpMOTJqS1dNcFl5L3FJeWxqS1dNdjNhTXBZeWxqTCtvaktXTXBZeS9kb3lsaktXTXNBdkx5OHZMeTlkTURBd01EQXdZQzB0TFMwdExWMHdNREF3TURCZkxpNHVMaTR1WHk4dkx5OHZMMTR1TGk0dUxpNWZMeTh2THk4dlhpNHVMaTR1TGw0d01EQXdNREJkTURBd01EQXdZQzh2THk4dkx3QUFTQUFBLzBZQ1dBTjRBQU1BQndBTEFBOEFFd0FYQUJzQUh3QWpBQ2NBS3dBdkFETUFOd0E3QUQ4QVF3QkhBRXNBVHdCVEFGY0FXd0JmQUdNQVp3QnJBRzhBY3dCM0FIc0Fmd0NEQUljQWl3Q1BBSk1BbHdDYkFKOEFvd0NuQUtzQXJ3Q3pBTGNBdXdDL0FNTUF4d0RMQU04QTB3RFhBTnNBM3dEakFPY0E2d0R2QVBNQTl3RDdBUDhCQXdFSEFRc0JEd0VUQVJjQkd3RWZBQUFWTlRNVk16VXpGVE0xTXhVek5UTVZNelV6RlRNMU14VWxOVE1WTXpVekZUTTFNeFV6TlRNVk16VXpGVE0xTXhVbE5UTVZNelV6RlRNMU14VXpOVE1WTXpVekZUTTFNeFVsTlRNVk16VXpGVE0xTXhVek5UTVZNelV6RlRNMU14VWxOVE1WTXpVekZUTTFNeFV6TlRNVk16VXpGVE0xTXhVbE5UTVZNelV6RlRNMU14VXpOVE1WTXpVekZUTTFNeFVsTlRNVk16VXpGVE0xTXhVek5UTVZNelV6RlRNMU14VWxOVE1WTXpVekZUTTFNeFV6TlRNVk16VXpGVE0xTXhVbE5UTVZNelV6RlRNMU14VXpOVE1WTXpVekZUTTFNeFVsTlRNVk16VXpGVE0xTXhVek5UTVZNelV6RlRNMU14VWxOVE1WTXpVekZUTTFNeFV6TlRNVk16VXpGVE0xTXhVbE5UTVZNelV6RlRNMU14VXpOVE1WTXpVekZUTTFNeFV4TWpJeU1qSXpNak14TS80S01qSXlNakl6TWpNeE16SDlxREV5TWpJeU1qTXlNekV6L2dveU1qSXlNak15TXpFek1mMm9NVEl5TWpJeU16SXpNVFArQ2pJeU1qSXlNekl6TVRNeC9hZ3hNakl5TWpJek1qTXhNLzRLTWpJeU1qSXpNak14TXpIOXFERXlNakl5TWpNeU16RXovZ295TWpJeU1qTXlNekV6TWYyb01USXlNakl5TXpJek1UUCtDakl5TWpJeU16SXpNVE14dWk4dkx5OHZMeTh2THk4dkwxd3dNREF3TURBd01EQXdNREJmTFMwdExTMHRMUzB0TFMwdFhEQXdNREF3TURBd01EQXdNRjR1TGk0dUxpNHVMaTR1TGk1ZUx5OHZMeTh2THk4dkx5OHZYUzR1TGk0dUxpNHVMaTR1TGw0dkx5OHZMeTh2THk4dkx5OWRMaTR1TGk0dUxpNHVMaTR1WFRBd01EQXdNREF3TURBd01Gd3dNREF3TURBd01EQXdNREJmTHk4dkx5OHZMeTh2THk4dkFBVUFNd0FBQXBRQytBQVhBRXdBYUFDRUFLQUFBQ0UxSmpVME56VW1OVFEzTlRNVkZoVVVCeFVXRlJRSEZTRTBOelVtSmpVME56VW1OVE1VRmhjMU5EWXpNaFlWRlRZMk5UTVVCeFVXRlJRSEZSWVZJelFtSnhVVUJpTWlKalUxQmdZVkFUVTBOak15RmhVVk5qWTFOQ1luRlJRR0l5SW1OVFVHQmhVVUZnVTFORFl6TWhZVkZUWTJOVFFtSnhVVUJpTWlKalUxQmdZVkZCWUZOVFEyTXpJV0ZSVTJOalUwSmljVkZBWWpJaVkxTlFZR0ZSUVdBZ1ZqWTJOakxHTmpZMlArQW1Ndk5HTmpOQllaQ1EwTUNSa1dOR05qWTJNMEZoa0pEQTBKSGhFQm5nb01EUWtaRmhjWUNRME1DaDRSRnY2cUNRME1DUmtXRmhrSkRBMEpHUllSQVkwS0RBMEpHQmNYR0FrTkRBb2VFUkVjRG8yT0RVVU1qNDROS3lzUGpJME9SUStNakE4Y2pBOUZCazVIakE5RURvMDNMd2NORVFzTEVRMElNRFdORGtRTmpvOE1SUTJPTmpFR0RCRUxDeEVNQnowcEFjUU5FUXNMRVEwSE16UTFNZ1lORVFzTEVRMEhQU2szTUw0TUVRc0xFUXdHTVRjMk1BY0xFUXNMRVFzSExqZ3JPOHNMRVFzTEVRc0dNVFkyTVFZTEVRc0xFUXNIUFNrck93QUFBZ0F6QUFNRGh3SHlBQWdBRHdBQUpUVWhOVGNoTnhjVkJTVW5CeUVISVFHUi9xTEVBWndxeXY0cUFiYWtJdjVpckFHOEEyR0p0ays1ZURlbmxFS2lBQVVBTWY4VUJiY0Q2Z0RCQWdRQ0lnSXVBajBBQUJjaUpqVTBOak16TmpZM0p3Y0dCaU1pSmpVME5qTXlGaGMzTnljR0l5SW1OVFEyTXpJWEZ6Y25JaVkxTkRZek1oWVZGeGN5Tno0Q056NENOeVkxQnk0Q0p5NERKeTRDSnk0Q0p5WTFORFkzSmlZMU5EWTJNeklXRmhjMk5qTXlGaGNXRmhjZUFoY2VBeGNlQXhjZUF4VVVCZ2NHQmdjR0JpTWlKaWNuSmlZaklnWUhCd1lHSnlZbU56WTJGeklXTXpZMk55Y0hCZ1luSmlZM05qWVhGaGMzTnljR0p5WW1KeVltSnc0RER3SUdCaWN5TmpVM056NEROejRDTnhjT0FnY1VCZ2NXRmhjMk5oY1dGeGMzSnlZbU56WVhGaFlIRnhjM0xnTTFORFl6TWg0Q0Z3Y3VBeU1pQmhVVUhnSVhGd2NuQnljbk5DWW5KZ1lIQmhZWE14Y0hKeVluSmdZVkJoWVhGamNYQndjbUppTW1Cd1lXRnhZMk56Y1hCeVlHQnhRV0Z4WTJOemMyTmpNeUZoY1hGaFl6TWpZMU5DNENKeTRDSnpjZUFoY2VBeFVVRkFjMk5qYzJORFUwSmlZbkxnTW5OeDRERng0Q0ZUWTJOVFF1QWljdUF5Y3VBeWN1QWljbUppY21KaU1pQmdjdUFpTWlCZ1lWRkJZWEZoWVhCeVltSndZVkZCY1dGaGNlQWhjZUF4Y2VBaGN1QWljM0Z3NENCdzRDQndZdkFpWW1JeUlHRlJRV016STNGd2NuSmlZaklnWVZGQll6TWpZM0Z3Y0hKaVlIQmhVVUZqTXlOamMzRndjbUJoVVVGaE1tSmljR0JpTWlKaVkxTkRjbUp6Y1dGelkyTXpJV0ZoVVVCeFlXRnljMk5UUW1JeUlIRmhZWEZnY3lOamNtSmljbUppY0dCaFVVRnZVUEZCUUpDQUlMQkFGNkJCUVBEaHdaRHc0VkExSUJMUWtZRHhZYkRTTUxPd0VPQ1JvUUVCSVFIVjhQQ1FVT0VBUUZDd29CQVFFWVBEVU9DaDBnSGd3TElTQUtDeHdhQ2dVR0F3UUhLa0FnRURwQUdnWWtHeUFtQndrdkZoRXpPQmdTVVdSaEpDTlhWRUVQSVM0ZERnb09EeW9KRENzUkRrTWFxZ2NTRGdZYUVoMEJGQThQRWdFQ0ZBa0RCQUVEREFRQmZBUVZEdzRhQVFJYkR5QUZVZ0VyQ2hnTUVnSWJYU2tKSVNRZUJxWWJBUklQREFvZHFnZ2lKUndEQWdZRkFoTUJCZ1VEQVFFbFd4d0ZHQXdpQ1RnQ0RnZ1pBUU1nRWc0QkdsTkNGamd5SVVFdkdVcFZVeUlMSVZKUlJ4Y25OaTlEUFExOUJYVnZYQ1FJQ3dVSEFRRUpCQWdhRGt3R0d3a01BUTRHR1FjNEJtVUNFd3dVQVFFUEJ3OFJBbzBGSGdNVkFnWUpEQXNCSUJRZUJ4RVNDS2thUVEwUkxDVTFNZzRPTkRnWERCYzNNZzBQTmprbkFRUUxCQUVSSUJZUk9VRTZFZ3NUTzBJOEVoWWdFZzRLRGh3dEh3OUJWRlFqSWw5aVR4SVpPalFTRXpJUkF4MGJGQ01KR1VBOUV4ZzRKd2tFR0I4U0R4SWVFd0VDRGl3UkNpRWhDZ3dlSHgwS0R6SXpFQUlIQndNVUZ3RUpEQVVGRXhNR0VoRmlKZ0VLQ2dVSENRUUdBaHdNVFFRUkR3a0xEd1lNRVFNNUJHTURGQXNVRUFnT0VBR01CeHNERmdpQ0NoOFhEUjhMRENFWUJTQVFEaEVaQ3g0UEVDTVlDQm9nQ2xRRkp4RVlEd3dYQ2hvZ0NCVUtDaFFNQ3hZTEFRRWs3QkVNRWdzQ0NBTUVGUVFMRUJJUEZ3VUdDZ01JQnhJUUVSVWRFZ1FJQ2hJTkVCUUtGd2NFQWg0cER4RXVLZ2tDQ0FFWlJFUVpFa1JXV0NZSkhTSVBFakF3RVFrSkJnOEVCUk1NRmlzZENRNEdCUlF6R1FRYURRb1pGZ1lFR1NZMElCOVdXMDRZTkhOdFdoc2FNaGNZRVFJVUVna0VIQUVDQWdZWEJSUUJBaE1NRWdrQkFRSUhBZ1FKQkFnQkFoSVNEeFVDQWcwQ0JBc0dBd0VOREFvMU1SdEJQQ3NGRVJnR0ZoTVBCeHdVQ0RSRlFoVVdQME1aQVJsRFFCWURCUU14TndzTkRRRUVIUmdFQ1FFTkVod0RBUllLR0JnQkN5QXFNeDA1THg0eE9Sb1FHamN2SGlZdUlEWXJIQVVqRXlFQ0d5QUlEd0VCQndRSUJnRVlFaGdZQXdJTkJRa0pBUUlFRVJzRkJnWUNFZ2tIQVFFSEJBY1lGZ0lCREFRSUFRRU9CeGtIQkFJQ0d3UUtHUndQSHg0WEJnWWdLQkVRRVNjZkJnWWFJU1lVQXdjREFnTUVCUW9GTVd0b0tpTkdRVE1QRHc4MFEwa2pLMnR2TXc0OEV4cFhhM0F5R0U1YVZCNGZNaVlZQkFZWEd3b0xHd2dYTGhJSUJ3NEtHeU1OQ1JJR0pURVhEUmN2SHdJRkJnUVpUUnNPSWgwSUpsbFdSaElaUURrUkZUYzNGQUxEQ1Nzd0V4RXRJd01JQXdzZEJ3OElCQWNHQVJZVEVBc05EUVVKQ0FRQkN4d1BCZ1VDQWhBSkJna0VGUmNaQVFJTkJBY0RZUTRoRXdvSURCMFpEZzBURXcwU0VBNE5EUjhiRXc0VEpBNVJDZ3NkRmhJSERBVVBLUVVIQncwR0JnMEdCQWNGR2hVQUJBQXovKzBDY1FNWUFCTUFGd0FiQUNzQUFBRWlMZ0kxTkQ0Q016SWVBaFVVRGdJREVUTVJBVFVoRlFVeU5qWTFOQ1ltSXlJR0JoVVVGaFlCVWk5U1BpTWpQbEl2TDFJK0l5TStVblNLL3B3Q1B2N2hMa3N0TFVzdUxrc3RMVXNCRHlNK1VpOHZVajRqSXo1U0x5OVNQaVArM2dNci9OVUJ3NEtDWlMxTExpNUxMUzFMTGk1TExRQUFDQUJjLzhNRGpRTGdBS29BdUFER0FOc0E1QURzQVBRQS9BQUFCU0ltSnlZbU5UUTJNeklXRnpZM056WTJOemMwTkRjMEp5WTFORFkzSmlZMU5EWTNKaVluSmlZbkJpTWlKalUwTmpjMk5qTXlGaFVVQmdjR0ZSUWVBaGMyTmpNeUZoYytBalUwSmljbU5UUTJNeklYTWhZVkZBWWpJaVluQmdZSEJnWUhGaFlWRkFZSEZoWVZGQWNHQmhVWEZoY1dGaGMyTmpNeUZoVVVJeWNHQmlNaUpqVTBOamMyTlRRbUppY0hCZ2N6QmdZaklpWW5NeVluSnc0Q0ZSUVdGeFlXRlJRR0V6STJOalUwSmlNaUJnWVZGQlloTWpZMU5DWW1JeUlHRlJRV0ZnY3lOeFl6TWpZMU5DWW5KaVlqSWc0Q0ZSUVdCekkyTXpNMUJnWUhGemNtSmljVkZqSUhOalkzSndZR0J4YzNKaVluQnhZV0FSSVFJQXdnS0NnVkN4TUVDd3dhRFJjS0FRRWhJUWNKQndrQ0Fna1ZEQXNXQ2hBZUdCa25JUXNoRUE0VkFRSUVEUklRQXg5clF6OWxJQVVVRVFFQ0JCWU5JaGNsS2lZVURCVUVDUklMQ2hRSUF3UUdDQWNJRWhJZUFSSVhDeFlLQlJJTEdDZzVEUXNnRVEwV0F3RURFUllHQkFrZkFTSXNJQjhxSlFFZERBTUZHUllEQVFJQ0Ztd1VKUmNwR2hNb0d5RUJCaWdoR3ljVUdTb1pKWFVPQ2dvT0NCQUtCZ01UQ2dZUUR3c1BGUXNWQ3dJUEdRdHFCd3NZRHdzV2lRa1NDUVlKRVF2SkJnb1JDUVVKRVQwYUZnTW5JaEVaRUFvT0RCc05HdzROQXdjREh4Z1lGd2tYQkEwMkhBMGJEUTBaRFEwWkRCb1NHQ0lsQVJVYUVBNEZDUVVJQ2dJV0doWUNQRHN5T0FRYkhBUUZDZ1FIQ3c0UU1TVWdGUndVREFzV0N3b1hEQkFpRVJrdkZ3WVdDUk1PRFNBWEhCa1pEQmtNQ2hBbUZ6b0JGUnNSRGdVS0JBZ0tCUndkQlFNZURoTU1DeFFOSUFJRElDSUZCQWdGQkFvRkRoRUJsaGdqRHhRWURoa1FIeUFnSHhBWkRoZ1VEU01hYlFvS0dBa0tGZ2NSSUJZZkhBY0pHRzhCS0FFQ0FpWWxBZ01CS0FFRkFRSUJJZ0lHQXg0YkJBWUNJZ0VDQUFBSkFEUC9mUVVEQTFnQUhRQXRBRDBBUVFCTUFIWUFpQUNWQUtFQUFDVTFORFl6TXpVaklpWTFFVFEyTXlFeUZoVVJGQVlqSXhVek1oWVZGU1VoTWpZMUVUUW1JeUVpQmhVUkZCWUZJaVkxRVRRMk16TXlGaFVSRkFZakF6TTFJeE15TlRRbUl5SUdGUlFXQVNJbUp5WW1OVFEzSmlZMU5EWTFOQ1lqSWpVME5qTXlGaFlWRkFZVkZCWVhOak15RmhjV0ZSUUdCU0kxTkRZMU56WTJNeUV5RmhjWEZSUWpKU0V5TlRRbUl5RWlCaFVVRmdjaE1qVTBJeUVpQmhVVUZnR3pGUThkWFJNZEhSTUNFaFFjSEJSZEhRNFYvajhCcWc4V0ZnLytWZzhWRmY2Y0R4WVdEN1lQRlJVUHVidTdYeFVNQ1FrTkRRUVhFaUlQRXlzQkVod0xLU1lQRGdrdEt3NE5GQTBSR2lCREV4QWYvRGNOQVNVQ0N3Y0Nod2NNQVNVTi9YRUNReEFKQi8yOUJnb0tDUUppRHcvOW5nY0tDbjBnRFJNNUhCUUNBeE1jSEJQOS9SUWNPUk1OSVBVV0R3RlhFQlVWRVA2cER4YitGZzhDU3hBVkZSRDl0UThXQWZ3Zy9pa1dDQTBOQ0FvTS9zME5DQXNzR0FVREJob1hFUjBLRVJFUENnVVlIZ29RSHdvTURBTVBHaG9XRnhRaENRd0JBZ0cxQndvS0I3VUVESVlRQndvS0J3Y0pUeEFSQ1FnSENRQUFBUUJmLy9FRGt3TExBQ3dBQUJjUk14RTNOaFlYRnhZeU56YzJGaGNYRmpZM056WVhGZ2NIQmlZbkp5WW1Cd2NHQmljbkppSUhCeEVoRlY4ZVV4SWFEa3NJQ1FpMUVSc1RwQWdMQ1R3VkVCQVZUQllhRWFNSENRaTNFQnNQVVFjS0NWMERFQThDMnY2UFFRNENFVmtLQ3RzVkFSVzZDUUVJTnhNUkVoTkZFd0VUdUFnQ0N0NFRBUkpoQ0FkSi92RWVBQUFCQURQL2VBUVdBMVlBVEFBQUZ5STFORDRFTndFMk16SVhOeWNtSmlNaUJpTWpJaVkxTkRZek1oY1hOelFtTlRRM05qTXlGaFVVQmlNaUp3Y1hGaFVVQmlNaUpqVTBOalUwSnljSEZoVVVCdzRDQnc0Q05RSWFLUzhzSFFNQmVnc09Ed2tqR0FVS0NRd01DZ2NORnlNUkhCSStzd0VURXhzYUp5VWJCd1NTT2hJYUVoSVhCZ3NaSlFjTFBKYWRTVDl0U1lnQ0JpazRQallsQXdHdURBb21HQVVGQlJrUEZSY1NQcHNDQkFFYUV4TWxHeG9uQWJrNkVoc1lIUjBPQ2d3TERnc2FKQWdNRVFvMGg0dzlORkF0QUFBQUFCNEJiZ0FCQUFBQUFBQUFBQzhBQUFBQkFBQUFBQUFCQUJZQUx3QUJBQUFBQUFBQ0FBY0FSUUFCQUFBQUFBQURBRHNBVEFBQkFBQUFBQUFFQUI0QWh3QUJBQUFBQUFBRkFBMEFwUUFCQUFBQUFBQUdBQndBc2dBQkFBQUFBQUFIQUNJQXpnQUJBQUFBQUFBSUFCVUE4QUFCQUFBQUFBQUpBQlFCQlFBQkFBQUFBQUFLQUNFQkdRQUJBQUFBQUFBTEFCOEJPZ0FCQUFBQUFBQU1BQjRCV1FBQkFBQUFBQUFOQVVzQmR3QUJBQUFBQUFBT0FCb0N3Z0FEQUFFRUNRQUFBRjRDM0FBREFBRUVDUUFCQUN3RE9nQURBQUVFQ1FBQ0FBNERaZ0FEQUFFRUNRQURBSFlEZEFBREFBRUVDUUFFQUR3RDZnQURBQUVFQ1FBRkFCb0VKZ0FEQUFFRUNRQUdBRGdFUUFBREFBRUVDUUFIQUVRRWVBQURBQUVFQ1FBSUFDb0V2QUFEQUFFRUNRQUpBQ2dFNWdBREFBRUVDUUFLQUVJRkRnQURBQUVFQ1FBTEFENEZVQUFEQUFFRUNRQU1BRHdGamdBREFBRUVDUUFOQXBZRnlnQURBQUVFQ1FBT0FEUUlZRU52Y0hseWFXZG9kQ0F5TURFMUlFZHZiMmRzWlNCTVRFTXVJRUZzYkNCU2FXZG9kSE1nVW1WelpYSjJaV1F1VG05MGJ5Qk5ZWFJvWTJGemRHeGxjeUJTWlcxcGVGSmxaM1ZzWVhKR2IyNTBSbTl5WjJVZ01pNHdJRG9nVG05MGJ5Qk5ZWFJvWTJGemRHeGxjeUJTWlcxcGVDQlNaV2QxYkdGeUlEb2dNVEV0TVRFdE1qQXlNVTV2ZEc4Z1RXRjBhR05oYzNSc1pYTWdVbVZ0YVhnZ1VtVm5kV3hoY2xabGNuTnBiMjRnTWk0d01EWk9iM1J2VFdGMGFHTmhjM1JzWlhOU1pXMXBlQzFTWldkMWJHRnlUbTkwYnlCcGN5QmhJSFJ5WVdSbGJXRnlheUJ2WmlCSGIyOW5iR1VnVEV4RExrMXZibTkwZVhCbElFbHRZV2RwYm1jZ1NXNWpMazF2Ym05MGVYQmxJRVJsYzJsbmJpQlVaV0Z0UkdWemFXZHVaV1FnWW5rZ1RXOXViM1I1Y0dVZ1pHVnphV2R1SUhSbFlXMHVhSFIwY0RvdkwzZDNkeTVuYjI5bmJHVXVZMjl0TDJkbGRDOXViM1J2TDJoMGRIQTZMeTkzZDNjdWJXOXViM1I1Y0dVdVkyOXRMM04wZFdScGIxUm9hWE1nUm05dWRDQlRiMlowZDJGeVpTQnBjeUJzYVdObGJuTmxaQ0IxYm1SbGNpQjBhR1VnVTBsTUlFOXdaVzRnUm05dWRDQk1hV05sYm5ObExDQldaWEp6YVc5dUlERXVNUzRnVkdocGN5QkdiMjUwSUZOdlpuUjNZWEpsSUdseklHUnBjM1J5YVdKMWRHVmtJRzl1SUdGdUlDSkJVeUJKVXlJZ1FrRlRTVk1zSUZkSlZFaFBWVlFnVjBGU1VrRk9WRWxGVXlCUFVpQkRUMDVFU1ZSSlQwNVRJRTlHSUVGT1dTQkxTVTVFTENCbGFYUm9aWElnWlhod2NtVnpjeUJ2Y2lCcGJYQnNhV1ZrTGlCVFpXVWdkR2hsSUZOSlRDQlBjR1Z1SUVadmJuUWdUR2xqWlc1elpTQm1iM0lnZEdobElITndaV05wWm1saklHeGhibWQxWVdkbExDQndaWEp0YVhOemFXOXVjeUJoYm1RZ2JHbHRhWFJoZEdsdmJuTWdaMjkyWlhKdWFXNW5JSGx2ZFhJZ2RYTmxJRzltSUhSb2FYTWdSbTl1ZENCVGIyWjBkMkZ5WlM1b2RIUndPaTh2YzJOeWFYQjBjeTV6YVd3dWIzSm5MMDlHVEFCREFHOEFjQUI1QUhJQWFRQm5BR2dBZEFBZ0FESUFNQUF4QURVQUlBQkhBRzhBYndCbkFHd0FaUUFnQUV3QVRBQkRBQzRBSUFCQkFHd0FiQUFnQUZJQWFRQm5BR2dBZEFCekFDQUFVZ0JsQUhNQVpRQnlBSFlBWlFCa0FDNEFUZ0J2QUhRQWJ3QWdBRTBBWVFCMEFHZ0FZd0JoQUhNQWRBQnNBR1VBY3dBZ0FGSUFaUUJ0QUdrQWVBQlNBR1VBWndCMUFHd0FZUUJ5QUVZQWJ3QnVBSFFBUmdCdkFISUFad0JsQUNBQU1nQXVBREFBSUFBNkFDQUFUZ0J2QUhRQWJ3QWdBRTBBWVFCMEFHZ0FZd0JoQUhNQWRBQnNBR1VBY3dBZ0FGSUFaUUJ0QUdrQWVBQWdBRklBWlFCbkFIVUFiQUJoQUhJQUlBQTZBQ0FBTVFBeEFDMEFNUUF4QUMwQU1nQXdBRElBTVFCT0FHOEFkQUJ2QUNBQVRRQmhBSFFBYUFCakFHRUFjd0IwQUd3QVpRQnpBQ0FBVWdCbEFHMEFhUUI0QUNBQVVnQmxBR2NBZFFCc0FHRUFjZ0JXQUdVQWNnQnpBR2tBYndCdUFDQUFNZ0F1QURBQU1BQTJBRTRBYndCMEFHOEFUUUJoQUhRQWFBQmpBR0VBY3dCMEFHd0FaUUJ6QUZJQVpRQnRBR2tBZUFBdEFGSUFaUUJuQUhVQWJBQmhBSElBVGdCdkFIUUFid0FnQUdrQWN3QWdBR0VBSUFCMEFISUFZUUJrQUdVQWJRQmhBSElBYXdBZ0FHOEFaZ0FnQUVjQWJ3QnZBR2NBYkFCbEFDQUFUQUJNQUVNQUxnQk5BRzhBYmdCdkFIUUFlUUJ3QUdVQUlBQkpBRzBBWVFCbkFHa0FiZ0JuQUNBQVNRQnVBR01BTGdCTkFHOEFiZ0J2QUhRQWVRQndBR1VBSUFCRUFHVUFjd0JwQUdjQWJnQWdBRlFBWlFCaEFHMEFSQUJsQUhNQWFRQm5BRzRBWlFCa0FDQUFZZ0I1QUNBQVRRQnZBRzRBYndCMEFIa0FjQUJsQUNBQVpBQmxBSE1BYVFCbkFHNEFJQUIwQUdVQVlRQnRBQzRBYUFCMEFIUUFjQUE2QUM4QUx3QjNBSGNBZHdBdUFHY0Fid0J2QUdjQWJBQmxBQzRBWXdCdkFHMEFMd0JuQUdVQWRBQXZBRzRBYndCMEFHOEFMd0JvQUhRQWRBQndBRG9BTHdBdkFIY0Fkd0IzQUM0QWJRQnZBRzRBYndCMEFIa0FjQUJsQUM0QVl3QnZBRzBBTHdCekFIUUFkUUJrQUdrQWJ3QlVBR2dBYVFCekFDQUFSZ0J2QUc0QWRBQWdBRk1BYndCbUFIUUFkd0JoQUhJQVpRQWdBR2tBY3dBZ0FHd0FhUUJqQUdVQWJnQnpBR1VBWkFBZ0FIVUFiZ0JrQUdVQWNnQWdBSFFBYUFCbEFDQUFVd0JKQUV3QUlBQlBBSEFBWlFCdUFDQUFSZ0J2QUc0QWRBQWdBRXdBYVFCakFHVUFiZ0J6QUdVQUxBQWdBRllBWlFCeUFITUFhUUJ2QUc0QUlBQXhBQzRBTVFBdUFDQUFWQUJvQUdrQWN3QWdBRVlBYndCdUFIUUFJQUJUQUc4QVpnQjBBSGNBWVFCeUFHVUFJQUJwQUhNQUlBQmtBR2tBY3dCMEFISUFhUUJpQUhVQWRBQmxBR1FBSUFCdkFHNEFJQUJoQUc0QUlBQWlBRUVBVXdBZ0FFa0FVd0FpQUNBQVFnQkJBRk1BU1FCVEFDd0FJQUJYQUVrQVZBQklBRThBVlFCVUFDQUFWd0JCQUZJQVVnQkJBRTRBVkFCSkFFVUFVd0FnQUU4QVVnQWdBRU1BVHdCT0FFUUFTUUJVQUVrQVR3Qk9BRk1BSUFCUEFFWUFJQUJCQUU0QVdRQWdBRXNBU1FCT0FFUUFMQUFnQUdVQWFRQjBBR2dBWlFCeUFDQUFaUUI0QUhBQWNnQmxBSE1BY3dBZ0FHOEFjZ0FnQUdrQWJRQndBR3dBYVFCbEFHUUFMZ0FnQUZNQVpRQmxBQ0FBZEFCb0FHVUFJQUJUQUVrQVRBQWdBRThBY0FCbEFHNEFJQUJHQUc4QWJnQjBBQ0FBVEFCcEFHTUFaUUJ1QUhNQVpRQWdBR1lBYndCeUFDQUFkQUJvQUdVQUlBQnpBSEFBWlFCakFHa0FaZ0JwQUdNQUlBQnNBR0VBYmdCbkFIVUFZUUJuQUdVQUxBQWdBSEFBWlFCeUFHMEFhUUJ6QUhNQWFRQnZBRzRBY3dBZ0FHRUFiZ0JrQUNBQWJBQnBBRzBBYVFCMEFHRUFkQUJwQUc4QWJnQnpBQ0FBWndCdkFIWUFaUUJ5QUc0QWFRQnVBR2NBSUFCNUFHOEFkUUJ5QUNBQWRRQnpBR1VBSUFCdkFHWUFJQUIwQUdnQWFRQnpBQ0FBUmdCdkFHNEFkQUFnQUZNQWJ3Qm1BSFFBZHdCaEFISUFaUUF1QUdnQWRBQjBBSEFBT2dBdkFDOEFjd0JqQUhJQWFRQndBSFFBY3dBdUFITUFhUUJzQUM0QWJ3QnlBR2NBTHdCUEFFWUFUQUFBQUFNQUFBQUFBQUQvbkFBeUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQT0pIGZvcm1hdCgnd29mZicpO30ubWV0YXt3aWR0aDozODhweDtoZWlnaHQ6NTYwcHg7fS5ye2JveC1zaXppbmc6IGJvcmRlci1ib3g7d2lkdGg6Mzg4cHg7aGVpZ2h0OjU2MHB4O3BhZGRpbmc6MjRweDtmb250LXNpemU6MTVweDtkaXNwbGF5OmdyaWQ7Z3JpZC10ZW1wbGF0ZS1jb2x1bW5zOnJlcGVhdCgzMiwgMyUpO2dyaWQtdGVtcGxhdGUtcm93czogcmVwZWF0KDMyLCAxNnB4KTtncmlkLWdhcDogMHB4O2p1c3RpZnktY29udGVudDogc3BhY2UtYmV0d2Vlbjt9cHtmb250LWZhbWlseTonTWF0aGNhc3RsZXNSZW1peC1SZWd1bGFyJyxtb25vc3BhY2U7bWFyZ2luOjA7dGV4dC1hbGlnbjogY2VudGVyO2Rpc3BsYXk6ZmxleDtqdXN0aWZ5LWNvbnRlbnQ6Y2VudGVyO2FsaWduLWl0ZW1zOmNlbnRlcjt9LmF7Y29sb3I6I2U0MDUxMzt9LmJ7Y29sb3I6I2ZlZmVmZTt9LmN7Y29sb3I6I2ZlZmVmZTt9LmR7Y29sb3I6I2M5Y2RjMzt9LmV7Y29sb3I6I2U0MDUxMzt9LmZ7Y29sb3I6IzAxNzNiODt9Lmd7Y29sb3I6I2M5Y2RjMzt9Lmh7Y29sb3I6IzI3MjAyMjt9Lml7Y29sb3I6I2M5Y2RjMzt9LnJ7YmFja2dyb3VuZC1jb2xvcjojMWExYTFhO308L3N0eWxlPjxmb3JlaWduT2JqZWN0IHg9JzAnIHk9JzAnIHdpZHRoPSczODgnIGhlaWdodD0nNTYwJz48ZGl2IGNsYXNzPSdtZXRhJyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMTk5OS94aHRtbCc+PGRpdiBjbGFzcz0ncic+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PHAgY2xhc3M9J2EnPvCflrM8L3A+PC9kaXY+PC9kaXY+PC9mb3JlaWduT2JqZWN0PjxzdHlsZT5ib2R5LCBzdmd7b3ZlcmZsb3cteDpoaWRkZW47IG92ZXJmbG93LXk6IGhpZGRlbjsgbWFyZ2luOjA7IHBhZGRpbmc6MH08L3N0eWxlPjwvc3ZnPg==", - "format": "png" - } - ], - "metadata": { - "name": "#1", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/1", - "external_url": "https://www.proof.xyz/moonbirds/1", - "attributes": [ - { - "value": "Rainbow", - "trait_type": "Eyes" - }, - { - "value": "Jean Jacket", - "trait_type": "Outerwear" - }, - { - "value": "Tabby", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:6429"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.527Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000002", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#2", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/2", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/2" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/3621c5a5350b1ba404478dd65667f116", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/2", - "format": "png" - } - ], - "metadata": { - "name": "#2", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/2", - "external_url": "https://www.proof.xyz/moonbirds/2", - "attributes": [ - { - "value": "Side-eye", - "trait_type": "Eyes" - }, - { - "value": "Skully", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:5717"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.547Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000003", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#3", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/3", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/3" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/0b5641b315b445fc0b8c34ce6b40b2ce", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/3", - "format": "png" - } - ], - "metadata": { - "name": "#3", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/3", - "external_url": "https://www.proof.xyz/moonbirds/3", - "attributes": [ - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Eyepatch", - "trait_type": "Eyewear" - }, - { - "value": "Professor", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:6109"] - }, - "timeLastUpdated": "2023-06-07T16:10:40.991Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000004", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#4", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/4", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/4" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/79c9f91c14bc58fa2cea9538689737d2", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/4", - "format": "png" - } - ], - "metadata": { - "name": "#4", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/4", - "external_url": "https://www.proof.xyz/moonbirds/4", - "attributes": [ - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Backwards Hat", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:7611"] - }, - "timeLastUpdated": "2023-05-24T13:14:41.398Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000005", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#5", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/5", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/5" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/85798d660b668110dc47124d3bdb52c7", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/5", - "format": "png" - } - ], - "metadata": { - "name": "#5", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/5", - "external_url": "https://www.proof.xyz/moonbirds/5", - "attributes": [ - { - "value": "Side-eye", - "trait_type": "Eyes" - }, - { - "value": "Brave", - "trait_type": "Body" - }, - { - "value": "Purple", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:4601"] - }, - "timeLastUpdated": "2023-06-05T20:30:41.110Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000006", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#6", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/6", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/6" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/c1bef2664613f3605d8b8f6091afa0d7", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/6", - "format": "png" - } - ], - "metadata": { - "name": "#6", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/6", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Lincoln", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Black", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:7815"] - }, - "timeLastUpdated": "2023-06-06T22:42:42.325Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000007", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#7", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/7", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/7" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/714244b1cfe9fa01c7ac68a2b0ca247b", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/7", - "format": "png" - } - ], - "metadata": { - "name": "#7", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/7", - "external_url": "https://www.proof.xyz/moonbirds/7", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Punk Jacket", - "trait_type": "Outerwear" - }, - { - "value": "Moon Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:3694"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.541Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000008", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#8", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/8", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/8" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/55f84dc7a16999ac9fc726b7d67a0e5f", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/8", - "format": "png" - } - ], - "metadata": { - "name": "#8", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/8", - "external_url": "https://www.proof.xyz/moonbirds/8", - "attributes": [ - { - "value": "Gazelles", - "trait_type": "Eyewear" - }, - { - "value": "Mohawk (Green)", - "trait_type": "Headwear" - }, - { - "value": "Tranquil", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2229"] - }, - "timeLastUpdated": "2023-05-24T17:36:41.068Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000009", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#9", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/9", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/9" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-goerli/3d2336f5deb3d24c4ce19fc4f8e422b1", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/9", - "format": "png" - } - ], - "metadata": { - "name": "#9", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/9", - "external_url": "https://www.proof.xyz/moonbirds/9", - "attributes": [ - { - "value": "Jobs Glasses", - "trait_type": "Eyewear" - }, - { - "value": "Moon Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:6047"] - }, - "timeLastUpdated": "2023-06-06T18:28:40.837Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000000a", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#10", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/10", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/10" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/8e1bd7b392b87e86862b0d03192ceb79", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/10", - "format": "png" - } - ], - "metadata": { - "name": "#10", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/10", - "external_url": "https://www.proof.xyz/moonbirds/10", - "attributes": [ - { - "value": "Side-eye", - "trait_type": "Eyes" - }, - { - "value": "Backwards Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:7727"] - }, - "timeLastUpdated": "2023-06-06T23:18:38.267Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000000b", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#11", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/11", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/11" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d685ebba95284d13b9c2fa9edc2bdd0f", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/11", - "format": "png" - } - ], - "metadata": { - "name": "#11", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/11", - "external_url": "https://www.proof.xyz/moonbirds/11", - "attributes": [ - { - "value": "Rainbow", - "trait_type": "Eyes" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:6931"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.577Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000000c", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#12", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/12", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/12" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/c7c2eb1091cefc26b66f9dc510429e82", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/12", - "format": "png" - } - ], - "metadata": { - "name": "#12", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/12", - "external_url": "https://www.proof.xyz/moonbirds/12", - "attributes": [ - { - "value": "Visor", - "trait_type": "Eyewear" - }, - { - "value": "Punk Jacket", - "trait_type": "Outerwear" - }, - { - "value": "Chromie", - "trait_type": "Headwear" - }, - { - "value": "Robot", - "trait_type": "Body" - }, - { - "value": "Metal", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:8928"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.551Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000000d", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#13", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/13", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/13" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/4e18b775000b22fd13ba5798b45c1376", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/13", - "format": "png" - } - ], - "metadata": { - "name": "#13", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/13", - "external_url": "https://www.proof.xyz/moonbirds/13", - "attributes": [ - { - "value": "Gazelles", - "trait_type": "Eyewear" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "Black", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2112"] - }, - "timeLastUpdated": "2023-05-31T06:47:13.797Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000000e", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#14", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/14", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/14" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/dded8178cf1e1180cd6afccdb1f9894e", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/14", - "format": "png" - } - ], - "metadata": { - "name": "#14", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/14", - "external_url": "https://www.proof.xyz/moonbirds/14", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Gold Chain", - "trait_type": "Outerwear" - }, - { - "value": "Lincoln", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1675"] - }, - "timeLastUpdated": "2023-05-30T04:09:16.129Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000000f", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#15", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/15", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/15" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/09c92bc4cab3e5190c52d24d2af6311c", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/15", - "format": "png" - } - ], - "metadata": { - "name": "#15", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/15", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Gray", - "trait_type": "Background" - }, - { - "value": "Golden", - "trait_type": "Body" - }, - { - "value": "Legendary Emperor", - "trait_type": "Feathers" - }, - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Small", - "trait_type": "Beak" - }, - { - "value": "Skully", - "trait_type": "Headwear" - } - ], - "x_debug": ["orig:8697"] - }, - "timeLastUpdated": "2023-06-06T21:56:43.455Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000010", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#16", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/16", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/16" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/2936bb9825a1a4184864d98dc5421edb", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/16", - "format": "png" - } - ], - "metadata": { - "name": "#16", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/16", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Captain's Cap", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:682"] - }, - "timeLastUpdated": "2023-06-06T22:42:38.749Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000011", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#17", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/17", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/17" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/12293988c3c7089f7d5f013ed9af5511", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/17", - "format": "png" - } - ], - "metadata": { - "name": "#17", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/17", - "external_url": "https://www.proof.xyz/moonbirds/17", - "attributes": [ - { - "value": "Rainbow", - "trait_type": "Eyes" - }, - { - "value": "Headphones", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1364"] - }, - "timeLastUpdated": "2023-06-06T19:14:42.318Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000012", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#18", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/18", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/18" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/7da2a3d0c4182e3852be37edc7e4db81", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/18", - "format": "png" - } - ], - "metadata": { - "name": "#18", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/18", - "external_url": "https://www.proof.xyz/moonbirds/18", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2207"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.650Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000013", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#19", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/19", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/19" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/ef92f0b6a88147ae5075a310603c3017", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/19", - "format": "png" - } - ], - "metadata": { - "name": "#19", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/19", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Fire", - "trait_type": "Eyes" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "Brown", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2919"] - }, - "timeLastUpdated": "2023-06-07T16:06:41.113Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000014", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#20", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/20", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/20" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/13d7c7bf68509478238b4a8ff3c923b2", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/20", - "format": "png" - } - ], - "metadata": { - "name": "#20", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/20", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "3D Glasses", - "trait_type": "Eyewear" - }, - { - "value": "Fire", - "trait_type": "Headwear" - }, - { - "value": "Tabby", - "trait_type": "Body" - }, - { - "value": "Brown", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:6516"] - }, - "timeLastUpdated": "2023-05-24T13:00:41.235Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000015", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#21", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/21", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/21" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/4d218b1c5321c6934aaa96eb1af711d5", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/21", - "format": "png" - } - ], - "metadata": { - "name": "#21", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/21", - "external_url": "https://www.proof.xyz/moonbirds/21", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Brave", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:9871"] - }, - "timeLastUpdated": "2023-04-15T14:36:40.957Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000016", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#22", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/22", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/22" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/81d3544532f0b799e4e1afadc367999e", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/22", - "format": "png" - } - ], - "metadata": { - "name": "#22", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/22", - "external_url": "https://www.proof.xyz/moonbirds/22", - "attributes": [ - { - "value": "Moon", - "trait_type": "Eyes" - }, - { - "value": "Emperor", - "trait_type": "Body" - }, - { - "value": "Black", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1733"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.521Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000017", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#23", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/23", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/23" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/bfadbf84995eb3795b3041ca5ca5c433", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/23", - "format": "png" - } - ], - "metadata": { - "name": "#23", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/23", - "external_url": "https://www.proof.xyz/moonbirds/23", - "attributes": [ - { - "value": "Black-rimmed Glasses", - "trait_type": "Eyewear" - }, - { - "value": "Moon Hat", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Brown", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2792"] - }, - "timeLastUpdated": "2023-06-07T16:10:38.698Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000018", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#24", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/24", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/24" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/c11253adf5881e0c447fcc850a0caea4", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/24", - "format": "png" - } - ], - "metadata": { - "name": "#24", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/24", - "external_url": "https://www.proof.xyz/moonbirds/24", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "Pink", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:4491"] - }, - "timeLastUpdated": "2023-06-07T20:06:41.590Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000019", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#25", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/25", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/25" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/ceb5acd673b562fdeef982acd8db082d", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/25", - "format": "png" - } - ], - "metadata": { - "name": "#25", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/25", - "external_url": "https://www.proof.xyz/moonbirds/25", - "attributes": [ - { - "value": "Diamond", - "trait_type": "Eyes" - }, - { - "value": "Raincloud", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Brown", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2277"] - }, - "timeLastUpdated": "2023-06-05T15:32:41.114Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000001a", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#26", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/26", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/26" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/27c33cd3525b17c744a8fa8904de3ce7", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/26", - "format": "png" - } - ], - "metadata": { - "name": "#26", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/26", - "external_url": "https://www.proof.xyz/moonbirds/26", - "attributes": [ - { - "value": "Side-eye", - "trait_type": "Eyes" - }, - { - "value": "Forest Ranger", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2970"] - }, - "timeLastUpdated": "2023-05-24T17:34:41.050Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000001b", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#27", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/27", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/27" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/8f379c7f51008f29d7caead3346f0c5f", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/27", - "format": "png" - } - ], - "metadata": { - "name": "#27", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/27", - "external_url": "https://www.proof.xyz/moonbirds/27", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Headband", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Brown", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:5836"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.537Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000001c", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#28", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/28", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/28" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d5c32e1105cf1009618de5c6779bae93", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/28", - "format": "png" - } - ], - "metadata": { - "name": "#28", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/28", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Fire", - "trait_type": "Headwear" - }, - { - "value": "Tabby", - "trait_type": "Body" - }, - { - "value": "Pink", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:7574"] - }, - "timeLastUpdated": "2023-06-07T16:12:41.128Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000001d", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#29", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/29", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/29" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/de3eb31671a1f157b3abbc69de353b8e", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/29", - "format": "png" - } - ], - "metadata": { - "name": "#29", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/29", - "external_url": "https://www.proof.xyz/moonbirds/29", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Raincloud", - "trait_type": "Headwear" - }, - { - "value": "Tabby", - "trait_type": "Body" - }, - { - "value": "Black", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:5576"] - }, - "timeLastUpdated": "2023-06-06T19:10:44.110Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000001e", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#30", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/30", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/30" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/38b6c516384ca02120605d9afb36b7c8", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/30", - "format": "png" - } - ], - "metadata": { - "name": "#30", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/30", - "external_url": "https://www.proof.xyz/moonbirds/30", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Beanie", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:285"] - }, - "timeLastUpdated": "2023-05-24T17:30:40.857Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000001f", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#31", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/31", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/31" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/93373bedfac272c46f5538592eba69c4", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/31", - "format": "png" - } - ], - "metadata": { - "name": "#31", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/31", - "external_url": "https://www.proof.xyz/moonbirds/31", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Witch's Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2670"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.541Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000020", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#32", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/32", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/32" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/e6c63cd320e4fe7cb9065de4693d1f68", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/32", - "format": "png" - } - ], - "metadata": { - "name": "#32", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/32", - "external_url": "https://www.proof.xyz/moonbirds/32", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Half-moon Spectacles", - "trait_type": "Eyewear" - }, - { - "value": "Professor", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Small", - "trait_type": "Beak" - }, - { - "value": "Blue", - "trait_type": "Background" - } - ], - "x_debug": ["orig:1437"] - }, - "timeLastUpdated": "2023-06-05T15:32:41.481Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000021", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#33", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/33", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/33" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d8a2ac42df9f790b1bf3d7b2a7692698", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/33", - "format": "png" - } - ], - "metadata": { - "name": "#33", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/33", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Moon Hat", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Brown", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:408"] - }, - "timeLastUpdated": "2023-06-06T23:08:40.691Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000022", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#34", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/34", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/34" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/62ce9f3949c45f48e0177804a6b40a0e", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/34", - "format": "png" - } - ], - "metadata": { - "name": "#34", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/34", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Side-eye", - "trait_type": "Eyes" - }, - { - "value": "Professor", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1500"] - }, - "timeLastUpdated": "2023-06-06T07:50:41.017Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000023", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#35", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/35", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/35" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/51f8de47a99705dbbe7e266207f865e3", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/35", - "format": "png" - } - ], - "metadata": { - "name": "#35", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/35", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Emperor", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2839"] - }, - "timeLastUpdated": "2023-05-24T13:18:43.226Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000024", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#36", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/36", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/36" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d9826f6447ef39887b431d395f3fc869", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/36", - "format": "png" - } - ], - "metadata": { - "name": "#36", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/36", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Big Tech", - "trait_type": "Eyewear" - }, - { - "value": "Forest Ranger", - "trait_type": "Headwear" - }, - { - "value": "Robot", - "trait_type": "Body" - }, - { - "value": "Metal", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:6392"] - }, - "timeLastUpdated": "2023-05-24T17:50:44.085Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000025", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#37", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/37", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/37" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/f92d7460b527f2a4ee0a002c0894aadf", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/37", - "format": "png" - } - ], - "metadata": { - "name": "#37", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/37", - "external_url": "https://www.proof.xyz/moonbirds/37", - "attributes": [ - { - "value": "Sunglasses", - "trait_type": "Eyewear" - }, - { - "value": "Halo", - "trait_type": "Headwear" - }, - { - "value": "Skeleton", - "trait_type": "Body" - }, - { - "value": "Bone", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:3773"] - }, - "timeLastUpdated": "2023-06-07T16:12:41.192Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000026", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#38", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/38", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/38" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/da26709ab5df8a670073dc4298b12439", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/38", - "format": "png" - } - ], - "metadata": { - "name": "#38", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/38", - "external_url": "https://www.proof.xyz/moonbirds/38", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Bomber Jacket", - "trait_type": "Outerwear" - }, - { - "value": "Queen's Crown", - "trait_type": "Headwear" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:8913"] - }, - "timeLastUpdated": "2023-06-06T22:36:40.874Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000027", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#39", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/39", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/39" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/a930d0512c25324cf517d879a9de784f", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/39", - "format": "png" - } - ], - "metadata": { - "name": "#39", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/39", - "external_url": "https://www.proof.xyz/moonbirds/39", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Tiara", - "trait_type": "Headwear" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "Black", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1621"] - }, - "timeLastUpdated": "2023-06-06T23:14:38.795Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000028", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#40", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/40", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/40" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/02b66dab7a34ab200bffcc697ffb84cb", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/40", - "format": "png" - } - ], - "metadata": { - "name": "#40", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/40", - "external_url": "https://www.proof.xyz/moonbirds/40", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Moon Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:3112"] - }, - "timeLastUpdated": "2023-06-06T22:36:41.017Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000029", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#41", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/41", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/41" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/cbd54d6f2643fffc22f917e725f9e590", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/41", - "format": "png" - } - ], - "metadata": { - "name": "#41", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/41", - "external_url": "https://www.proof.xyz/moonbirds/41", - "attributes": [ - { - "value": "Rainbow", - "trait_type": "Eyes" - }, - { - "value": "Flower", - "trait_type": "Headwear" - }, - { - "value": "Tranquil", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:7300"] - }, - "timeLastUpdated": "2023-05-24T13:02:41.749Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000002a", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#42", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/42", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/42" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/328756515d614331da8925d5971c5d44", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/42", - "format": "png" - } - ], - "metadata": { - "name": "#42", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/42", - "external_url": "https://www.proof.xyz/moonbirds/42", - "attributes": [ - { - "value": "Heart", - "trait_type": "Eyes" - }, - { - "value": "Cowboy Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Black", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:868"] - }, - "timeLastUpdated": "2023-06-07T19:52:41.382Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000002b", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#43", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/43", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/43" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/602fb55d1586dd5099eb579a5835d7b7", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/43", - "format": "png" - } - ], - "metadata": { - "name": "#43", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/43", - "external_url": "https://www.proof.xyz/moonbirds/43", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Diamond Necklace", - "trait_type": "Outerwear" - }, - { - "value": "Captain's Cap", - "trait_type": "Headwear" - }, - { - "value": "Sage", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:4614"] - }, - "timeLastUpdated": "2023-06-07T20:00:44.630Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000002c", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#44", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/44", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/44" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/3bb2252e498471da1d2204538613b0cb", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/44", - "format": "png" - } - ], - "metadata": { - "name": "#44", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/44", - "external_url": "https://www.proof.xyz/moonbirds/44", - "attributes": [ - { - "value": "Adorable", - "trait_type": "Eyes" - }, - { - "value": "Hero's Tunic", - "trait_type": "Outerwear" - }, - { - "value": "Hero's Cap", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:3879"] - }, - "timeLastUpdated": "2023-05-28T21:54:41.132Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000002d", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#45", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/45", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/45" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/967c8e04f6a39364a3e81ac92bdb7a79", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/45", - "format": "png" - } - ], - "metadata": { - "name": "#45", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/45", - "external_url": "https://www.proof.xyz/moonbirds/45", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:5852"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.601Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000002e", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#46", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/46", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/46" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/2164121e2da32d18fb17535aa8bd143d", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/46", - "format": "png" - } - ], - "metadata": { - "name": "#46", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/46", - "external_url": "https://www.proof.xyz/moonbirds/46", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:8211"] - }, - "timeLastUpdated": "2023-05-21T09:34:40.844Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000002f", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#47", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/47", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/47" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/c472a03b817a8b58d3350c6ddccd86d4", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/47", - "format": "png" - } - ], - "metadata": { - "name": "#47", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/47", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Rainbow", - "trait_type": "Eyes" - }, - { - "value": "Dancing Flame", - "trait_type": "Headwear" - }, - { - "value": "Tranquil", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2960"] - }, - "timeLastUpdated": "2023-06-06T19:36:41.455Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000030", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#48", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/48", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/48" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/7453b76542dcee4e163c005a26489366", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/48", - "format": "png" - } - ], - "metadata": { - "name": "#48", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/48", - "external_url": "https://www.proof.xyz/moonbirds/48", - "attributes": [ - { - "value": "Side-eye", - "trait_type": "Eyes" - }, - { - "value": "Crescent Talisman", - "trait_type": "Headwear" - }, - { - "value": "Brave", - "trait_type": "Body" - }, - { - "value": "Brown", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:3074"] - }, - "timeLastUpdated": "2023-06-06T21:56:42.032Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000031", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#49", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/49", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/49" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/31bafa656862e88c212d4f6fb886c9a7", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/49", - "format": "png" - } - ], - "metadata": { - "name": "#49", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/49", - "external_url": "https://www.proof.xyz/moonbirds/49", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Hoodie Down", - "trait_type": "Outerwear" - }, - { - "value": "Brave", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Gray", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1724"] - }, - "timeLastUpdated": "2023-06-01T15:42:41.958Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000032", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#50", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/50", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/50" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/ba8ccfac8b5a409be4f3c6edb2afa8a1", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/50", - "format": "png" - } - ], - "metadata": { - "name": "#50", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/50", - "external_url": "https://www.proof.xyz/moonbirds/50", - "attributes": [ - { - "value": "Side-eye", - "trait_type": "Eyes" - }, - { - "value": "Gold Chain", - "trait_type": "Outerwear" - }, - { - "value": "Tranquil", - "trait_type": "Body" - }, - { - "value": "Purple", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:4174"] - }, - "timeLastUpdated": "2023-05-31T06:26:43.731Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000033", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#51", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/51", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/51" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/b88500b9ac7226fda63eda7c40cbce59", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/51", - "format": "png" - } - ], - "metadata": { - "name": "#51", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/51", - "external_url": "https://www.proof.xyz/moonbirds/51", - "attributes": [ - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Skully", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:500"] - }, - "timeLastUpdated": "2023-06-06T22:36:41.070Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000034", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#52", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/52", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/52" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/29e356d5b30b11d4432f606edcede793", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/52", - "format": "png" - } - ], - "metadata": { - "name": "#52", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/52", - "external_url": "https://www.proof.xyz/moonbirds/52", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Moon Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Gray", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:6570"] - }, - "timeLastUpdated": "2023-05-31T06:26:44.312Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000035", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#53", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/53", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/53" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/469e4764fc2a3e9c1d8c9b614b00b469", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/53", - "format": "png" - } - ], - "metadata": { - "name": "#53", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/53", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Tiara", - "trait_type": "Headwear" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:9919"] - }, - "timeLastUpdated": "2023-05-29T15:04:43.174Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000036", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#54", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/54", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/54" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/fc3cc5f80eb968e96829b4f2cbea7b05", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/54", - "format": "png" - } - ], - "metadata": { - "name": "#54", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/54", - "external_url": "https://www.proof.xyz/moonbirds/54", - "attributes": [ - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Hoodie Down", - "trait_type": "Outerwear" - }, - { - "value": "Karate Band", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Pink", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1383"] - }, - "timeLastUpdated": "2023-06-07T16:58:45.978Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000037", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#55", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/55", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/55" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/294aba8d6031e8e6529b19b17cb4933f", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/55", - "format": "png" - } - ], - "metadata": { - "name": "#55", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/55", - "external_url": "https://www.proof.xyz/moonbirds/55", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Lincoln", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Purple", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1454"] - }, - "timeLastUpdated": "2023-06-07T16:54:41.054Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000038", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#56", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/56", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/56" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/aa10b67c15bda26b5ff8fb472f87899e", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/56", - "format": "png" - } - ], - "metadata": { - "name": "#56", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/56", - "external_url": "https://www.proof.xyz/moonbirds/56", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Bomber Jacket", - "trait_type": "Outerwear" - }, - { - "value": "Dancing Flame", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1923"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.543Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000039", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#57", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/57", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/57" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/a0041326dcc942568741affc1ad664fd", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/57", - "format": "png" - } - ], - "metadata": { - "name": "#57", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/57", - "external_url": "https://www.proof.xyz/moonbirds/57", - "attributes": [ - { - "value": "Sunglasses", - "trait_type": "Eyewear" - }, - { - "value": "Brave", - "trait_type": "Body" - }, - { - "value": "Green", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1784"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.530Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000003a", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#58", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/58", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/58" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/1deb22842d3a69bb5e5200b0374e68c4", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/58", - "format": "png" - } - ], - "metadata": { - "name": "#58", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/58", - "external_url": "https://www.proof.xyz/moonbirds/58", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Professor", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:9905"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.556Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000003b", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#59", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/59", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/59" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d9ec40315c2af5516f48cf11955b65b8", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/59", - "format": "png" - } - ], - "metadata": { - "name": "#59", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/59", - "external_url": "https://www.proof.xyz/moonbirds/59", - "attributes": [ - { - "value": "Jobs Glasses", - "trait_type": "Eyewear" - }, - { - "value": "Sage", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:870"] - }, - "timeLastUpdated": "2023-05-23T06:58:41.064Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000003c", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#60", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/60", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/60" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/4b15691ebad438486bfdb4c7554537c2", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/60", - "format": "png" - } - ], - "metadata": { - "name": "#60", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/60", - "external_url": "https://www.proof.xyz/moonbirds/60", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Space Helmet", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Gray", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2621"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.558Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000003d", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#61", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/61", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/61" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/ff920510b57b1b7d610718ac94514d7b", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/61", - "format": "png" - } - ], - "metadata": { - "name": "#61", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/61", - "external_url": "https://www.proof.xyz/moonbirds/61", - "attributes": [ - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Tabby", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:8020"] - }, - "timeLastUpdated": "2023-06-06T23:10:40.931Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000003e", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#62", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/62", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/62" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/85154c4849c33513e9899acce07620f9", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/62", - "format": "png" - } - ], - "metadata": { - "name": "#62", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/62", - "external_url": "https://www.proof.xyz/moonbirds/62", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2042"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.520Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000003f", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#63", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/63", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/63" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/a6a8443e832ef3cd3f184d7cec7b472f", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/63", - "format": "png" - } - ], - "metadata": { - "name": "#63", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/63", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Halo", - "trait_type": "Headwear" - }, - { - "value": "Professor", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1710"] - }, - "timeLastUpdated": "2023-06-06T22:52:41.456Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000040", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#64", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/64", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/64" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/788526367c40695a86137834ec117bb0", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/64", - "format": "png" - } - ], - "metadata": { - "name": "#64", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/64", - "external_url": "https://www.proof.xyz/moonbirds/64", - "attributes": [ - { - "value": "Rose-Colored Glasses", - "trait_type": "Eyewear" - }, - { - "value": "Moon Hat", - "trait_type": "Headwear" - }, - { - "value": "Skeleton", - "trait_type": "Body" - }, - { - "value": "Bone", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:3353"] - }, - "timeLastUpdated": "2023-05-24T13:00:41.340Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000041", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#65", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/65", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/65" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/984245844230212aa850e0563e68d4ad", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/65", - "format": "png" - } - ], - "metadata": { - "name": "#65", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/65", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Rainbow", - "trait_type": "Eyes" - }, - { - "value": "Moon Hat", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Brown", - "trait_type": "Feathers" - }, - { - "value": "Gray", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:328"] - }, - "timeLastUpdated": "2023-06-07T20:00:40.775Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000042", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#66", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/66", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/66" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/2edffca8ed479a903c16248c5f0139f2", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/66", - "format": "png" - } - ], - "metadata": { - "name": "#66", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/66", - "external_url": "https://www.proof.xyz/moonbirds/66", - "attributes": [ - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Tranquil", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:7706"] - }, - "timeLastUpdated": "2023-06-06T07:40:38.897Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000043", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#67", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/67", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/67" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/c0c055f51ca0afb7940b374764a3f3aa", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/67", - "format": "png" - } - ], - "metadata": { - "name": "#67", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/67", - "external_url": "https://www.proof.xyz/moonbirds/67", - "attributes": [ - { - "value": "Side-eye", - "trait_type": "Eyes" - }, - { - "value": "Beanie", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Green", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2401"] - }, - "timeLastUpdated": "2023-05-31T21:20:40.865Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000044", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#68", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/68", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/68" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/6a78d9232d4e56a3a65ddc8cb5204446", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/68", - "format": "png" - } - ], - "metadata": { - "name": "#68", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/68", - "external_url": "https://www.proof.xyz/moonbirds/68", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Skully", - "trait_type": "Headwear" - }, - { - "value": "Professor", - "trait_type": "Body" - }, - { - "value": "Purple", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:3070"] - }, - "timeLastUpdated": "2023-05-21T09:22:42.332Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000045", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#69", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/69", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/69" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/66ac596bf479568f634ebded080ca3f1", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/69", - "format": "png" - } - ], - "metadata": { - "name": "#69", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/69", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Monocle", - "trait_type": "Eyewear" - }, - { - "value": "Professor", - "trait_type": "Body" - }, - { - "value": "Brown", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2882"] - }, - "timeLastUpdated": "2023-06-06T22:46:41.041Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000046", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#70", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/70", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/70" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/4b109a13f95921b1ae8388ae97b53173", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/70", - "format": "png" - } - ], - "metadata": { - "name": "#70", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/70", - "external_url": "https://www.proof.xyz/moonbirds/70", - "attributes": [ - { - "value": "Moon", - "trait_type": "Eyes" - }, - { - "value": "Bucket Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Black", - "trait_type": "Feathers" - }, - { - "value": "Gray", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:5876"] - }, - "timeLastUpdated": "2023-06-07T20:04:40.732Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000047", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#71", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/71", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/71" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/52c9237be6ec7197856f808b38d5056c", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/71", - "format": "png" - } - ], - "metadata": { - "name": "#71", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/71", - "external_url": "https://www.proof.xyz/moonbirds/71", - "attributes": [ - { - "value": "Adorable", - "trait_type": "Eyes" - }, - { - "value": "Bomber Jacket", - "trait_type": "Outerwear" - }, - { - "value": "Queen's Crown", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:8037"] - }, - "timeLastUpdated": "2023-06-07T19:52:41.002Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000048", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#72", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/72", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/72" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d7cd014e3561446613038e5f1243248a", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/72", - "format": "png" - } - ], - "metadata": { - "name": "#72", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/72", - "external_url": "https://www.proof.xyz/moonbirds/72", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Brave", - "trait_type": "Body" - }, - { - "value": "Pink", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:50"] - }, - "timeLastUpdated": "2023-04-17T20:50:41.052Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000049", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#73", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/73", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/73" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/75522a20414348a65f4121508398a560", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/73", - "format": "png" - } - ], - "metadata": { - "name": "#73", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/73", - "external_url": "https://www.proof.xyz/moonbirds/73", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "Black", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2090"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.577Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000004a", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#74", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/74", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/74" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/ece6261a49453749489bac64aeb21f57", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/74", - "format": "png" - } - ], - "metadata": { - "name": "#74", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/74", - "external_url": "https://www.proof.xyz/moonbirds/74", - "attributes": [ - { - "value": "Black-rimmed Glasses", - "trait_type": "Eyewear" - }, - { - "value": "Grail", - "trait_type": "Headwear" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:6450"] - }, - "timeLastUpdated": "2023-04-22T14:28:41.252Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000004b", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#75", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/75", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/75" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/7b4cf5aec06181b3a11a03ccc78050bd", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/75", - "format": "png" - } - ], - "metadata": { - "name": "#75", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/75", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Side-eye", - "trait_type": "Eyes" - }, - { - "value": "Tranquil", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:5200"] - }, - "timeLastUpdated": "2023-06-07T16:10:40.980Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000004c", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#76", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/76", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/76" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/c55b5092b773c825f48c110362b59a43", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/76", - "format": "png" - } - ], - "metadata": { - "name": "#76", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/76", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Bomber Jacket", - "trait_type": "Outerwear" - }, - { - "value": "Crescent Talisman", - "trait_type": "Headwear" - }, - { - "value": "Tabby", - "trait_type": "Body" - }, - { - "value": "Purple", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:2243"] - }, - "timeLastUpdated": "2023-06-07T16:10:41.255Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000004d", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#77", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/77", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/77" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/8a6cf83ed1cc2a4e0eb57801983abef0", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/77", - "format": "png" - } - ], - "metadata": { - "name": "#77", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/77", - "external_url": "https://www.proof.xyz/moonbirds/77", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Hoodie Down", - "trait_type": "Outerwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Purple", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:9897"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.539Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000004e", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#78", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/78", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/78" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/f14a9b300befa6c70ef851d8d94aac77", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/78", - "format": "png" - } - ], - "metadata": { - "name": "#78", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/78", - "external_url": "https://www.proof.xyz/moonbirds/78", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Pirate's Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:9028"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.560Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000004f", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#79", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/79", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/79" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d1747cc103ddb37aec263c5f274db24b", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/79", - "format": "png" - } - ], - "metadata": { - "name": "#79", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/79", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Adorable", - "trait_type": "Eyes" - }, - { - "value": "Crescent Talisman", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:6754"] - }, - "timeLastUpdated": "2023-05-21T09:34:41.200Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000050", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#80", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/80", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/80" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/021caba326dbbe98d4863a292e56763c", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/80", - "format": "png" - } - ], - "metadata": { - "name": "#80", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/80", - "external_url": "https://www.proof.xyz/moonbirds/80", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Wizard's Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Gray", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:8674"] - }, - "timeLastUpdated": "2023-06-02T09:36:42.938Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000051", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#81", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/81", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/81" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/e4ad827fc9add29d07b075f9e92747f7", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/81", - "format": "png" - } - ], - "metadata": { - "name": "#81", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/81", - "external_url": "https://www.proof.xyz/moonbirds/81", - "attributes": [ - { - "value": "Diamond", - "trait_type": "Eyes" - }, - { - "value": "Skully", - "trait_type": "Headwear" - }, - { - "value": "Brave", - "trait_type": "Body" - }, - { - "value": "Purple", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:7469"] - }, - "timeLastUpdated": "2023-06-07T16:58:41.643Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000052", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#82", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/82", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/82" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/ca4042a5d315c6bb25518fc9f6361877", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/82", - "format": "png" - } - ], - "metadata": { - "name": "#82", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/82", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Brave", - "trait_type": "Body" - }, - { - "value": "Black", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1872"] - }, - "timeLastUpdated": "2023-05-24T14:18:41.318Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000053", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#83", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/83", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/83" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/6326b25fbf370bca10deb9db3391af8b", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/83", - "format": "png" - } - ], - "metadata": { - "name": "#83", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/83", - "external_url": "https://www.proof.xyz/moonbirds/83", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Tabby", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:4386"] - }, - "timeLastUpdated": "2023-06-06T23:18:40.846Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000054", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#84", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/84", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/84" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/fc1af066f57cbf95192cdbf1268209c0", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/84", - "format": "png" - } - ], - "metadata": { - "name": "#84", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/84", - "external_url": "https://www.proof.xyz/moonbirds/84", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Jean Jacket", - "trait_type": "Outerwear" - }, - { - "value": "Captain's Cap", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:7122"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.597Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000055", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#85", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/85", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/85" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/fed66e032997be3005ad28a40cd45034", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/85", - "format": "png" - } - ], - "metadata": { - "name": "#85", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/85", - "external_url": "https://www.proof.xyz/moonbirds/85", - "attributes": [ - { - "value": "Relaxed", - "trait_type": "Eyes" - }, - { - "value": "Tranquil", - "trait_type": "Body" - }, - { - "value": "Purple", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:8088"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.598Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000056", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#86", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/86", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/86" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/fe312e38075102a512ccd7e854b37052", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/86", - "format": "png" - } - ], - "metadata": { - "name": "#86", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/86", - "external_url": "https://www.proof.xyz/moonbirds/86", - "attributes": [ - { - "value": "Diamond", - "trait_type": "Eyes" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Brown", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:7035"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.535Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000057", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#87", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/87", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/87" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d022d4c23ea7b77eed7283a838260fff", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/87", - "format": "png" - } - ], - "metadata": { - "name": "#87", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/87", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "Pink", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:7529"] - }, - "timeLastUpdated": "2023-05-24T17:52:41.065Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000058", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#88", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/88", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/88" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/424a7446b8e50ec5a1b0bc10de135f8d", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/88", - "format": "png" - } - ], - "metadata": { - "name": "#88", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/88", - "external_url": "https://www.proof.xyz/moonbirds/88", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Tiny Crown", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Purple", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:4455"] - }, - "timeLastUpdated": "2023-05-24T17:36:40.962Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000059", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#89", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/89", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/89" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/51881fd83c438fa6065690cfcb013939", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/89", - "format": "png" - } - ], - "metadata": { - "name": "#89", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/89", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Tiny Crown", - "trait_type": "Headwear" - }, - { - "value": "Stark", - "trait_type": "Body" - }, - { - "value": "Gray", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:5156"] - }, - "timeLastUpdated": "2023-05-24T13:20:41.526Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000005a", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#90", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/90", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/90" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/3e810b07b3246819659bb9fd6d4c69c9", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/90", - "format": "png" - } - ], - "metadata": { - "name": "#90", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/90", - "external_url": "https://moonbirds.xyz/", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Skully", - "trait_type": "Headwear" - }, - { - "value": "Tranquil", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:3470"] - }, - "timeLastUpdated": "2023-06-06T22:38:42.129Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000005b", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#91", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/91", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/91" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/bb66c658ab0cfb9881fd35fcbfb54e16", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/91", - "format": "png" - } - ], - "metadata": { - "name": "#91", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/91", - "external_url": "https://www.proof.xyz/moonbirds/91", - "attributes": [ - { - "value": "Side-eye", - "trait_type": "Eyes" - }, - { - "value": "Space Helmet", - "trait_type": "Headwear" - }, - { - "value": "Guardian", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1129"] - }, - "timeLastUpdated": "2023-06-06T22:52:41.372Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000005c", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#92", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/92", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/92" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/378e0a1852d692d259fa95920a78dab5", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/92", - "format": "png" - } - ], - "metadata": { - "name": "#92", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/92", - "external_url": "https://www.proof.xyz/moonbirds/92", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Sage", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Blue", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:128"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.580Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000005d", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#93", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/93", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/93" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/803d1df974d09fd8142c3c4169d10955", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/93", - "format": "png" - } - ], - "metadata": { - "name": "#93", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/93", - "external_url": "https://www.proof.xyz/moonbirds/93", - "attributes": [ - { - "value": "Open", - "trait_type": "Eyes" - }, - { - "value": "Headphones", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Purple", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:8935"] - }, - "timeLastUpdated": "2023-06-05T20:30:40.971Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000005e", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#94", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/94", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/94" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/c20b0d3c70a8685021e54de4d809f00c", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/94", - "format": "png" - } - ], - "metadata": { - "name": "#94", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/94", - "external_url": "https://www.proof.xyz/moonbirds/94", - "attributes": [ - { - "value": "Discerning", - "trait_type": "Eyes" - }, - { - "value": "Bucket Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Blue", - "trait_type": "Feathers" - }, - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:433"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.533Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000005f", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#95", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/95", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/95" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/b5770e006ad2b34120cc95df2bfc042b", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/95", - "format": "png" - } - ], - "metadata": { - "name": "#95", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/95", - "external_url": "https://www.proof.xyz/moonbirds/95", - "attributes": [ - { - "value": "Angry", - "trait_type": "Eyes" - }, - { - "value": "Hero's Tunic", - "trait_type": "Outerwear" - }, - { - "value": "Hero's Cap", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "White", - "trait_type": "Feathers" - }, - { - "value": "Gray", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:3681"] - }, - "timeLastUpdated": "2023-06-06T22:42:41.024Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000060", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#96", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/96", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/96" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/a8ecefb5e6b444f97c3925b7abe5d7ed", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/96", - "format": "png" - } - ], - "metadata": { - "name": "#96", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/96", - "external_url": "https://www.proof.xyz/moonbirds/96", - "attributes": [ - { - "value": "Black-rimmed Glasses", - "trait_type": "Eyewear" - }, - { - "value": "Fire", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Purple", - "trait_type": "Feathers" - }, - { - "value": "Gray", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:3853"] - }, - "timeLastUpdated": "2023-05-24T13:16:40.966Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000061", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#97", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/97", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/97" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/fd670b145db405ba45fdbf8b7c5ccfe9", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/97", - "format": "png" - } - ], - "metadata": { - "name": "#97", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/97", - "external_url": "https://www.proof.xyz/moonbirds/97", - "attributes": [ - { - "value": "Rose-Colored Glasses", - "trait_type": "Eyewear" - }, - { - "value": "Emperor", - "trait_type": "Body" - }, - { - "value": "Brown", - "trait_type": "Feathers" - }, - { - "value": "Green", - "trait_type": "Background" - }, - { - "value": "Small", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:4361"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.508Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000062", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#98", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/98", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/98" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/9fe5a4619a8a153af56a336be0bcede2", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/98", - "format": "png" - } - ], - "metadata": { - "name": "#98", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/98", - "external_url": "https://www.proof.xyz/moonbirds/98", - "attributes": [ - { - "value": "Adorable", - "trait_type": "Eyes" - }, - { - "value": "Backwards Hat", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Red", - "trait_type": "Feathers" - }, - { - "value": "Gray", - "trait_type": "Background" - }, - { - "value": "Short", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:1429"] - }, - "timeLastUpdated": "2023-05-24T17:00:14.589Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - }, - { - "contract": { - "address": "0x23581767a106ae21c074b2276d25e5c3e136a68b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000063", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "title": "#99", - "description": "", - "tokenUri": { - "gateway": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/99", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/metadata/99" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/f563a136f0f42b8adbbd872c6e93df09", - "raw": "https://live---metadata-5covpqijaa-uc.a.run.app/images/99", - "format": "png" - } - ], - "metadata": { - "name": "#99", - "image": "https://live---metadata-5covpqijaa-uc.a.run.app/images/99", - "external_url": "https://www.proof.xyz/moonbirds/99", - "attributes": [ - { - "value": "Fire", - "trait_type": "Eyes" - }, - { - "value": "Captain's Cap", - "trait_type": "Headwear" - }, - { - "value": "Crescent", - "trait_type": "Body" - }, - { - "value": "Green", - "trait_type": "Feathers" - }, - { - "value": "Pink", - "trait_type": "Background" - }, - { - "value": "Long", - "trait_type": "Beak" - } - ], - "x_debug": ["orig:4233"] - }, - "timeLastUpdated": "2023-06-06T22:42:40.824Z", - "contractMetadata": { - "name": "Moonbirds", - "symbol": "MOONBIRD", - "totalSupply": "10000", - "tokenType": "ERC721", - "contractDeployer": "0x6c8984baf566db08675310b122bf0be9ea269eca", - "deployedBlockNumber": 14591056, - "openSea": { - "floorPrice": 6.49, - "collectionName": "Moonbirds", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/H-eyNE1MwL5ohL-tCfn_Xa1Sl9M9B4612tLYeUlQubzt4ewhr4huJIR5OLuyO3Z5PpJFSwdm7rq-TikAh7f5eUw338A2cy6HRH75?w=500&auto=format", - "description": "A collection of 10,000 PFPs which grant their holders access to the digital and IRL Moonbirds community. Community members can nest their birds to signal their commitment, in return for exclusive perks—which so far have included trait-based physical and digital drops, the Oddities, and time-based nesting rewards.\r\n\r\nMoonbird art is entirely in-chain, meaning the images are outputted directly from the smart contract, with no need for storage on IPFS or the like. There are also special gradient backgrounds available to Proof Collective pass holders, which will disappear when the bird is transfered. You can check what each bird looks like with and without this background (and see if they have any unclaimed rewards!) on our [site](https://proof.xyz/moonbirds)", - "externalUrl": "https://proof.xyz/moonbirds", - "twitterUsername": "moonbirds", - "discordUrl": "https://discord.gg/proof", - "lastIngestedAt": "2023-03-20T06:06:21.000Z" - } - } - } - ] -} diff --git a/tests/fixtures/alchemy/get_nfts_for_collection_without_total_supply.json b/tests/fixtures/alchemy/get_nfts_for_collection_without_total_supply.json deleted file mode 100644 index ea949c452..000000000 --- a/tests/fixtures/alchemy/get_nfts_for_collection_without_total_supply.json +++ /dev/null @@ -1,541 +0,0 @@ -{ - "nfts": [ - { - "contract": { - "address": "0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000476c", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "godsdog", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0x676f6473646f6700000000000000000000000000000000000000000000000000", - "tokenUri": { - "gateway": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/18284", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/18284" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/38b0e9f7feb10405a48d04236e40c4a4", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/38b0e9f7feb10405a48d04236e40c4a4", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/18284", - "format": "svg+xml; charset=utf-8", - "bytes": 1944 - } - ], - "metadata": { - "name": "godsdog", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0x676f6473646f6700000000000000000000000000000000000000000000000000", - "image": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/18284", - "external_url": "https://linagee.vision/", - "attributes": [ - { - "value": "Yes", - "trait_type": "Normalized" - }, - { - "value": 7, - "trait_type": "Length" - }, - { - "value": "No", - "trait_type": "1 Digit" - }, - { - "value": "No", - "trait_type": "2 Digits" - }, - { - "value": "No", - "trait_type": "3 Digits" - }, - { - "value": "No", - "trait_type": "4 Digits" - }, - { - "value": "No", - "trait_type": "5 Digits" - }, - { - "value": "No", - "trait_type": "1 Letter (lowercase)" - }, - { - "value": "No", - "trait_type": "1 Letter (uppercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "Arabic 1 Digit" - }, - { - "value": "No", - "trait_type": "Arabic 2 Digits" - }, - { - "value": "No", - "trait_type": "Arabic 3 Digits" - }, - { - "value": "No", - "trait_type": "Emoji only" - }, - { - "value": "No", - "trait_type": "Historic" - } - ] - }, - "timeLastUpdated": "2023-07-14T12:00:39.059Z", - "contractMetadata": { - "name": "ETHRegistrarLinageeWrapper", - "symbol": "ERLW", - "tokenType": "ERC721", - "contractDeployer": "0x9ff81de5f866f4691f18392792be16f63f586ff7", - "deployedBlockNumber": 15663114, - "openSea": { - "floorPrice": 0.000089999, - "collectionName": "Linagee Name Registrar (LNR)", - "safelistRequestStatus": "approved", - "imageUrl": "https://i.seadn.io/gcs/files/240ac5920778f5ae0de8a3f6176b4d3c.png?w=500&auto=format", - "description": "By Linagee, from the first NFT contract on Ethereum, launched August 8, 2015. \n \nDisclaimer: \nPlease use the bytecode to confirm any names. The categories act as a guide but we cannot guarantee the accuracy of every name.", - "externalUrl": "https://linagee.vision/", - "twitterUsername": "LinageeDomains", - "discordUrl": "https://discord.gg/DAKRWGfMyx", - "lastIngestedAt": "2023-07-13T22:51:19.000Z" - } - } - }, - { - "contract": { - "address": "0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000bd39", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "وحيد", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0xd988d8add98ad8af000000000000000000000000000000000000000000000000", - "tokenUri": { - "gateway": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/48441", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/48441" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/17f84142e5577fa117d101deb9bb9dcb", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/17f84142e5577fa117d101deb9bb9dcb", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/48441", - "format": "svg+xml; charset=utf-8", - "bytes": 2114 - } - ], - "metadata": { - "name": "وحيد", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0xd988d8add98ad8af000000000000000000000000000000000000000000000000", - "image": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/48441", - "external_url": "https://linagee.vision/", - "attributes": [ - { - "value": "Yes", - "trait_type": "Normalized" - }, - { - "value": 4, - "trait_type": "Length" - }, - { - "value": "No", - "trait_type": "1 Digit" - }, - { - "value": "No", - "trait_type": "2 Digits" - }, - { - "value": "No", - "trait_type": "3 Digits" - }, - { - "value": "No", - "trait_type": "4 Digits" - }, - { - "value": "No", - "trait_type": "5 Digits" - }, - { - "value": "No", - "trait_type": "1 Letter (lowercase)" - }, - { - "value": "No", - "trait_type": "1 Letter (uppercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "Arabic 1 Digit" - }, - { - "value": "No", - "trait_type": "Arabic 2 Digits" - }, - { - "value": "No", - "trait_type": "Arabic 3 Digits" - }, - { - "value": "No", - "trait_type": "Emoji only" - }, - { - "value": "No", - "trait_type": "Historic" - } - ] - }, - "timeLastUpdated": "2023-07-03T11:02:38.477Z", - "contractMetadata": { - "name": "ETHRegistrarLinageeWrapper", - "symbol": "ERLW", - "tokenType": "ERC721", - "contractDeployer": "0x9ff81de5f866f4691f18392792be16f63f586ff7", - "deployedBlockNumber": 15663114, - "openSea": { - "floorPrice": 0.000089999, - "collectionName": "Linagee Name Registrar (LNR)", - "safelistRequestStatus": "approved", - "imageUrl": "https://i.seadn.io/gcs/files/240ac5920778f5ae0de8a3f6176b4d3c.png?w=500&auto=format", - "description": "By Linagee, from the first NFT contract on Ethereum, launched August 8, 2015. \n \nDisclaimer: \nPlease use the bytecode to confirm any names. The categories act as a guide but we cannot guarantee the accuracy of every name.", - "externalUrl": "https://linagee.vision/", - "twitterUsername": "LinageeDomains", - "discordUrl": "https://discord.gg/DAKRWGfMyx", - "lastIngestedAt": "2023-07-13T22:51:19.000Z" - } - } - }, - { - "contract": { - "address": "0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000be5a", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "قادر", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0xd982d8a7d8afd8b1000000000000000000000000000000000000000000000000", - "tokenUri": { - "gateway": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/48730", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/48730" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/38a55da7d0107b1e577bf3ed384e4515", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/38a55da7d0107b1e577bf3ed384e4515", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/48730", - "format": "svg+xml; charset=utf-8", - "bytes": 1270 - } - ], - "metadata": { - "name": "قادر", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0xd982d8a7d8afd8b1000000000000000000000000000000000000000000000000", - "image": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/48730", - "external_url": "https://linagee.vision/", - "attributes": [ - { - "value": "Yes", - "trait_type": "Normalized" - }, - { - "value": 4, - "trait_type": "Length" - }, - { - "value": "No", - "trait_type": "1 Digit" - }, - { - "value": "No", - "trait_type": "2 Digits" - }, - { - "value": "No", - "trait_type": "3 Digits" - }, - { - "value": "No", - "trait_type": "4 Digits" - }, - { - "value": "No", - "trait_type": "5 Digits" - }, - { - "value": "No", - "trait_type": "1 Letter (lowercase)" - }, - { - "value": "No", - "trait_type": "1 Letter (uppercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "Arabic 1 Digit" - }, - { - "value": "No", - "trait_type": "Arabic 2 Digits" - }, - { - "value": "No", - "trait_type": "Arabic 3 Digits" - }, - { - "value": "No", - "trait_type": "Emoji only" - }, - { - "value": "No", - "trait_type": "Historic" - } - ] - }, - "timeLastUpdated": "2023-07-14T12:00:39.230Z", - "contractMetadata": { - "name": "ETHRegistrarLinageeWrapper", - "symbol": "ERLW", - "tokenType": "ERC721", - "contractDeployer": "0x9ff81de5f866f4691f18392792be16f63f586ff7", - "deployedBlockNumber": 15663114, - "openSea": { - "floorPrice": 0.000089999, - "collectionName": "Linagee Name Registrar (LNR)", - "safelistRequestStatus": "approved", - "imageUrl": "https://i.seadn.io/gcs/files/240ac5920778f5ae0de8a3f6176b4d3c.png?w=500&auto=format", - "description": "By Linagee, from the first NFT contract on Ethereum, launched August 8, 2015. \n \nDisclaimer: \nPlease use the bytecode to confirm any names. The categories act as a guide but we cannot guarantee the accuracy of every name.", - "externalUrl": "https://linagee.vision/", - "twitterUsername": "LinageeDomains", - "discordUrl": "https://discord.gg/DAKRWGfMyx", - "lastIngestedAt": "2023-07-13T22:51:19.000Z" - } - } - }, - { - "contract": { - "address": "0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000bec3", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "писька", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0xd0bfd0b8d181d18cd0bad0b00000000000000000000000000000000000000000", - "tokenUri": { - "gateway": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/48835", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/48835" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/a591c72da3a33035eeba7c9ff5f73564", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/a591c72da3a33035eeba7c9ff5f73564", - "raw": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/48835", - "format": "svg+xml; charset=utf-8", - "bytes": 2689 - } - ], - "metadata": { - "name": "писька", - "description": "From the first NFT contract on Ethereum, launched August 8, 2015. Bytecode: 0xd0bfd0b8d181d18cd0bad0b00000000000000000000000000000000000000000", - "image": "http://ec2-107-22-115-221.compute-1.amazonaws.com:8080/image/48835", - "external_url": "https://linagee.vision/", - "attributes": [ - { - "value": "Yes", - "trait_type": "Normalized" - }, - { - "value": 6, - "trait_type": "Length" - }, - { - "value": "No", - "trait_type": "1 Digit" - }, - { - "value": "No", - "trait_type": "2 Digits" - }, - { - "value": "No", - "trait_type": "3 Digits" - }, - { - "value": "No", - "trait_type": "4 Digits" - }, - { - "value": "No", - "trait_type": "5 Digits" - }, - { - "value": "No", - "trait_type": "1 Letter (lowercase)" - }, - { - "value": "No", - "trait_type": "1 Letter (uppercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "2 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "3 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (lowercase)" - }, - { - "value": "No", - "trait_type": "4 Letters (uppercase)" - }, - { - "value": "No", - "trait_type": "Arabic 1 Digit" - }, - { - "value": "No", - "trait_type": "Arabic 2 Digits" - }, - { - "value": "No", - "trait_type": "Arabic 3 Digits" - }, - { - "value": "No", - "trait_type": "Emoji only" - }, - { - "value": "No", - "trait_type": "Historic" - } - ] - }, - "timeLastUpdated": "2023-07-14T12:00:39.118Z", - "contractMetadata": { - "name": "ETHRegistrarLinageeWrapper", - "symbol": "ERLW", - "tokenType": "ERC721", - "contractDeployer": "0x9ff81de5f866f4691f18392792be16f63f586ff7", - "deployedBlockNumber": 15663114, - "openSea": { - "floorPrice": 0.000089999, - "collectionName": "Linagee Name Registrar (LNR)", - "safelistRequestStatus": "approved", - "imageUrl": "https://i.seadn.io/gcs/files/240ac5920778f5ae0de8a3f6176b4d3c.png?w=500&auto=format", - "description": "By Linagee, from the first NFT contract on Ethereum, launched August 8, 2015. \n \nDisclaimer: \nPlease use the bytecode to confirm any names. The categories act as a guide but we cannot guarantee the accuracy of every name.", - "externalUrl": "https://linagee.vision/", - "twitterUsername": "LinageeDomains", - "discordUrl": "https://discord.gg/DAKRWGfMyx", - "lastIngestedAt": "2023-07-13T22:51:19.000Z" - } - } - } - ], - "nextToken": "0x0000000000000000000000000000000000000000000000000000000000000064" - } diff --git a/tests/fixtures/alchemy/get_nfts_for_contract.json b/tests/fixtures/alchemy/get_nfts_for_contract.json new file mode 100644 index 000000000..aa6b4c71b --- /dev/null +++ b/tests/fixtures/alchemy/get_nfts_for_contract.json @@ -0,0 +1,293 @@ +{ + "nfts": [ + { + "contract": { + "address": "0xe785E82358879F061BC3dcAC6f0444462D4b5330", + "name": "World Of Women", + "symbol": "WOW", + "totalSupply": "10000", + "tokenType": "ERC721", + "contractDeployer": "0xc9b6321dc216D91E626E9BAA61b06B0E4d55bdb1", + "deployedBlockNumber": 12907782, + "openSeaMetadata": { + "floorPrice": 0.749999, + "collectionName": "World of Women", + "collectionSlug": "world-of-women-nft", + "safelistRequestStatus": "verified", + "imageUrl": "https://i.seadn.io/gcs/files/8604de2d9aaec98dd389e3af1b1a14b6.gif?w=500&auto=format", + "description": "World of Women is a collection of 10,000 NFTs that gives you full access to our network of artists, creators, entrepreneurs, and executives who are championing diversity and equal opportunity on the blockchain.\n\nCreated and illustrated by Yam Karkai (@ykarkai), World of Women has made prominent appearances at Christie's, The New Yorker and Billboard.\n\nJoin us to receive exclusive access to NFT drops, experiences, and much more.\n\nThe Time is WoW.", + "externalUrl": "http://worldofwomen.art", + "twitterUsername": "worldofwomennft", + "discordUrl": "https://discord.gg/worldofwomen", + "bannerImageUrl": "https://i.seadn.io/gae/GHhptRLebBOWOy8kfXpYCVqsqdes-1-6I_jbuRnGTHHW6TD63CtciH75Dotfu2u8v6EmkWt-tjhkFRVLxRUwgMfKqqy5W24AolJayeo?w=500&auto=format", + "lastIngestedAt": "2023-08-26T14:28:31.000Z" + }, + "isSpam": null, + "spamClassifications": [] + }, + "tokenId": "0", + "tokenType": "ERC721", + "name": "WoW #0", + "description": null, + "tokenUri": "https://ipfs.io/ipfs/QmTNBQDbggLZdKF1fRgWnXsnRikd52zL5ciNu769g9JoUP/0", + "image": { + "cachedUrl": "https://nft-cdn.alchemy.com/eth-mainnet/fe477c7ef3ce8940cbf650198751e9e7", + "thumbnailUrl": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/fe477c7ef3ce8940cbf650198751e9e7", + "pngUrl": "https://res.cloudinary.com/alchemyapi/image/upload/convert-png/eth-mainnet/fe477c7ef3ce8940cbf650198751e9e7", + "contentType": "image/png", + "size": 93654, + "originalUrl": "https://ipfs.io/ipfs/QmYPznMvizE4BxrYaXM8dpRrzgN6Pg2rtTczjzNn13More" + }, + "raw": { + "tokenUri": "ipfs://QmTNBQDbggLZdKF1fRgWnXsnRikd52zL5ciNu769g9JoUP/0", + "metadata": { + "name": "WoW #0", + "image": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAgGBgc", + "attributes": [ + { + "value": "Soft Purple", + "trait_type": "Background" + }, + { + "value": "Light Warm Yellow", + "trait_type": "Skin Tone" + }, + { + "value": "Brown Straight", + "trait_type": "Eyes" + }, + { + "value": "Heart Tattoo", + "trait_type": "Facial Features" + }, + { + "value": "Platinum Pixie", + "trait_type": "Hairstyle" + }, + { + "value": "Freedom Is Power Tee", + "trait_type": "Clothes" + }, + { + "value": "Malka", + "trait_type": "Necklace" + }, + { + "value": "Ocean Hoops", + "trait_type": "Earrings" + }, + { + "value": "Bubble Gum", + "trait_type": "Mouth" + }, + { + "value": "Flashy Blue", + "trait_type": "Lips Color" + } + ] + }, + "error": null + }, + "collection": { + "name": "World of Women", + "openSeaSlug": "world-of-women-nft", + "externalUrl": "http://worldofwomen.art", + "bannerImageUrl": "https://i.seadn.io/gae/GHhptRLebBOWOy8kfXpYCVqsqdes-1-6I_jbuRnGTHHW6TD63CtciH75Dotfu2u8v6EmkWt-tjhkFRVLxRUwgMfKqqy5W24AolJayeo?w=500&auto=format" + }, + "timeLastUpdated": "2023-08-26T14:52:28.751Z" + }, + { + "contract": { + "address": "0xe785E82358879F061BC3dcAC6f0444462D4b5330", + "name": "World Of Women", + "symbol": "WOW", + "totalSupply": "10000", + "tokenType": "ERC721", + "contractDeployer": "0xc9b6321dc216D91E626E9BAA61b06B0E4d55bdb1", + "deployedBlockNumber": 12907782, + "openSeaMetadata": { + "floorPrice": 0.749999, + "collectionName": "World of Women", + "collectionSlug": "world-of-women-nft", + "safelistRequestStatus": "verified", + "imageUrl": "https://i.seadn.io/gcs/files/8604de2d9aaec98dd389e3af1b1a14b6.gif?w=500&auto=format", + "description": "World of Women is a collection of 10,000 NFTs that gives you full access to our network of artists, creators, entrepreneurs, and executives who are championing diversity and equal opportunity on the blockchain.\n\nCreated and illustrated by Yam Karkai (@ykarkai), World of Women has made prominent appearances at Christie's, The New Yorker and Billboard.\n\nJoin us to receive exclusive access to NFT drops, experiences, and much more.\n\nThe Time is WoW.", + "externalUrl": "http://worldofwomen.art", + "twitterUsername": "worldofwomennft", + "discordUrl": "https://discord.gg/worldofwomen", + "bannerImageUrl": "https://i.seadn.io/gae/GHhptRLebBOWOy8kfXpYCVqsqdes-1-6I_jbuRnGTHHW6TD63CtciH75Dotfu2u8v6EmkWt-tjhkFRVLxRUwgMfKqqy5W24AolJayeo?w=500&auto=format", + "lastIngestedAt": "2023-08-26T14:28:31.000Z" + }, + "isSpam": null, + "spamClassifications": [] + }, + "tokenId": "1", + "tokenType": "ERC721", + "name": "WoW #1", + "description": null, + "tokenUri": "https://ipfs.io/ipfs/QmTNBQDbggLZdKF1fRgWnXsnRikd52zL5ciNu769g9JoUP/1", + "image": { + "cachedUrl": "https://nft-cdn.alchemy.com/eth-mainnet/55986d2833b3ab988ed5d8abe0d78c7c", + "thumbnailUrl": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/55986d2833b3ab988ed5d8abe0d78c7c", + "pngUrl": "https://res.cloudinary.com/alchemyapi/image/upload/convert-png/eth-mainnet/55986d2833b3ab988ed5d8abe0d78c7c", + "contentType": "image/png", + "size": 135093, + "originalUrl": "https://ipfs.io/ipfs/QmSdv72GwEDFoCspXJN7Bki9UzDyTsmbAd8zoRtMHjW3qT" + }, + "raw": { + "tokenUri": "ipfs://QmTNBQDbggLZdKF1fRgWnXsnRikd52zL5ciNu769g9JoUP/1", + "metadata": { + "name": "WoW #1", + "image": "ipfs://QmSdv72GwEDFoCspXJN7Bki9UzDyTsmbAd8zoRtMHjW3qT", + "attributes": [ + { + "value": "Pink Pastel", + "trait_type": "Background" + }, + { + "value": "Light Warm Yellow", + "trait_type": "Skin Tone" + }, + { + "value": "Yellow To The Right", + "trait_type": "Eyes" + }, + { + "value": "Sunset", + "trait_type": "Facial Features" + }, + { + "value": "Bob", + "trait_type": "Hairstyle" + }, + { + "value": "Red Round Sunglasses", + "trait_type": "Face Accessories" + }, + { + "value": "Futuristic Dress", + "trait_type": "Clothes" + }, + { + "value": "Lightning Bolts", + "trait_type": "Earrings" + }, + { + "value": "Slightly Open", + "trait_type": "Mouth" + }, + { + "value": "Passion Red", + "trait_type": "Lips Color" + } + ] + }, + "error": null + }, + "collection": { + "name": "World of Women", + "openSeaSlug": "world-of-women-nft", + "externalUrl": "http://worldofwomen.art", + "bannerImageUrl": "https://i.seadn.io/gae/GHhptRLebBOWOy8kfXpYCVqsqdes-1-6I_jbuRnGTHHW6TD63CtciH75Dotfu2u8v6EmkWt-tjhkFRVLxRUwgMfKqqy5W24AolJayeo?w=500&auto=format" + }, + "timeLastUpdated": "2023-08-27T19:36:38.662Z" + }, + { + "contract": { + "address": "0xe785E82358879F061BC3dcAC6f0444462D4b5330", + "name": "World Of Women", + "symbol": "WOW", + "totalSupply": "10000", + "tokenType": "ERC721", + "contractDeployer": "0xc9b6321dc216D91E626E9BAA61b06B0E4d55bdb1", + "deployedBlockNumber": 12907782, + "openSeaMetadata": { + "floorPrice": 0.749999, + "collectionName": "World of Women", + "collectionSlug": "world-of-women-nft", + "safelistRequestStatus": "verified", + "imageUrl": "https://i.seadn.io/gcs/files/8604de2d9aaec98dd389e3af1b1a14b6.gif?w=500&auto=format", + "description": "World of Women is a collection of 10,000 NFTs that gives you full access to our network of artists, creators, entrepreneurs, and executives who are championing diversity and equal opportunity on the blockchain.\n\nCreated and illustrated by Yam Karkai (@ykarkai), World of Women has made prominent appearances at Christie's, The New Yorker and Billboard.\n\nJoin us to receive exclusive access to NFT drops, experiences, and much more.\n\nThe Time is WoW.", + "externalUrl": "http://worldofwomen.art", + "twitterUsername": "worldofwomennft", + "discordUrl": "https://discord.gg/worldofwomen", + "bannerImageUrl": "https://i.seadn.io/gae/GHhptRLebBOWOy8kfXpYCVqsqdes-1-6I_jbuRnGTHHW6TD63CtciH75Dotfu2u8v6EmkWt-tjhkFRVLxRUwgMfKqqy5W24AolJayeo?w=500&auto=format", + "lastIngestedAt": "2023-08-26T14:28:31.000Z" + }, + "isSpam": null, + "spamClassifications": [] + }, + "tokenId": "2", + "tokenType": "ERC721", + "name": "WoW #2", + "description": null, + "tokenUri": "https://ipfs.io/ipfs/QmTNBQDbggLZdKF1fRgWnXsnRikd52zL5ciNu769g9JoUP/2", + "image": { + "cachedUrl": "https://nft-cdn.alchemy.com/eth-mainnet/4d6f68252d08e3383e627f8ddd80a1ea", + "thumbnailUrl": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/4d6f68252d08e3383e627f8ddd80a1ea", + "pngUrl": "https://res.cloudinary.com/alchemyapi/image/upload/convert-png/eth-mainnet/4d6f68252d08e3383e627f8ddd80a1ea", + "contentType": "image/png", + "size": 192785, + "originalUrl": "https://ipfs.io/ipfs/QmSTBRrNGPvQssSWenMiBQj7ZYue7DEwajAF4z5HDrLFV6" + }, + "raw": { + "tokenUri": "ipfs://QmTNBQDbggLZdKF1fRgWnXsnRikd52zL5ciNu769g9JoUP/2", + "metadata": { + "name": "WoW #2", + "image": "ipfs://QmSTBRrNGPvQssSWenMiBQj7ZYue7DEwajAF4z5HDrLFV6", + "attributes": [ + { + "value": "Purple Pink", + "trait_type": "Background" + }, + { + "value": "Deep Bronze", + "trait_type": "Skin Tone" + }, + { + "value": "Green Straight", + "trait_type": "Eyes" + }, + { + "value": "Cyber Warrior", + "trait_type": "Facial Features" + }, + { + "value": "Curly Ponytail", + "trait_type": "Hairstyle" + }, + { + "value": "Psychedelic Sunglasses", + "trait_type": "Face Accessories" + }, + { + "value": "Sun Keeper", + "trait_type": "Necklace" + }, + { + "value": "Striped Tee", + "trait_type": "Clothes" + }, + { + "value": "Stern", + "trait_type": "Mouth" + }, + { + "value": "Burgundy", + "trait_type": "Lips Color" + } + ] + }, + "error": null + }, + "collection": { + "name": "World of Women", + "openSeaSlug": "world-of-women-nft", + "externalUrl": "http://worldofwomen.art", + "bannerImageUrl": "https://i.seadn.io/gae/GHhptRLebBOWOy8kfXpYCVqsqdes-1-6I_jbuRnGTHHW6TD63CtciH75Dotfu2u8v6EmkWt-tjhkFRVLxRUwgMfKqqy5W24AolJayeo?w=500&auto=format" + }, + "timeLastUpdated": "2023-08-27T06:00:40.157Z" + } + ], + "pageKey": "0x0000000000000000000000000000000000000000000000000000000000000064" +} diff --git a/tests/fixtures/alchemy/get_nfts_for_contract_blacklisted.json b/tests/fixtures/alchemy/get_nfts_for_contract_blacklisted.json new file mode 100644 index 000000000..6f25de83a --- /dev/null +++ b/tests/fixtures/alchemy/get_nfts_for_contract_blacklisted.json @@ -0,0 +1,101 @@ +{ + "nfts": [ + { + "contract": { + "address": "0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85", + "name": "World Of Women", + "symbol": "WOW", + "tokenType": "ERC721", + "totalSupply": "100001", + "contractDeployer": "0xc9b6321dc216D91E626E9BAA61b06B0E4d55bdb1", + "deployedBlockNumber": 12907782, + "openSeaMetadata": { + "floorPrice": 0.749999, + "collectionName": "World of Women", + "collectionSlug": "world-of-women-nft", + "safelistRequestStatus": "verified", + "imageUrl": "https://i.seadn.io/gcs/files/8604de2d9aaec98dd389e3af1b1a14b6.gif?w=500&auto=format", + "description": "World of Women is a collection of 10,000 NFTs that gives you full access to our network of artists, creators, entrepreneurs, and executives who are championing diversity and equal opportunity on the blockchain.\n\nCreated and illustrated by Yam Karkai (@ykarkai), World of Women has made prominent appearances at Christie's, The New Yorker and Billboard.\n\nJoin us to receive exclusive access to NFT drops, experiences, and much more.\n\nThe Time is WoW.", + "externalUrl": "http://worldofwomen.art", + "twitterUsername": "worldofwomennft", + "discordUrl": "https://discord.gg/worldofwomen", + "bannerImageUrl": "https://i.seadn.io/gae/GHhptRLebBOWOy8kfXpYCVqsqdes-1-6I_jbuRnGTHHW6TD63CtciH75Dotfu2u8v6EmkWt-tjhkFRVLxRUwgMfKqqy5W24AolJayeo?w=500&auto=format", + "lastIngestedAt": "2023-08-26T14:28:31.000Z" + }, + "isSpam": null, + "spamClassifications": [] + }, + "tokenId": "0", + "tokenType": "ERC721", + "name": "WoW #0", + "description": null, + "tokenUri": "https://ipfs.io/ipfs/QmTNBQDbggLZdKF1fRgWnXsnRikd52zL5ciNu769g9JoUP/0", + "image": { + "cachedUrl": "https://nft-cdn.alchemy.com/eth-mainnet/fe477c7ef3ce8940cbf650198751e9e7", + "thumbnailUrl": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/fe477c7ef3ce8940cbf650198751e9e7", + "pngUrl": "https://res.cloudinary.com/alchemyapi/image/upload/convert-png/eth-mainnet/fe477c7ef3ce8940cbf650198751e9e7", + "contentType": "image/png", + "size": 93654, + "originalUrl": "https://ipfs.io/ipfs/QmYPznMvizE4BxrYaXM8dpRrzgN6Pg2rtTczjzNn13More" + }, + "raw": { + "tokenUri": "ipfs://QmTNBQDbggLZdKF1fRgWnXsnRikd52zL5ciNu769g9JoUP/0", + "metadata": { + "name": "WoW #0", + "image": "ipfs://QmYPznMvizE4BxrYaXM8dpRrzgN6Pg2rtTczjzNn13More", + "attributes": [ + { + "value": "Soft Purple", + "trait_type": "Background" + }, + { + "value": "Light Warm Yellow", + "trait_type": "Skin Tone" + }, + { + "value": "Brown Straight", + "trait_type": "Eyes" + }, + { + "value": "Heart Tattoo", + "trait_type": "Facial Features" + }, + { + "value": "Platinum Pixie", + "trait_type": "Hairstyle" + }, + { + "value": "Freedom Is Power Tee", + "trait_type": "Clothes" + }, + { + "value": "Malka", + "trait_type": "Necklace" + }, + { + "value": "Ocean Hoops", + "trait_type": "Earrings" + }, + { + "value": "Bubble Gum", + "trait_type": "Mouth" + }, + { + "value": "Flashy Blue", + "trait_type": "Lips Color" + } + ] + }, + "error": null + }, + "collection": { + "name": "World of Women", + "openSeaSlug": "world-of-women-nft", + "externalUrl": "http://worldofwomen.art", + "bannerImageUrl": "https://i.seadn.io/gae/GHhptRLebBOWOy8kfXpYCVqsqdes-1-6I_jbuRnGTHHW6TD63CtciH75Dotfu2u8v6EmkWt-tjhkFRVLxRUwgMfKqqy5W24AolJayeo?w=500&auto=format" + }, + "timeLastUpdated": "2023-08-26T14:52:28.751Z" + } + ], + "pageKey": "0x0000000000000000000000000000000000000000000000000000000000000064" +} diff --git a/tests/fixtures/alchemy/get_nfts_for_contract_exceeding_max_cap_supply.json b/tests/fixtures/alchemy/get_nfts_for_contract_exceeding_max_cap_supply.json new file mode 100644 index 000000000..23fb078d5 --- /dev/null +++ b/tests/fixtures/alchemy/get_nfts_for_contract_exceeding_max_cap_supply.json @@ -0,0 +1,101 @@ +{ + "nfts": [ + { + "contract": { + "address": "0xe785E82358879F061BC3dcAC6f0444462D4b5330", + "name": "World Of Women", + "symbol": "WOW", + "totalSupply": "500001", + "tokenType": "ERC721", + "contractDeployer": "0xc9b6321dc216D91E626E9BAA61b06B0E4d55bdb1", + "deployedBlockNumber": 12907782, + "openSeaMetadata": { + "floorPrice": 0.749999, + "collectionName": "World of Women", + "collectionSlug": "world-of-women-nft", + "safelistRequestStatus": "verified", + "imageUrl": "https://i.seadn.io/gcs/files/8604de2d9aaec98dd389e3af1b1a14b6.gif?w=500&auto=format", + "description": "World of Women is a collection of 10,000 NFTs that gives you full access to our network of artists, creators, entrepreneurs, and executives who are championing diversity and equal opportunity on the blockchain.\n\nCreated and illustrated by Yam Karkai (@ykarkai), World of Women has made prominent appearances at Christie's, The New Yorker and Billboard.\n\nJoin us to receive exclusive access to NFT drops, experiences, and much more.\n\nThe Time is WoW.", + "externalUrl": "http://worldofwomen.art", + "twitterUsername": "worldofwomennft", + "discordUrl": "https://discord.gg/worldofwomen", + "bannerImageUrl": "https://i.seadn.io/gae/GHhptRLebBOWOy8kfXpYCVqsqdes-1-6I_jbuRnGTHHW6TD63CtciH75Dotfu2u8v6EmkWt-tjhkFRVLxRUwgMfKqqy5W24AolJayeo?w=500&auto=format", + "lastIngestedAt": "2023-08-26T14:28:31.000Z" + }, + "isSpam": null, + "spamClassifications": [] + }, + "tokenId": "0", + "tokenType": "ERC721", + "name": "WoW #0", + "description": null, + "tokenUri": "https://ipfs.io/ipfs/QmTNBQDbggLZdKF1fRgWnXsnRikd52zL5ciNu769g9JoUP/0", + "image": { + "cachedUrl": "https://nft-cdn.alchemy.com/eth-mainnet/fe477c7ef3ce8940cbf650198751e9e7", + "thumbnailUrl": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/fe477c7ef3ce8940cbf650198751e9e7", + "pngUrl": "https://res.cloudinary.com/alchemyapi/image/upload/convert-png/eth-mainnet/fe477c7ef3ce8940cbf650198751e9e7", + "contentType": "image/png", + "size": 93654, + "originalUrl": "https://ipfs.io/ipfs/QmYPznMvizE4BxrYaXM8dpRrzgN6Pg2rtTczjzNn13More" + }, + "raw": { + "tokenUri": "ipfs://QmTNBQDbggLZdKF1fRgWnXsnRikd52zL5ciNu769g9JoUP/0", + "metadata": { + "name": "WoW #0", + "image": "ipfs://QmYPznMvizE4BxrYaXM8dpRrzgN6Pg2rtTczjzNn13More", + "attributes": [ + { + "value": "Soft Purple", + "trait_type": "Background" + }, + { + "value": "Light Warm Yellow", + "trait_type": "Skin Tone" + }, + { + "value": "Brown Straight", + "trait_type": "Eyes" + }, + { + "value": "Heart Tattoo", + "trait_type": "Facial Features" + }, + { + "value": "Platinum Pixie", + "trait_type": "Hairstyle" + }, + { + "value": "Freedom Is Power Tee", + "trait_type": "Clothes" + }, + { + "value": "Malka", + "trait_type": "Necklace" + }, + { + "value": "Ocean Hoops", + "trait_type": "Earrings" + }, + { + "value": "Bubble Gum", + "trait_type": "Mouth" + }, + { + "value": "Flashy Blue", + "trait_type": "Lips Color" + } + ] + }, + "error": null + }, + "collection": { + "name": "World of Women", + "openSeaSlug": "world-of-women-nft", + "externalUrl": "http://worldofwomen.art", + "bannerImageUrl": "https://i.seadn.io/gae/GHhptRLebBOWOy8kfXpYCVqsqdes-1-6I_jbuRnGTHHW6TD63CtciH75Dotfu2u8v6EmkWt-tjhkFRVLxRUwgMfKqqy5W24AolJayeo?w=500&auto=format" + }, + "timeLastUpdated": "2023-08-26T14:52:28.751Z" + } + ], + "pageKey": "0x0000000000000000000000000000000000000000000000000000000000000064" +} diff --git a/tests/fixtures/alchemy/get_nfts_for_contract_without_total_supply.json b/tests/fixtures/alchemy/get_nfts_for_contract_without_total_supply.json new file mode 100644 index 000000000..a2054572d --- /dev/null +++ b/tests/fixtures/alchemy/get_nfts_for_contract_without_total_supply.json @@ -0,0 +1,100 @@ +{ + "nfts": [ + { + "contract": { + "address": "0xe785E82358879F061BC3dcAC6f0444462D4b5330", + "name": "World Of Women", + "symbol": "WOW", + "tokenType": "ERC721", + "contractDeployer": "0xc9b6321dc216D91E626E9BAA61b06B0E4d55bdb1", + "deployedBlockNumber": 12907782, + "openSeaMetadata": { + "floorPrice": 0.749999, + "collectionName": "World of Women", + "collectionSlug": "world-of-women-nft", + "safelistRequestStatus": "verified", + "imageUrl": "https://i.seadn.io/gcs/files/8604de2d9aaec98dd389e3af1b1a14b6.gif?w=500&auto=format", + "description": "World of Women is a collection of 10,000 NFTs that gives you full access to our network of artists, creators, entrepreneurs, and executives who are championing diversity and equal opportunity on the blockchain.\n\nCreated and illustrated by Yam Karkai (@ykarkai), World of Women has made prominent appearances at Christie's, The New Yorker and Billboard.\n\nJoin us to receive exclusive access to NFT drops, experiences, and much more.\n\nThe Time is WoW.", + "externalUrl": "http://worldofwomen.art", + "twitterUsername": "worldofwomennft", + "discordUrl": "https://discord.gg/worldofwomen", + "bannerImageUrl": "https://i.seadn.io/gae/GHhptRLebBOWOy8kfXpYCVqsqdes-1-6I_jbuRnGTHHW6TD63CtciH75Dotfu2u8v6EmkWt-tjhkFRVLxRUwgMfKqqy5W24AolJayeo?w=500&auto=format", + "lastIngestedAt": "2023-08-26T14:28:31.000Z" + }, + "isSpam": null, + "spamClassifications": [] + }, + "tokenId": "0", + "tokenType": "ERC721", + "name": "WoW #0", + "description": null, + "tokenUri": "https://ipfs.io/ipfs/QmTNBQDbggLZdKF1fRgWnXsnRikd52zL5ciNu769g9JoUP/0", + "image": { + "cachedUrl": "https://nft-cdn.alchemy.com/eth-mainnet/fe477c7ef3ce8940cbf650198751e9e7", + "thumbnailUrl": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/fe477c7ef3ce8940cbf650198751e9e7", + "pngUrl": "https://res.cloudinary.com/alchemyapi/image/upload/convert-png/eth-mainnet/fe477c7ef3ce8940cbf650198751e9e7", + "contentType": "image/png", + "size": 93654, + "originalUrl": "https://ipfs.io/ipfs/QmYPznMvizE4BxrYaXM8dpRrzgN6Pg2rtTczjzNn13More" + }, + "raw": { + "tokenUri": "ipfs://QmTNBQDbggLZdKF1fRgWnXsnRikd52zL5ciNu769g9JoUP/0", + "metadata": { + "name": "WoW #0", + "image": "ipfs://QmYPznMvizE4BxrYaXM8dpRrzgN6Pg2rtTczjzNn13More", + "attributes": [ + { + "value": "Soft Purple", + "trait_type": "Background" + }, + { + "value": "Light Warm Yellow", + "trait_type": "Skin Tone" + }, + { + "value": "Brown Straight", + "trait_type": "Eyes" + }, + { + "value": "Heart Tattoo", + "trait_type": "Facial Features" + }, + { + "value": "Platinum Pixie", + "trait_type": "Hairstyle" + }, + { + "value": "Freedom Is Power Tee", + "trait_type": "Clothes" + }, + { + "value": "Malka", + "trait_type": "Necklace" + }, + { + "value": "Ocean Hoops", + "trait_type": "Earrings" + }, + { + "value": "Bubble Gum", + "trait_type": "Mouth" + }, + { + "value": "Flashy Blue", + "trait_type": "Lips Color" + } + ] + }, + "error": null + }, + "collection": { + "name": "World of Women", + "openSeaSlug": "world-of-women-nft", + "externalUrl": "http://worldofwomen.art", + "bannerImageUrl": "https://i.seadn.io/gae/GHhptRLebBOWOy8kfXpYCVqsqdes-1-6I_jbuRnGTHHW6TD63CtciH75Dotfu2u8v6EmkWt-tjhkFRVLxRUwgMfKqqy5W24AolJayeo?w=500&auto=format" + }, + "timeLastUpdated": "2023-08-26T14:52:28.751Z" + } + ], + "pageKey": "0x0000000000000000000000000000000000000000000000000000000000000064" +} diff --git a/tests/fixtures/alchemy/nft_batch_metadata.json b/tests/fixtures/alchemy/nft_batch_metadata.json deleted file mode 100644 index 700c8e2e1..000000000 --- a/tests/fixtures/alchemy/nft_batch_metadata.json +++ /dev/null @@ -1,48 +0,0 @@ -[ - { - "contract": { "address": "0x0e33fd2db4f140dca8f65671c40e36f8fd648fff" }, - "id": { "tokenId": "7148", "tokenMetadata": { "tokenType": "ERC721" } }, - "title": "100 Meals 7148", - "description": "Each NFT represents a 100 meal donation to Feeding America via their network of food banks.\\n\\n0.0066 ETH = ~$10.50 USD on 11\\/07\\/2022.\\n\\nFunds routed directly to Feeding America via The Giving Block.\\n\\nIf you prefer to donate ETH directly: 0x0b4290922c4bD6660c542451e98c69b208dfbb4d", - "tokenUri": { - "gateway": "", - "raw": "data:application\\/json;base64,eyJuYW1lIjogIjEwMCBNZWFscyA3MTQ4IiwgImRlc2NyaXB0aW9uIjogIkVhY2ggTkZUIHJlcHJlc2VudHMgYSAxMDAgbWVhbCBkb25hdGlvbiB0byBGZWVkaW5nIEFtZXJpY2EgdmlhIHRoZWlyIG5ldHdvcmsgb2YgZm9vZCBiYW5rcy5cblxuMC4wMDY2IEVUSCA9IH4kMTAuNTAgVVNEIG9uIDExLzA3LzIwMjIuXG5cbkZ1bmRzIHJvdXRlZCBkaXJlY3RseSB0byBGZWVkaW5nIEFtZXJpY2EgdmlhIFRoZSBHaXZpbmcgQmxvY2suXG5cbklmIHlvdSBwcmVmZXIgdG8gZG9uYXRlIEVUSCBkaXJlY3RseTogMHgwYjQyOTA5MjJjNGJENjY2MGM1NDI0NTFlOThjNjliMjA4ZGZiYjRkIiwgImltYWdlIjogImlwZnM6Ly9iYWZrcmVpYnNsYnNucHZjdG9yZzJlc2NqbTJrbWlieHR2NTJnaWJ3NXdvbW5vbG5sc2ZlcW1rN2l4ND9pZD03MTQ4IiwgInByb3BlcnRpZXMiOiB7Im51bWJlciI6IDcxNDgsICJuYW1lIjogIjEwMCBNZWFscyJ9fQ==" - }, - "media": [ - { - "gateway": "https:\\/\\/nft-cdn.alchemy.com\\/eth-mainnet\\/38f70907e4aaa3758c20b3f27ab791a1", - "thumbnail": "https:\\/\\/res.cloudinary.com\\/alchemyapi\\/image\\/upload\\/thumbnailv2\\/eth-mainnet\\/38f70907e4aaa3758c20b3f27ab791a1", - "raw": "ipfs:\\/\\/bafkreibslbsnpvctorg2escjm2kmibxtv52gibw5womnolnlsfeqmk7ix4?id=7148", - "format": "png", - "bytes": 231775 - } - ], - "metadata": { - "name": "100 Meals 7148", - "description": "Each NFT represents a 100 meal donation to Feeding America via their network of food banks.\\n\\n0.0066 ETH = ~$10.50 USD on 11\\/07\\/2022.\\n\\nFunds routed directly to Feeding America via The Giving Block.\\n\\nIf you prefer to donate ETH directly: 0x0b4290922c4bD6660c542451e98c69b208dfbb4d", - "image": "ipfs:\\/\\/bafkreibslbsnpvctorg2escjm2kmibxtv52gibw5womnolnlsfeqmk7ix4?id=7148", - "properties": { "name": "100 Meals", "number": 7148 } - }, - "timeLastUpdated": "2023-09-02T17:30:15.571Z", - "contractMetadata": { - "name": "100 Meals", - "symbol": "FEED", - "totalSupply": "24757", - "tokenType": "ERC721", - "contractDeployer": "0xc8f8e2f59dd95ff67c3d39109eca2e2a017d4c8a", - "deployedBlockNumber": 15920868, - "openSea": { - "floorPrice": 0.0005, - "collectionName": "100 Meals", - "collectionSlug": "100-meals", - "safelistRequestStatus": "approved", - "imageUrl": "https:\\/\\/i.seadn.io\\/gae\\/3JiXwIAdOJK19jchqvrHe0OHX8A5mZgKbQ_ccUy6Ku0ttH2P1TEB4IjKVilR1AeGBF-2s9442i2DaTzQ7QyYCmLWSwiGFDdOOWYHBQ?w=500&auto=format", - "description": "Each NFT represents a 100 meal donation to Feeding America via their network of food banks.\\n\\n0.0066 ETH = ~$10.50 USD on 11\\/07\\/2022.\\n\\nFunds routed directly to Feeding America via The Giving Block.\\n\\nIf you prefer to donate ETH directly: 0x0b4290922c4bD6660c542451e98c69b208dfbb4d\\n\\nRoyalties on this collection go directly to the address above.", - "externalUrl": "http:\\/\\/visualizevalue.com", - "twitterUsername": "jackbutcher", - "bannerImageUrl": "https:\\/\\/openseauserdata.com\\/files\\/55a8c3b070b98d3429eb57ab644cf087.svg", - "lastIngestedAt": "2023-09-29T00:15:42.000Z" - } - } - } -] diff --git a/tests/fixtures/alchemy/nft_batch_metadata_2.json b/tests/fixtures/alchemy/nft_batch_metadata_2.json new file mode 100644 index 000000000..8c08971a1 --- /dev/null +++ b/tests/fixtures/alchemy/nft_batch_metadata_2.json @@ -0,0 +1,124 @@ +{ + "nfts": [ + { + "contract": { + "address": "0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D", + "name": "BoredApeYachtClub", + "symbol": "BAYC", + "totalSupply": "10000", + "tokenType": "ERC721", + "contractDeployer": "0xaBA7161A7fb69c88e16ED9f455CE62B791EE4D03", + "deployedBlockNumber": 12287507, + "openSeaMetadata": { + "floorPrice": 33.92, + "collectionName": "Bored Ape Yacht Club", + "collectionSlug": "boredapeyachtclub", + "safelistRequestStatus": "verified", + "imageUrl": "https://i.seadn.io/gae/Ju9CkWtV-1Okvf45wo8UctR-M9He2PjILP0oOvxE89AyiPPGtrR3gysu1Zgy0hjd2xKIgjJJtWIc0ybj4Vd7wv8t3pxDGHoJBzDB?w=500&auto=format", + "description": "The Bored Ape Yacht Club is a collection of 10,000 unique Bored Ape NFTs— unique digital collectibles living on the Ethereum blockchain. Your Bored Ape doubles as your Yacht Club membership card, and grants access to members-only benefits, the first of which is access to THE BATHROOM, a collaborative graffiti board. Future areas and perks can be unlocked by the community through roadmap activation. Visit www.BoredApeYachtClub.com for more details.", + "externalUrl": "http://www.boredapeyachtclub.com/", + "twitterUsername": "BoredApeYC", + "discordUrl": "https://discord.gg/3P5K3dzgdB", + "bannerImageUrl": "https://i.seadn.io/gae/i5dYZRkVCUK97bfprQ3WXyrT9BnLSZtVKGJlKQ919uaUB0sxbngVCioaiyu9r6snqfi2aaTyIvv6DHm4m2R3y7hMajbsv14pSZK8mhs?w=500&auto=format", + "lastIngestedAt": "2023-08-20T02:39:14.000Z" + }, + "isSpam": null, + "spamClassifications": [] + }, + "tokenId": "2", + "tokenType": "ERC721", + "name": null, + "description": null, + "tokenUri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/2", + "image": { + "cachedUrl": "https://nft-cdn.alchemy.com/eth-mainnet/7124b9738f8d18e9c0775c9e107b1c52", + "thumbnailUrl": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/7124b9738f8d18e9c0775c9e107b1c52", + "pngUrl": "https://res.cloudinary.com/alchemyapi/image/upload/convert-png/eth-mainnet/7124b9738f8d18e9c0775c9e107b1c52", + "contentType": "image/png", + "size": 148611, + "originalUrl": "https://ipfs.io/ipfs/QmcJYkCKK7QPmYWjp4FD2e3Lv5WCGFuHNUByvGKBaytif4" + }, + "raw": { + "tokenUri": "ipfs://QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/2", + "metadata": { + "image": "ipfs://QmcJYkCKK7QPmYWjp4FD2e3Lv5WCGFuHNUByvGKBaytif4", + "attributes": [ + { "value": "3d", "trait_type": "Eyes" }, + { "value": "Bored Cigarette", "trait_type": "Mouth" }, + { "value": "Robot", "trait_type": "Fur" }, + { "value": "Sea Captain's Hat", "trait_type": "Hat" }, + { "value": "Aquamarine", "trait_type": "Background" } + ] + }, + "error": null + }, + "collection": { + "name": "Bored Ape Yacht Club", + "openSeaSlug": "boredapeyachtclub", + "externalUrl": "http://www.boredapeyachtclub.com/", + "bannerImageUrl": "https://i.seadn.io/gae/i5dYZRkVCUK97bfprQ3WXyrT9BnLSZtVKGJlKQ919uaUB0sxbngVCioaiyu9r6snqfi2aaTyIvv6DHm4m2R3y7hMajbsv14pSZK8mhs?w=500&auto=format" + }, + "timeLastUpdated": "2023-08-25T11:28:38.544Z" + }, + { + "contract": { + "address": "0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D", + "name": "BoredApeYachtClub", + "symbol": "BAYC", + "totalSupply": "10000", + "tokenType": "ERC721", + "contractDeployer": "0xaBA7161A7fb69c88e16ED9f455CE62B791EE4D03", + "deployedBlockNumber": 12287507, + "openSeaMetadata": { + "floorPrice": 33.92, + "collectionName": "Bored Ape Yacht Club", + "collectionSlug": "boredapeyachtclub", + "safelistRequestStatus": "verified", + "imageUrl": "https://i.seadn.io/gae/Ju9CkWtV-1Okvf45wo8UctR-M9He2PjILP0oOvxE89AyiPPGtrR3gysu1Zgy0hjd2xKIgjJJtWIc0ybj4Vd7wv8t3pxDGHoJBzDB?w=500&auto=format", + "description": "The Bored Ape Yacht Club is a collection of 10,000 unique Bored Ape NFTs— unique digital collectibles living on the Ethereum blockchain. Your Bored Ape doubles as your Yacht Club membership card, and grants access to members-only benefits, the first of which is access to THE BATHROOM, a collaborative graffiti board. Future areas and perks can be unlocked by the community through roadmap activation. Visit www.BoredApeYachtClub.com for more details.", + "externalUrl": "http://www.boredapeyachtclub.com/", + "twitterUsername": "BoredApeYC", + "discordUrl": "https://discord.gg/3P5K3dzgdB", + "bannerImageUrl": "https://i.seadn.io/gae/i5dYZRkVCUK97bfprQ3WXyrT9BnLSZtVKGJlKQ919uaUB0sxbngVCioaiyu9r6snqfi2aaTyIvv6DHm4m2R3y7hMajbsv14pSZK8mhs?w=500&auto=format", + "lastIngestedAt": "2023-08-20T02:39:14.000Z" + }, + "isSpam": null, + "spamClassifications": [] + }, + "tokenId": "2", + "tokenType": "ERC721", + "name": null, + "description": null, + "tokenUri": "https://ipfs.io/ipfs/QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/2", + "image": { + "cachedUrl": "https://nft-cdn.alchemy.com/eth-mainnet/7124b9738f8d18e9c0775c9e107b1c52", + "thumbnailUrl": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/7124b9738f8d18e9c0775c9e107b1c52", + "pngUrl": "https://res.cloudinary.com/alchemyapi/image/upload/convert-png/eth-mainnet/7124b9738f8d18e9c0775c9e107b1c52", + "contentType": "image/png", + "size": 148611, + "originalUrl": "https://ipfs.io/ipfs/QmcJYkCKK7QPmYWjp4FD2e3Lv5WCGFuHNUByvGKBaytif4" + }, + "raw": { + "tokenUri": "ipfs://QmeSjSinHpPnmXmspMjwiXyN6zS4E9zccariGR3jxcaWtq/2", + "metadata": { + "image": "ipfs://QmcJYkCKK7QPmYWjp4FD2e3Lv5WCGFuHNUByvGKBaytif4", + "attributes": [ + { "value": "3d", "trait_type": "Eyes" }, + { "value": "Bored Cigarette", "trait_type": "Mouth" }, + { "value": "Robot", "trait_type": "Fur" }, + { "value": "Sea Captain's Hat", "trait_type": "Hat" }, + { "value": "Aquamarine", "trait_type": "Background" } + ] + }, + "error": "Contract returned a broken token uri" + }, + "collection": { + "name": "Bored Ape Yacht Club", + "openSeaSlug": "boredapeyachtclub", + "externalUrl": "http://www.boredapeyachtclub.com/", + "bannerImageUrl": "https://i.seadn.io/gae/i5dYZRkVCUK97bfprQ3WXyrT9BnLSZtVKGJlKQ919uaUB0sxbngVCioaiyu9r6snqfi2aaTyIvv6DHm4m2R3y7hMajbsv14pSZK8mhs?w=500&auto=format" + }, + "timeLastUpdated": "2023-08-25T11:28:38.544Z" + } + ] +} diff --git a/tests/fixtures/alchemy/nft_batch_metadata_with_error.json b/tests/fixtures/alchemy/nft_batch_metadata_with_error.json deleted file mode 100644 index b856e0ae0..000000000 --- a/tests/fixtures/alchemy/nft_batch_metadata_with_error.json +++ /dev/null @@ -1,98 +0,0 @@ -[ - { - "contract": { "address": "0x0e33fd2db4f140dca8f65671c40e36f8fd648fff" }, - "id": { "tokenId": "7148", "tokenMetadata": { "tokenType": "ERC721" } }, - "title": "100 Meals 7148", - "description": "Each NFT represents a 100 meal donation to Feeding America via their network of food banks.\\n\\n0.0066 ETH = ~$10.50 USD on 11\\/07\\/2022.\\n\\nFunds routed directly to Feeding America via The Giving Block.\\n\\nIf you prefer to donate ETH directly: 0x0b4290922c4bD6660c542451e98c69b208dfbb4d", - "tokenUri": { - "gateway": "", - "raw": "data:application\\/json;base64,eyJuYW1lIjogIjEwMCBNZWFscyA3MTQ4IiwgImRlc2NyaXB0aW9uIjogIkVhY2ggTkZUIHJlcHJlc2VudHMgYSAxMDAgbWVhbCBkb25hdGlvbiB0byBGZWVkaW5nIEFtZXJpY2EgdmlhIHRoZWlyIG5ldHdvcmsgb2YgZm9vZCBiYW5rcy5cblxuMC4wMDY2IEVUSCA9IH4kMTAuNTAgVVNEIG9uIDExLzA3LzIwMjIuXG5cbkZ1bmRzIHJvdXRlZCBkaXJlY3RseSB0byBGZWVkaW5nIEFtZXJpY2EgdmlhIFRoZSBHaXZpbmcgQmxvY2suXG5cbklmIHlvdSBwcmVmZXIgdG8gZG9uYXRlIEVUSCBkaXJlY3RseTogMHgwYjQyOTA5MjJjNGJENjY2MGM1NDI0NTFlOThjNjliMjA4ZGZiYjRkIiwgImltYWdlIjogImlwZnM6Ly9iYWZrcmVpYnNsYnNucHZjdG9yZzJlc2NqbTJrbWlieHR2NTJnaWJ3NXdvbW5vbG5sc2ZlcW1rN2l4ND9pZD03MTQ4IiwgInByb3BlcnRpZXMiOiB7Im51bWJlciI6IDcxNDgsICJuYW1lIjogIjEwMCBNZWFscyJ9fQ==" - }, - "media": [ - { - "gateway": "https:\\/\\/nft-cdn.alchemy.com\\/eth-mainnet\\/38f70907e4aaa3758c20b3f27ab791a1", - "thumbnail": "https:\\/\\/res.cloudinary.com\\/alchemyapi\\/image\\/upload\\/thumbnailv2\\/eth-mainnet\\/38f70907e4aaa3758c20b3f27ab791a1", - "raw": "ipfs:\\/\\/bafkreibslbsnpvctorg2escjm2kmibxtv52gibw5womnolnlsfeqmk7ix4?id=7148", - "format": "png", - "bytes": 231775 - } - ], - "metadata": { - "name": "100 Meals 7148", - "description": "Each NFT represents a 100 meal donation to Feeding America via their network of food banks.\\n\\n0.0066 ETH = ~$10.50 USD on 11\\/07\\/2022.\\n\\nFunds routed directly to Feeding America via The Giving Block.\\n\\nIf you prefer to donate ETH directly: 0x0b4290922c4bD6660c542451e98c69b208dfbb4d", - "image": "ipfs:\\/\\/bafkreibslbsnpvctorg2escjm2kmibxtv52gibw5womnolnlsfeqmk7ix4?id=7148", - "properties": { "name": "100 Meals", "number": 7148 } - }, - "timeLastUpdated": "2023-09-02T17:30:15.571Z", - "error": "Contract returned a broken token uri", - "contractMetadata": { - "name": "100 Meals", - "symbol": "FEED", - "totalSupply": "24757", - "tokenType": "ERC721", - "contractDeployer": "0xc8f8e2f59dd95ff67c3d39109eca2e2a017d4c8a", - "deployedBlockNumber": 15920868, - "openSea": { - "floorPrice": 0.0005, - "collectionName": "100 Meals", - "collectionSlug": "100-meals", - "safelistRequestStatus": "approved", - "imageUrl": "https:\\/\\/i.seadn.io\\/gae\\/3JiXwIAdOJK19jchqvrHe0OHX8A5mZgKbQ_ccUy6Ku0ttH2P1TEB4IjKVilR1AeGBF-2s9442i2DaTzQ7QyYCmLWSwiGFDdOOWYHBQ?w=500&auto=format", - "description": "Each NFT represents a 100 meal donation to Feeding America via their network of food banks.\\n\\n0.0066 ETH = ~$10.50 USD on 11\\/07\\/2022.\\n\\nFunds routed directly to Feeding America via The Giving Block.\\n\\nIf you prefer to donate ETH directly: 0x0b4290922c4bD6660c542451e98c69b208dfbb4d\\n\\nRoyalties on this collection go directly to the address above.", - "externalUrl": "http:\\/\\/visualizevalue.com", - "twitterUsername": "jackbutcher", - "bannerImageUrl": "https:\\/\\/openseauserdata.com\\/files\\/55a8c3b070b98d3429eb57ab644cf087.svg", - "lastIngestedAt": "2023-09-29T00:15:42.000Z" - } - } - }, - { - "contract": { - "address": "0x54e10253619e8790e162b5517aec518ad0676ef1" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000051", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://metadataapi.codename883.repl.co/apiA4C/81", - "raw": "https://metadataapi.codename883.repl.co/apiA4C/81" - }, - "media": [ - { - "gateway": "", - "raw": "" - } - ], - "metadata": { - "metadata": [], - "attributes": [] - }, - "timeLastUpdated": "2023-10-10T10:18:02.421Z", - "error": "Contract returned a broken token uri", - "contractMetadata": { - "name": "Apes For Change", - "symbol": "A4C", - "totalSupply": "3480", - "tokenType": "ERC721", - "contractDeployer": "0xb817b0137bb1a838aebcc63a231d152c6cb03b41", - "deployedBlockNumber": 15319472, - "openSea": { - "floorPrice": 0.001, - "collectionName": "Apes For Change: A CODENAMEhamm Joint", - "collectionSlug": "apesforchange", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/e64de844a9f282b896da7507f8ad31f8.png?w=500&auto=format", - "description": "Apes For Change was created to pay tribute to one of the greatest communities in the NFT space. The artwork was reimagined, the traits were reshuffled, and the collection was minted exclusively with $APE. A CODENAME:hamm Joint.", - "externalUrl": "https://apes-for-change.webflow.io/", - "bannerImageUrl": "https://i.seadn.io/gcs/files/686d50de759a7acb244655596962b457.png?w=500&auto=format", - "lastIngestedAt": "2023-10-07T04:53:52.000Z" - } - } - } -] diff --git a/tests/fixtures/alchemy/nfts.json b/tests/fixtures/alchemy/nfts.json deleted file mode 100644 index 044464347..000000000 --- a/tests/fixtures/alchemy/nfts.json +++ /dev/null @@ -1,7639 +0,0 @@ -{ - "ownedNfts": [ - { - "contract": { - "address": "0x0631cc561618ee4fa142e502c5f5ab9fcc2aa90c" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000000", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "", - "raw": "" - }, - "media": [ - { - "gateway": "", - "raw": "" - } - ], - "metadata": { - "metadata": [], - "attributes": [] - }, - "timeLastUpdated": "2023-03-23T00:48:00.359Z", - "error": "Malformed token uri, do not retry", - "contractMetadata": { - "name": "Vitaliks Boner", - "symbol": "VBON", - "totalSupply": "122", - "tokenType": "ERC721", - "contractDeployer": "0x1d7a2f17caba8bc3562394a34d83c8b25dcfbf74", - "deployedBlockNumber": 15440719, - "openSea": { - "floorPrice": 0, - "collectionName": "Vitaliks Boner", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/e9795c64bb33a38a0a7f48c3a86c6bd7.jpg?w=500&auto=format", - "description": "You know you want it. 1 free per transaction, 0.005 each for the rest (max 20 per tx). 5,555 boners in total.", - "twitterUsername": "Vitaliks_Boner", - "lastIngestedAt": "2023-03-17T00:23:33.000Z" - } - } - }, - { - "contract": { - "address": "0x0631cc561618ee4fa142e502c5f5ab9fcc2aa90c" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000057", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "", - "raw": "" - }, - "media": [ - { - "gateway": "", - "raw": "" - } - ], - "metadata": { - "metadata": [], - "attributes": [] - }, - "timeLastUpdated": "2023-03-23T00:48:00.361Z", - "error": "Malformed token uri, do not retry", - "contractMetadata": { - "name": "Vitaliks Boner", - "symbol": "VBON", - "totalSupply": "122", - "tokenType": "ERC721", - "contractDeployer": "0x1d7a2f17caba8bc3562394a34d83c8b25dcfbf74", - "deployedBlockNumber": 15440719, - "openSea": { - "floorPrice": 0, - "collectionName": "Vitaliks Boner", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/e9795c64bb33a38a0a7f48c3a86c6bd7.jpg?w=500&auto=format", - "description": "You know you want it. 1 free per transaction, 0.005 each for the rest (max 20 per tx). 5,555 boners in total.", - "twitterUsername": "Vitaliks_Boner", - "lastIngestedAt": "2023-03-17T00:23:33.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000000b2", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #0178", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/178.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/178.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/5a11c8c85e7f3a44b51e4a314e444a86", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/5a11c8c85e7f3a44b51e4a314e444a86", - "raw": "ipfs://QmfQeQDBVNBzAQfizSwnNey55NHTjmReKPnrpyQRrMJgDH", - "format": "png", - "bytes": 4248162 - } - ], - "metadata": { - "name": "Randy H. #0178", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmfQeQDBVNBzAQfizSwnNey55NHTjmReKPnrpyQRrMJgDH", - "external_url": "https://psychonautznft.com/detail/178", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "Purple Haze", - "trait_type": "Skin" - }, - { - "value": "Purple Neuro", - "trait_type": "Consciousness" - }, - { - "value": "Hypno Green", - "trait_type": "Eyes" - }, - { - "value": "Full Teeth White", - "trait_type": "Mouth" - }, - { - "value": "Piquín Green", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-16T15:32:20.883Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000001d6", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #0470", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/470.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/470.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/538a8ec66480a4c3715094a9b0d0bd3b", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/538a8ec66480a4c3715094a9b0d0bd3b", - "raw": "ipfs://QmRtYeB5GXLdgeRFzhTQx9qdDUHinuK2goFYfhZ2e3zVNY", - "format": "png", - "bytes": 6318143 - } - ], - "metadata": { - "name": "Randy H. #0470", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmRtYeB5GXLdgeRFzhTQx9qdDUHinuK2goFYfhZ2e3zVNY", - "external_url": "https://psychonautznft.com/detail/470", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "Tye Dye", - "trait_type": "Skin" - }, - { - "value": "Spaced Out Green", - "trait_type": "Consciousness" - }, - { - "value": "Hypno Green", - "trait_type": "Eyes" - }, - { - "value": "Florecita Silvestre Purple R", - "trait_type": "Eye Creature" - }, - { - "value": "Full Teeth Green", - "trait_type": "Mouth" - }, - { - "value": "Piquín Green", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-22T18:08:39.830Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000231", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Blaze #0561", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/561.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/561.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/23cf987f10f4a8c1c9ce8ded213ec436", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/23cf987f10f4a8c1c9ce8ded213ec436", - "raw": "ipfs://Qmd25WiEAMaaBdMgbytd7WbSGeYmKnrDt5f3mQGWw8c8LR", - "format": "png", - "bytes": 7619378 - } - ], - "metadata": { - "name": "Blaze #0561", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://Qmd25WiEAMaaBdMgbytd7WbSGeYmKnrDt5f3mQGWw8c8LR", - "external_url": "https://psychonautznft.com/detail/561", - "attributes": [ - { - "value": "Blaze", - "trait_type": "Character" - }, - { - "value": "Algae", - "trait_type": "Skin" - }, - { - "value": "Paranoid", - "trait_type": "Consciousness" - }, - { - "value": "Bloodshot Green", - "trait_type": "Eyes" - }, - { - "value": "Full Teeth Blue", - "trait_type": "Mouth" - } - ] - }, - "timeLastUpdated": "2023-03-22T09:06:39.527Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000371", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #0881", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/881.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/881.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/6b8643d23ecaff0c3e8baceb71ed4a1c", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/6b8643d23ecaff0c3e8baceb71ed4a1c", - "raw": "ipfs://QmdRi5TemieefHnnBUrugAm7LDNH6uZRkQR2P51dNxEUkZ", - "format": "png", - "bytes": 3765168 - } - ], - "metadata": { - "name": "Randy H. #0881", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmdRi5TemieefHnnBUrugAm7LDNH6uZRkQR2P51dNxEUkZ", - "external_url": "https://psychonautznft.com/detail/881", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "Acid Green", - "trait_type": "Skin" - }, - { - "value": "Red Neuro", - "trait_type": "Consciousness" - }, - { - "value": "HAAK", - "trait_type": "Eyes" - }, - { - "value": "Skull Yard Teeth", - "trait_type": "Mouth" - }, - { - "value": "Sapotoad Acid Green", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-21T15:06:39.473Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000374", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Haze #0884", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/884.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/884.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/633893b40a84039d12529e2e6cd1256e", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/633893b40a84039d12529e2e6cd1256e", - "raw": "ipfs://QmVVKQ7pWnunYXBfFQm77qGAfLQc3L8f6SeDBEdEomhWJR", - "format": "png", - "bytes": 3790602 - } - ], - "metadata": { - "name": "Haze #0884", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmVVKQ7pWnunYXBfFQm77qGAfLQc3L8f6SeDBEdEomhWJR", - "external_url": "https://psychonautznft.com/detail/884", - "attributes": [ - { - "value": "Haze", - "trait_type": "Character" - }, - { - "value": "OG Blue", - "trait_type": "Skin" - }, - { - "value": "HAAK", - "trait_type": "Eyes" - }, - { - "value": "Full Teeth Green", - "trait_type": "Mouth" - }, - { - "value": "Eye See You Green", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-22T08:06:39.368Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000485", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Haze #1157", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/1157.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/1157.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/e58a236e1f332e1ff8846b493118c672", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/e58a236e1f332e1ff8846b493118c672", - "raw": "ipfs://QmVg7tmMYoimNVaoZsTJSLbBqZpm6ZBnwuwdDAX7Y7e4sv", - "format": "png", - "bytes": 4269678 - } - ], - "metadata": { - "name": "Haze #1157", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmVg7tmMYoimNVaoZsTJSLbBqZpm6ZBnwuwdDAX7Y7e4sv", - "external_url": "https://psychonautznft.com/detail/1157", - "attributes": [ - { - "value": "Haze", - "trait_type": "Character" - }, - { - "value": "Purple Haze", - "trait_type": "Skin" - }, - { - "value": "Spaced Out Green", - "trait_type": "Consciousness" - }, - { - "value": "HAAK", - "trait_type": "Eyes" - }, - { - "value": "Full Teeth White", - "trait_type": "Mouth" - }, - { - "value": "Eye See You Pink", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-21T18:06:39.203Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000004d8", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #1240", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/1240.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/1240.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/5439a52de416fd95b6b084d5911d59ab", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/5439a52de416fd95b6b084d5911d59ab", - "raw": "ipfs://QmSLpS7BwWD86LDoChLuye3gis4AnNcBzqpZggNoikj9gK", - "format": "png", - "bytes": 7424052 - } - ], - "metadata": { - "name": "Randy H. #1240", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmSLpS7BwWD86LDoChLuye3gis4AnNcBzqpZggNoikj9gK", - "external_url": "https://psychonautznft.com/detail/1240", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "Algae", - "trait_type": "Skin" - }, - { - "value": "Paranoid", - "trait_type": "Consciousness" - }, - { - "value": "DWBH Yellow", - "trait_type": "Eyes" - }, - { - "value": "Half Teeth Yellow", - "trait_type": "Mouth" - }, - { - "value": "Lenny Blue Heart Pill", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-20T20:10:39.330Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000005d8", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Haze #1496", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/1496.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/1496.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/87e3c0dc8cfcd629d003025650a98825", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/87e3c0dc8cfcd629d003025650a98825", - "raw": "ipfs://QmUtzBF5P6NrStusSmzfch5cMieQeQN1ez5ktTJceAnHtc", - "format": "png", - "bytes": 4577704 - } - ], - "metadata": { - "name": "Haze #1496", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmUtzBF5P6NrStusSmzfch5cMieQeQN1ez5ktTJceAnHtc", - "external_url": "https://psychonautznft.com/detail/1496", - "attributes": [ - { - "value": "Haze", - "trait_type": "Character" - }, - { - "value": "Purple Haze", - "trait_type": "Skin" - }, - { - "value": "Paranoid", - "trait_type": "Consciousness" - }, - { - "value": "HAAK", - "trait_type": "Eyes" - }, - { - "value": "Full Teeth Pink", - "trait_type": "Mouth" - }, - { - "value": "Chico Green", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-22T04:52:39.063Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000711", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #1809", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/1809.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/1809.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/946c8acf6b060017b9fa83c35da74d37", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/946c8acf6b060017b9fa83c35da74d37", - "raw": "ipfs://QmTJAshrHorYaUJduzGmnrUYnQ7hXkw8uim4Y2pNppCrss", - "format": "png", - "bytes": 3609404 - } - ], - "metadata": { - "name": "Randy H. #1809", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmTJAshrHorYaUJduzGmnrUYnQ7hXkw8uim4Y2pNppCrss", - "external_url": "https://psychonautznft.com/detail/1809", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "OG Blue", - "trait_type": "Skin" - }, - { - "value": "Paranoid", - "trait_type": "Consciousness" - }, - { - "value": "HAAK", - "trait_type": "Eyes" - }, - { - "value": "Full Teeth White", - "trait_type": "Mouth" - }, - { - "value": "Piquín Pink", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-15T15:03:16.509Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000743", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #1859", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/1859.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/1859.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/f065afd5cf799f4ab1252111f8f3d38c", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/f065afd5cf799f4ab1252111f8f3d38c", - "raw": "ipfs://QmTiZu1zRzAGo92hpFu2tbthVefgY2SuCBdrETpdt9Rng6", - "format": "png", - "bytes": 8725305 - } - ], - "metadata": { - "name": "Randy H. #1859", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmTiZu1zRzAGo92hpFu2tbthVefgY2SuCBdrETpdt9Rng6", - "external_url": "https://psychonautznft.com/detail/1859", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "Psychedelic", - "trait_type": "Skin" - }, - { - "value": "Spaced Out Purple", - "trait_type": "Consciousness" - }, - { - "value": "HAAK", - "trait_type": "Eyes" - }, - { - "value": "Baddest Man On The Planet Teeth Green", - "trait_type": "Mouth" - }, - { - "value": "Psilo Forest Green", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-21T11:58:38.690Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000834", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Haze #2100", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/2100.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/2100.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/503694462e121e5515655f3d910f5358", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/503694462e121e5515655f3d910f5358", - "raw": "ipfs://QmToveHoG5dFMKcQGK6NmjCk7q4jEroyQGaV1TiqJLpMex", - "format": "png", - "bytes": 4285303 - } - ], - "metadata": { - "name": "Haze #2100", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmToveHoG5dFMKcQGK6NmjCk7q4jEroyQGaV1TiqJLpMex", - "external_url": "https://psychonautznft.com/detail/2100", - "attributes": [ - { - "value": "Haze", - "trait_type": "Character" - }, - { - "value": "Purple Haze", - "trait_type": "Skin" - }, - { - "value": "Spaced Out Green", - "trait_type": "Consciousness" - }, - { - "value": "HAAK", - "trait_type": "Eyes" - }, - { - "value": "Full Teeth Rainbow", - "trait_type": "Mouth" - }, - { - "value": "Peyote Pedro Acid Green", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-21T20:10:39.333Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000008c4", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #2244", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/2244.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/2244.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/3b9ea99db6d503466fb732c361ee4e29", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/3b9ea99db6d503466fb732c361ee4e29", - "raw": "ipfs://QmRoD6J5yYcMo3VnnnDbPSnnV71dxDEtYyMrUtbyJziYzG", - "format": "png", - "bytes": 3927171 - } - ], - "metadata": { - "name": "Randy H. #2244", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmRoD6J5yYcMo3VnnnDbPSnnV71dxDEtYyMrUtbyJziYzG", - "external_url": "https://psychonautznft.com/detail/2244", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "Green Mushroom", - "trait_type": "Skin" - }, - { - "value": "Bloodshot Green", - "trait_type": "Eyes" - }, - { - "value": "Half Teeth Green", - "trait_type": "Mouth" - }, - { - "value": "Lenny Psychedelic Tab", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-19T18:54:39.036Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000008c7", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #2247", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/2247.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/2247.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/628a10404a38cca566defcbd5e346b41", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/628a10404a38cca566defcbd5e346b41", - "raw": "ipfs://QmTn5bSP1nRe9pQ2m3yHF4yZjsVwCVMH15D2Ua6R2nfnDK", - "format": "png", - "bytes": 6848708 - } - ], - "metadata": { - "name": "Randy H. #2247", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmTn5bSP1nRe9pQ2m3yHF4yZjsVwCVMH15D2Ua6R2nfnDK", - "external_url": "https://psychonautznft.com/detail/2247", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "Algae", - "trait_type": "Skin" - }, - { - "value": "Spaced Out Purple", - "trait_type": "Consciousness" - }, - { - "value": "Bloodshot Green", - "trait_type": "Eyes" - }, - { - "value": "Full Teeth Yellow", - "trait_type": "Mouth" - }, - { - "value": "Piquín Pink", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-22T20:32:39.587Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000008e3", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #2275", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/2275.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/2275.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d7ca5b868f6241f3fbc25f0e11745c25", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/d7ca5b868f6241f3fbc25f0e11745c25", - "raw": "ipfs://QmaHweuvW8JYmjJ3mff3mrCmnb8TYQ11mABW7t6eQWvGvG", - "format": "png", - "bytes": 3652503 - } - ], - "metadata": { - "name": "Randy H. #2275", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmaHweuvW8JYmjJ3mff3mrCmnb8TYQ11mABW7t6eQWvGvG", - "external_url": "https://psychonautznft.com/detail/2275", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "OG Blue", - "trait_type": "Skin" - }, - { - "value": "HAAK", - "trait_type": "Eyes" - }, - { - "value": "Skull Yard Teeth", - "trait_type": "Mouth" - }, - { - "value": "Peyote Real de Catorce Acid Green", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-22T00:02:38.963Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000097d", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Blaze #2429", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/2429.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/2429.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/88e18edb2582c072eb791ff1d14f725d", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/88e18edb2582c072eb791ff1d14f725d", - "raw": "ipfs://QmVaDMQm5LdSNCXc7Hk5D8FjAKiu5nmJNrQrUyctAgk4bA", - "format": "png", - "bytes": 3506966 - } - ], - "metadata": { - "name": "Blaze #2429", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmVaDMQm5LdSNCXc7Hk5D8FjAKiu5nmJNrQrUyctAgk4bA", - "external_url": "https://psychonautznft.com/detail/2429", - "attributes": [ - { - "value": "Blaze", - "trait_type": "Character" - }, - { - "value": "Acid Green", - "trait_type": "Skin" - }, - { - "value": "DWBH Yellow", - "trait_type": "Eyes" - }, - { - "value": "Full Teeth Green", - "trait_type": "Mouth" - } - ] - }, - "timeLastUpdated": "2023-03-20T22:54:39.284Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000009bb", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Haze #2491", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/2491.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/2491.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/46fb790669ec8bd0927bca6f0b31c34f", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/46fb790669ec8bd0927bca6f0b31c34f", - "raw": "ipfs://QmXqNnwELDsc4iW6yTj1BUhFXhrYYtkm7L7aD7bhFXEGb1", - "format": "png", - "bytes": 4802987 - } - ], - "metadata": { - "name": "Haze #2491", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmXqNnwELDsc4iW6yTj1BUhFXhrYYtkm7L7aD7bhFXEGb1", - "external_url": "https://psychonautznft.com/detail/2491", - "attributes": [ - { - "value": "Haze", - "trait_type": "Character" - }, - { - "value": "Rainbow", - "trait_type": "Skin" - }, - { - "value": "Paranoid", - "trait_type": "Consciousness" - }, - { - "value": "Hypno Green", - "trait_type": "Eyes" - }, - { - "value": "Full Teeth Blue", - "trait_type": "Mouth" - }, - { - "value": "Eye See You Pink", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-21T18:06:39.561Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000009fb", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #2555", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/2555.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/2555.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/8de383bc7c157a4a2651ff0bceee18c6", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/8de383bc7c157a4a2651ff0bceee18c6", - "raw": "ipfs://QmbR6u1ahYvVkZsMYc5GmhBiavUW7LudJwxM9xTa3Sh73S", - "format": "png", - "bytes": 3912095 - } - ], - "metadata": { - "name": "Randy H. #2555", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmbR6u1ahYvVkZsMYc5GmhBiavUW7LudJwxM9xTa3Sh73S", - "external_url": "https://psychonautznft.com/detail/2555", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "Purple Haze", - "trait_type": "Skin" - }, - { - "value": "Bloodshot Pink", - "trait_type": "Eyes" - }, - { - "value": "Half Teeth Blue", - "trait_type": "Mouth" - }, - { - "value": "Lenny Blue Tab", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-22T17:50:44.237Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000a64", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #2660", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/2660.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/2660.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/9abeae7808796931ac86eaf5e489ac26", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/9abeae7808796931ac86eaf5e489ac26", - "raw": "ipfs://QmZeo1W2w13Gia1ykKDm3HSnmJ2GNCNwXwKtRHbg6pLDwJ", - "format": "png", - "bytes": 4074529 - } - ], - "metadata": { - "name": "Randy H. #2660", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmZeo1W2w13Gia1ykKDm3HSnmJ2GNCNwXwKtRHbg6pLDwJ", - "external_url": "https://psychonautznft.com/detail/2660", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "Rainbow", - "trait_type": "Skin" - }, - { - "value": "Spaced Out Green", - "trait_type": "Consciousness" - }, - { - "value": "HAAK", - "trait_type": "Eyes" - }, - { - "value": "Half Teeth White", - "trait_type": "Mouth" - }, - { - "value": "Lenny Blue Tab", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-21T03:40:38.741Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000a8f", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Haze #2703", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/2703.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/2703.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/e25237c48ccd4336bb787faa62d9e97e", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/e25237c48ccd4336bb787faa62d9e97e", - "raw": "ipfs://QmV7yrH4HnPrHiB1UdXz8MMygWhgsRgmQbTP5hkmykteF3", - "format": "png", - "bytes": 4359013 - } - ], - "metadata": { - "name": "Haze #2703", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmV7yrH4HnPrHiB1UdXz8MMygWhgsRgmQbTP5hkmykteF3", - "external_url": "https://psychonautznft.com/detail/2703", - "attributes": [ - { - "value": "Haze", - "trait_type": "Character" - }, - { - "value": "Purple Haze", - "trait_type": "Skin" - }, - { - "value": "HAAK", - "trait_type": "Eyes" - }, - { - "value": "Full Teeth Yellow", - "trait_type": "Mouth" - }, - { - "value": "Screaming Skull Teeth", - "trait_type": "Mouth Creature" - }, - { - "value": "Acid Shroom Green", - "trait_type": "Nose" - } - ] - }, - "timeLastUpdated": "2023-03-22T18:00:39.095Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000aab", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Blaze #2731", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/2731.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/2731.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/3c57f0a6a26f7533767fb48d856750a0", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/3c57f0a6a26f7533767fb48d856750a0", - "raw": "ipfs://QmQ4gyL5RzESG5uoF3FRu8eszcoKni4HxrP1KJjfUAie4p", - "format": "png", - "bytes": 3986126 - } - ], - "metadata": { - "name": "Blaze #2731", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmQ4gyL5RzESG5uoF3FRu8eszcoKni4HxrP1KJjfUAie4p", - "external_url": "https://psychonautznft.com/detail/2731", - "attributes": [ - { - "value": "Blaze", - "trait_type": "Character" - }, - { - "value": "Pink Mushroom", - "trait_type": "Skin" - }, - { - "value": "Spaced Out Purple", - "trait_type": "Consciousness" - }, - { - "value": "DWBH Green", - "trait_type": "Eyes" - }, - { - "value": "Full Teeth Yellow", - "trait_type": "Mouth" - } - ] - }, - "timeLastUpdated": "2023-03-11T13:23:32.948Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000b0a", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #2826", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/2826.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/2826.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/edf300e40a6e0573c429d7fc21a9c2e2", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/edf300e40a6e0573c429d7fc21a9c2e2", - "raw": "ipfs://QmSyRFNFT3ybi7U7ModveKT83pw5L2sTGq651BpLpd9EFv", - "format": "png", - "bytes": 7604133 - } - ], - "metadata": { - "name": "Randy H. #2826", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmSyRFNFT3ybi7U7ModveKT83pw5L2sTGq651BpLpd9EFv", - "external_url": "https://psychonautznft.com/detail/2826", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "Algae", - "trait_type": "Skin" - }, - { - "value": "Green Neuro", - "trait_type": "Consciousness" - }, - { - "value": "HAAK", - "trait_type": "Eyes" - }, - { - "value": "Half Teeth White", - "trait_type": "Mouth" - }, - { - "value": "Psilo Forest Purple", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-22T23:06:39.427Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000e1f", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Blaze #3615", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/3615.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/3615.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/8bbb17a23bc3463cb0279a54bb61e8a8", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/8bbb17a23bc3463cb0279a54bb61e8a8", - "raw": "ipfs://QmcyrTtxp6MgQcducP3TDeBT9J7Ji1wVi4ohotTHitF1Fu", - "format": "png", - "bytes": 3706598 - } - ], - "metadata": { - "name": "Blaze #3615", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmcyrTtxp6MgQcducP3TDeBT9J7Ji1wVi4ohotTHitF1Fu", - "external_url": "https://psychonautznft.com/detail/3615", - "attributes": [ - { - "value": "Blaze", - "trait_type": "Character" - }, - { - "value": "OG Blue", - "trait_type": "Skin" - }, - { - "value": "Red Neuro", - "trait_type": "Consciousness" - }, - { - "value": "HAAK", - "trait_type": "Eyes" - }, - { - "value": "Full Teeth Orange", - "trait_type": "Mouth" - } - ] - }, - "timeLastUpdated": "2023-03-22T15:42:39.081Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000e23", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #3619", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/3619.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/3619.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/4a3bbb1c22295760fadeb03a5fdbf55a", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/4a3bbb1c22295760fadeb03a5fdbf55a", - "raw": "ipfs://QmYqQ4evy2Ljw5Ewf4oFUK3Ge4wXGEERQjcgM3RQcEAjCk", - "format": "png", - "bytes": 4179918 - } - ], - "metadata": { - "name": "Randy H. #3619", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmYqQ4evy2Ljw5Ewf4oFUK3Ge4wXGEERQjcgM3RQcEAjCk", - "external_url": "https://psychonautznft.com/detail/3619", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "Rainbow", - "trait_type": "Skin" - }, - { - "value": "HAAK", - "trait_type": "Eyes" - }, - { - "value": "Baddest Man On The Planet Teeth White", - "trait_type": "Mouth" - }, - { - "value": "Lenny Green Tab", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-21T18:04:39.230Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000e66", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Blaze #3686", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/3686.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/3686.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/10833178ae1efc7bca74b51e7e3d8a06", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/10833178ae1efc7bca74b51e7e3d8a06", - "raw": "ipfs://QmXim4NEEbEF83PKfLi5TzrnHvMzB4ZYzeDgubGzBFEUFe", - "format": "png", - "bytes": 3785240 - } - ], - "metadata": { - "name": "Blaze #3686", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmXim4NEEbEF83PKfLi5TzrnHvMzB4ZYzeDgubGzBFEUFe", - "external_url": "https://psychonautznft.com/detail/3686", - "attributes": [ - { - "value": "Blaze", - "trait_type": "Character" - }, - { - "value": "Pink Mushroom", - "trait_type": "Skin" - }, - { - "value": "Hypno Green", - "trait_type": "Eyes" - }, - { - "value": "Full Teeth Green", - "trait_type": "Mouth" - } - ] - }, - "timeLastUpdated": "2023-03-22T18:46:39.428Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000e7b", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #3707", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/3707.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/3707.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/85d44dac66e0d2f9981fd0957191066f", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/85d44dac66e0d2f9981fd0957191066f", - "raw": "ipfs://QmcXmFq3J3aS3LXDQPpq3esy4TY3B4sCNRGiNvHVZjVH2d", - "format": "png", - "bytes": 3882822 - } - ], - "metadata": { - "name": "Randy H. #3707", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmcXmFq3J3aS3LXDQPpq3esy4TY3B4sCNRGiNvHVZjVH2d", - "external_url": "https://psychonautznft.com/detail/3707", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "Purple Haze", - "trait_type": "Skin" - }, - { - "value": "Spaced Out Green", - "trait_type": "Consciousness" - }, - { - "value": "HAAK", - "trait_type": "Eyes" - }, - { - "value": "Florecita Silvestre Red R", - "trait_type": "Eye Creature" - }, - { - "value": "Full Teeth Blue", - "trait_type": "Mouth" - }, - { - "value": "Piquín Green", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-21T11:18:39.466Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000162b", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Haze #5675", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/5675.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/5675.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/72184e18948f0a6e4d37dcec2c6777df", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/72184e18948f0a6e4d37dcec2c6777df", - "raw": "ipfs://QmekAeGB2hZv228LniPQJeqmGCmHeMhyX5JiA4iN9ESXxm", - "format": "png", - "bytes": 4254541 - } - ], - "metadata": { - "name": "Haze #5675", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmekAeGB2hZv228LniPQJeqmGCmHeMhyX5JiA4iN9ESXxm", - "external_url": "https://psychonautznft.com/detail/5675", - "attributes": [ - { - "value": "Haze", - "trait_type": "Character" - }, - { - "value": "Pink Mushroom", - "trait_type": "Skin" - }, - { - "value": "Red Neuro", - "trait_type": "Consciousness" - }, - { - "value": "HAAK", - "trait_type": "Eyes" - }, - { - "value": "Full Teeth Pink", - "trait_type": "Mouth" - } - ] - }, - "timeLastUpdated": "2023-03-22T18:48:39.192Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000001722", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #5922", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/5922.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/5922.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/70b7fad1a36bc87d361be812dcea5864", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/70b7fad1a36bc87d361be812dcea5864", - "raw": "ipfs://QmbRgLFsVJvr3h5TLdqYdx6q8nzeJxdBc4BVVzMjWD66vk", - "format": "png", - "bytes": 3346756 - } - ], - "metadata": { - "name": "Randy H. #5922", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmbRgLFsVJvr3h5TLdqYdx6q8nzeJxdBc4BVVzMjWD66vk", - "external_url": "https://psychonautznft.com/detail/5922", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "Acid Green", - "trait_type": "Skin" - }, - { - "value": "Spaced Out Purple", - "trait_type": "Consciousness" - }, - { - "value": "HAAK", - "trait_type": "Eyes" - }, - { - "value": "Chimuelo", - "trait_type": "Mouth" - }, - { - "value": "Lenny Pink Tab", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-21T20:08:38.764Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000001774", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #6004", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/6004.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/6004.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/519de6b3f9d04a7c6abeab409382fc26", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/519de6b3f9d04a7c6abeab409382fc26", - "raw": "ipfs://QmQRXny2TMpzF3sdoCCzvYJyPs9eTGSaFVqjw9E4yadakg", - "format": "png", - "bytes": 6226624 - } - ], - "metadata": { - "name": "Randy H. #6004", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmQRXny2TMpzF3sdoCCzvYJyPs9eTGSaFVqjw9E4yadakg", - "external_url": "https://psychonautznft.com/detail/6004", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "Tye Dye", - "trait_type": "Skin" - }, - { - "value": "Spaced Out Purple", - "trait_type": "Consciousness" - }, - { - "value": "Hypno Purple", - "trait_type": "Eyes" - }, - { - "value": "Baddest Man On The Planet Teeth Purple", - "trait_type": "Mouth" - }, - { - "value": "Lenny Green Tab", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-21T03:36:39.209Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000019a1", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #6561", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/6561.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/6561.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/b1ffedc28f3157f46bda12024ca898ba", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/b1ffedc28f3157f46bda12024ca898ba", - "raw": "ipfs://QmTkNuQ8fAYa3CdsVfL5696Fz6svXMvLAfokcTsAjo93X3", - "format": "png", - "bytes": 4078453 - } - ], - "metadata": { - "name": "Randy H. #6561", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmTkNuQ8fAYa3CdsVfL5696Fz6svXMvLAfokcTsAjo93X3", - "external_url": "https://psychonautznft.com/detail/6561", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "Rainbow", - "trait_type": "Skin" - }, - { - "value": "Spaced Out Green", - "trait_type": "Consciousness" - }, - { - "value": "DWBH Green", - "trait_type": "Eyes" - }, - { - "value": "Baddest Man On The Planet Teeth White", - "trait_type": "Mouth" - }, - { - "value": "Lenny Blue Heart Pill", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-22T19:26:39.382Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000001a04", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Blaze #6660", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/6660.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/6660.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/3ee972ba922efb60bd3df955924ad09d", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/3ee972ba922efb60bd3df955924ad09d", - "raw": "ipfs://QmQWNzLH1GdoUTAzWbLFPXQfdkjTopVDjmVfZPfTdCifKZ", - "format": "png", - "bytes": 7487003 - } - ], - "metadata": { - "name": "Blaze #6660", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmQWNzLH1GdoUTAzWbLFPXQfdkjTopVDjmVfZPfTdCifKZ", - "external_url": "https://psychonautznft.com/detail/6660", - "attributes": [ - { - "value": "Blaze", - "trait_type": "Character" - }, - { - "value": "Algae", - "trait_type": "Skin" - }, - { - "value": "HAAK", - "trait_type": "Eyes" - }, - { - "value": "Full Teeth Rainbow", - "trait_type": "Mouth" - } - ] - }, - "timeLastUpdated": "2023-03-22T18:46:39.521Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000001a1a", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #6682", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/6682.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/6682.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/005f8b850b7f4e111b620f03a971145f", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/005f8b850b7f4e111b620f03a971145f", - "raw": "ipfs://Qmc38pvovGD5cju9QQX8TWZZFSSMzhWm2Ja3uTaDCCKqJf", - "format": "png", - "bytes": 4342734 - } - ], - "metadata": { - "name": "Randy H. #6682", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://Qmc38pvovGD5cju9QQX8TWZZFSSMzhWm2Ja3uTaDCCKqJf", - "external_url": "https://psychonautznft.com/detail/6682", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "Green Mushroom", - "trait_type": "Skin" - }, - { - "value": "Green Neuro", - "trait_type": "Consciousness" - }, - { - "value": "HAAK", - "trait_type": "Eyes" - }, - { - "value": "Baddest Man On The Planet Teeth Yellow", - "trait_type": "Mouth" - }, - { - "value": "Lenny Psychedelic Tab", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-21T12:00:43.851Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000001d7f", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Blaze #7551", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/7551.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/7551.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/add5d3d2e5ea310354ce4f3b61ed0830", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/add5d3d2e5ea310354ce4f3b61ed0830", - "raw": "ipfs://QmXkRrkrvzQMTzdTWPGW64KKGYcbGCbMKZvemq2iPi3Hcs", - "format": "png", - "bytes": 4343102 - } - ], - "metadata": { - "name": "Blaze #7551", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmXkRrkrvzQMTzdTWPGW64KKGYcbGCbMKZvemq2iPi3Hcs", - "external_url": "https://psychonautznft.com/detail/7551", - "attributes": [ - { - "value": "Blaze", - "trait_type": "Character" - }, - { - "value": "Purple Haze", - "trait_type": "Skin" - }, - { - "value": "Spaced Out Purple", - "trait_type": "Consciousness" - }, - { - "value": "HAAK", - "trait_type": "Eyes" - }, - { - "value": "Full Teeth White", - "trait_type": "Mouth" - }, - { - "value": "Skull Tooth Pink", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-21T18:04:39.112Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000001e73", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Haze #7795", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/7795.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/7795.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d1ab863cc1423a1aca734a689cc08541", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/d1ab863cc1423a1aca734a689cc08541", - "raw": "ipfs://QmccqWmyAdXyhENT56ftieJs1ztQCMAZV9WqeAg1jETit4", - "format": "png", - "bytes": 7739947 - } - ], - "metadata": { - "name": "Haze #7795", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmccqWmyAdXyhENT56ftieJs1ztQCMAZV9WqeAg1jETit4", - "external_url": "https://psychonautznft.com/detail/7795", - "attributes": [ - { - "value": "Haze", - "trait_type": "Character" - }, - { - "value": "Psychedelic", - "trait_type": "Skin" - }, - { - "value": "Spaced Out Green", - "trait_type": "Consciousness" - }, - { - "value": "Bloodshot Blue", - "trait_type": "Eyes" - }, - { - "value": "Full Teeth Blue", - "trait_type": "Mouth" - }, - { - "value": "Tripping Balls Pink-Green", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-22T23:14:39.293Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000001f1b", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #7963", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/7963.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/7963.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/78d5d609043bb7e2e572b5a4cd3fe9f8", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/78d5d609043bb7e2e572b5a4cd3fe9f8", - "raw": "ipfs://QmTd4DRUmbeokjhkx54EfxuKDDo7gTkRssWHg4iDaG5bj8", - "format": "png", - "bytes": 3293025 - } - ], - "metadata": { - "name": "Randy H. #7963", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmTd4DRUmbeokjhkx54EfxuKDDo7gTkRssWHg4iDaG5bj8", - "external_url": "https://psychonautznft.com/detail/7963", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "OG Blue", - "trait_type": "Skin" - }, - { - "value": "Spaced Out Green", - "trait_type": "Consciousness" - }, - { - "value": "HAAK", - "trait_type": "Eyes" - }, - { - "value": "Chimuelo", - "trait_type": "Mouth" - }, - { - "value": "Lenny Green Tab", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-22T17:52:38.869Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000001ff2", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Haze #8178", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/8178.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/8178.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/df6c3b3dbf03f30569fdbd99a6da2804", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/df6c3b3dbf03f30569fdbd99a6da2804", - "raw": "ipfs://QmWfjkTUMc23PG8WHEXwrtWNq8pgY49LkCoDzSJLrzZn8Q", - "format": "png", - "bytes": 3897433 - } - ], - "metadata": { - "name": "Haze #8178", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmWfjkTUMc23PG8WHEXwrtWNq8pgY49LkCoDzSJLrzZn8Q", - "external_url": "https://psychonautznft.com/detail/8178", - "attributes": [ - { - "value": "Haze", - "trait_type": "Character" - }, - { - "value": "Pink Mushroom", - "trait_type": "Skin" - }, - { - "value": "Spaced Out Green", - "trait_type": "Consciousness" - }, - { - "value": "Hypno Purple", - "trait_type": "Eyes" - }, - { - "value": "Blob Pink", - "trait_type": "Eye Creature" - }, - { - "value": "Full Teeth White", - "trait_type": "Mouth" - } - ] - }, - "timeLastUpdated": "2023-03-21T11:44:40.674Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000002069", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #8297", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/8297.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/8297.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/bd3932b5f77ed56426a836431b30f621", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/bd3932b5f77ed56426a836431b30f621", - "raw": "ipfs://QmdeqAirLLWCsrgKd4eQzMNSrxhCVmbvMg7ZL9Aqi87eB4", - "format": "png", - "bytes": 4147423 - } - ], - "metadata": { - "name": "Randy H. #8297", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmdeqAirLLWCsrgKd4eQzMNSrxhCVmbvMg7ZL9Aqi87eB4", - "external_url": "https://psychonautznft.com/detail/8297", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "Rainbow", - "trait_type": "Skin" - }, - { - "value": "Spaced Out Purple", - "trait_type": "Consciousness" - }, - { - "value": "Bloodshot Pink", - "trait_type": "Eyes" - }, - { - "value": "Blob Pink", - "trait_type": "Eye Creature" - }, - { - "value": "Full Teeth Yellow", - "trait_type": "Mouth" - }, - { - "value": "Piquín Blue", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-22T21:58:39.852Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000002327", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #8999", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/8999.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/8999.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/e32cb57384396ddcd9f7d161accbf647", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/e32cb57384396ddcd9f7d161accbf647", - "raw": "ipfs://QmZD6efjHqDSjka6SgHfpXJUfcwYoMZDBvGcW5VgTHZjef", - "format": "png", - "bytes": 3686541 - } - ], - "metadata": { - "name": "Randy H. #8999", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmZD6efjHqDSjka6SgHfpXJUfcwYoMZDBvGcW5VgTHZjef", - "external_url": "https://psychonautznft.com/detail/8999", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "Pink Mushroom", - "trait_type": "Skin" - }, - { - "value": "Yellow Neuro", - "trait_type": "Consciousness" - }, - { - "value": "DWBW Pink", - "trait_type": "Eyes" - }, - { - "value": "Baddest Man On The Planet Teeth Yellow", - "trait_type": "Mouth" - }, - { - "value": "Lenny Pink Tab", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-20T22:12:39.300Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000002400", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #9216", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/9216.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/9216.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/277f74625bcce7d6e523e17106d5f453", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/277f74625bcce7d6e523e17106d5f453", - "raw": "ipfs://QmWnrv9wNoY3Y9TtbzdEid88haoAfV4s63D6myto4wPxk8", - "format": "png", - "bytes": 7609734 - } - ], - "metadata": { - "name": "Randy H. #9216", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmWnrv9wNoY3Y9TtbzdEid88haoAfV4s63D6myto4wPxk8", - "external_url": "https://psychonautznft.com/detail/9216", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "Algae", - "trait_type": "Skin" - }, - { - "value": "Red Neuro", - "trait_type": "Consciousness" - }, - { - "value": "Bloodshot Pink", - "trait_type": "Eyes" - }, - { - "value": "Full Teeth Yellow", - "trait_type": "Mouth" - }, - { - "value": "Piquín Pink", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-21T03:38:38.906Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000002621", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #9761", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/9761.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/9761.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d6487b4864857632dd0287ee84f9d420", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/d6487b4864857632dd0287ee84f9d420", - "raw": "ipfs://QmNfsbHnD432Jpt1o7wH6XYbVJJqpcQp8taeaHedYn7n9d", - "format": "png", - "bytes": 4177671 - } - ], - "metadata": { - "name": "Randy H. #9761", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmNfsbHnD432Jpt1o7wH6XYbVJJqpcQp8taeaHedYn7n9d", - "external_url": "https://psychonautznft.com/detail/9761", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "Acid Green", - "trait_type": "Skin" - }, - { - "value": "Hypno Green", - "trait_type": "Eyes" - }, - { - "value": "Skull Yard Teeth", - "trait_type": "Mouth" - }, - { - "value": "Lenny Psychedelic Tab 2", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-15T14:43:37.366Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x0bd803d8a3bd0553c263550ae00ca596a04b55df" - }, - "id": { - "tokenId": "0x02", - "tokenMetadata": { - "tokenType": "ERC1155" - } - }, - "balance": "1", - "title": "#002 - 0.05 AAVE", - "description": "Unlock: full resolution .mp4 file", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmPv5ryYtFvQgCc8ZaJmxVoYa9HWggQppSKmFcjY4Ya2Uu", - "raw": "ipfs://ipfs/QmPv5ryYtFvQgCc8ZaJmxVoYa9HWggQppSKmFcjY4Ya2Uu" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/b439fc0b21f1b84d6ed71666985ddb65", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/b439fc0b21f1b84d6ed71666985ddb65", - "raw": "ipfs://ipfs/QmcbmPh9EJnHwjDXsMfGWkpkeTxqvvBQ5MdrAU2wB5QWYS/image.gif", - "format": "gif", - "bytes": 21494874 - } - ], - "metadata": { - "name": "#002 - 0.05 AAVE", - "description": "Unlock: full resolution .mp4 file", - "image": "ipfs://ipfs/QmcbmPh9EJnHwjDXsMfGWkpkeTxqvvBQ5MdrAU2wB5QWYS/image.gif", - "animation_url": "ipfs://ipfs/QmcbmPh9EJnHwjDXsMfGWkpkeTxqvvBQ5MdrAU2wB5QWYS/animation.mp4", - "external_url": "https://rarible.com/token/0x0bd803d8a3bd0553c263550ae00ca596a04b55df:2", - "attributes": [ - { - "value": "AAVE", - "key": "Token", - "trait_type": "Token" - }, - { - "value": "Stani Kulechov", - "key": "Portrait", - "trait_type": "Portrait" - } - ] - }, - "timeLastUpdated": "2023-03-16T15:32:23.572Z", - "contractMetadata": { - "name": "EtherStamps", - "symbol": "ETHS", - "tokenType": "ERC1155", - "contractDeployer": "0xb3397a6feedff2b9fce9ca1086cb1bdd617c16bf", - "deployedBlockNumber": 12111361, - "openSea": { - "floorPrice": 0, - "collectionName": "EtherStamps", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gae/Zh3tass2Am4oeEsijbpp_34uSrbahZCRH2kU9_yYEa4KC6aC3YEczNLtsZMZiKBFYiru1gt9c6scndt2NX3u9zs4nS0CkZepusv_C4A?w=500&auto=format", - "description": "Exclusive collectible stamps on the Ethereum blockchain", - "externalUrl": "https://app.rarible.com/collection/0x0bd803d8a3bd0553c263550ae00ca596a04b55df", - "twitterUsername": "EtherStamps", - "lastIngestedAt": "2023-03-18T06:40:52.000Z" - } - } - }, - { - "contract": { - "address": "0x13e022d4b0637a7ee42cb5278afa8a5d6b14813b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000049", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Satoshi No. 73", - "description": "We believe Satoshi Nakamoto is all around us and each of us who believes in bitcoin is Satoshi Nakamoto. In this limited collection, attributes of 12 outstanding bitcoin representatives had been combined and generated the No. 73 Satoshi Nakamoto avatars by the algorithm.", - "tokenUri": { - "gateway": "https://nft.bitbtc.money/metadata/73", - "raw": "https://nft.bitbtc.money/metadata/73" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/861f2b15e0236f67cda95f36f9ff0ae9", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/861f2b15e0236f67cda95f36f9ff0ae9", - "raw": "https://nft.bitbtc.money/assets/small/73.jpg", - "format": "jpeg", - "bytes": 45966 - } - ], - "metadata": { - "owner": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045", - "image": "https://nft.bitbtc.money/assets/small/73.jpg", - "external_url": "https://nft.bitbtc.money/#/subscribe/73", - "animation_url": "", - "background_color": "", - "name": "Satoshi No. 73", - "description": "We believe Satoshi Nakamoto is all around us and each of us who believes in bitcoin is Satoshi Nakamoto. In this limited collection, attributes of 12 outstanding bitcoin representatives had been combined and generated the No. 73 Satoshi Nakamoto avatars by the algorithm.", - "attributes": [ - { - "value": "Normal", - "trait_type": "Style" - }, - { - "value": "White", - "trait_type": "Background" - }, - { - "value": "White", - "trait_type": "Skin Tone" - }, - { - "value": "Suit", - "trait_type": "Clothes" - }, - { - "value": "Straight hair", - "trait_type": "Hairstyle" - }, - { - "value": "Hat", - "trait_type": "Accessory" - }, - { - "value": "Netherlands", - "trait_type": "Country" - } - ], - "external_link": "https://nft.bitbtc.money/#/subscribe/73" - }, - "timeLastUpdated": "2023-03-11T13:23:32.962Z", - "contractMetadata": { - "name": "Satoshi", - "symbol": "Satoshi", - "totalSupply": "79", - "tokenType": "ERC721", - "contractDeployer": "0x3e579180cf01f0e2abf6ff4d566b7891fbf9b868", - "deployedBlockNumber": 14494251, - "openSea": { - "floorPrice": 0, - "collectionName": "Who is Satoshi NFT", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gae/2r-k8vgUAoU-2J4l8hImKEm0E_Xjtur5KFjAAqqOXK_PhLKFpgw6b4iHx9xCoYBZNxYU7IJ3UgHRnzP32Kdl_Guo0a-WIbhELQWXLg?w=500&auto=format", - "description": "Who is Satoshi Nakamoto?\nNo one knows!\nHowever, each Bitcoin diamond holder is spreading the spirit of Satoshi Nakamoto. Each common person who believes in BTC is Satoshi Nakamoto!\nIn this limited collection, 12 outstanding BTC representatives will be combined together and will generate 200 different Satoshi Nakamoto avatars by the algorithm.\nYes! That would be the Satoshi Nakamoto in the metaverse!\nMORE INFO [https://nft.bitbtc.money](https://nft.bitbtc.money)", - "externalUrl": "https://bitbtc.money", - "twitterUsername": "SatoshiNJunior", - "discordUrl": "https://discord.gg/N46WMtTV", - "lastIngestedAt": "2023-03-19T22:10:44.000Z" - } - } - }, - { - "contract": { - "address": "0x1542b05412dfecd80e734929f9087f8766934275" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000572", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmTJBmfy656afrL7goU1Ld5MievRPM9vy3gsavgfBTyXsA/4018", - "raw": "ipfs://QmTJBmfy656afrL7goU1Ld5MievRPM9vy3gsavgfBTyXsA/4018" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/1ba396d77c73782086f8b1c114c4a472", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/1ba396d77c73782086f8b1c114c4a472", - "raw": "ipfs://QmQiD91mwQ42XH7UCbQHRsXSGS5uA4hbCk5VwGp6UcYzt7", - "format": "png", - "bytes": 5710518 - } - ], - "metadata": { - "image": "ipfs://QmQiD91mwQ42XH7UCbQHRsXSGS5uA4hbCk5VwGp6UcYzt7", - "attributes": [ - { - "value": "Beach Ball", - "trait_type": "Accessory" - }, - { - "value": "Lunar Landing", - "trait_type": "Background" - }, - { - "value": "White Shirt", - "trait_type": "Clothing" - }, - { - "value": "Neutral", - "trait_type": "Expression" - }, - { - "value": "Dragon", - "trait_type": "Eyeballs" - }, - { - "value": "Beach", - "trait_type": "Eyes" - }, - { - "value": "Shadow Nifty Shoes", - "trait_type": "Feet" - }, - { - "value": "Royal Scepter", - "trait_type": "Hands" - }, - { - "value": "Bubblegum", - "trait_type": "Mouth" - }, - { - "value": "Blue", - "trait_type": "Platform" - }, - { - "value": "Plastic", - "trait_type": "Type" - }, - { - "value": "Monkey", - "trait_type": "Clan" - }, - { - "display_type": "boost_percentage", - "value": 26, - "trait_type": "Speed" - }, - { - "display_type": "boost_percentage", - "value": 30, - "trait_type": "Magic" - }, - { - "display_type": "boost_percentage", - "value": 44, - "trait_type": "Chattiness" - } - ] - }, - "timeLastUpdated": "2023-03-11T14:25:42.059Z", - "contractMetadata": { - "name": "MoonHeads ZooMers", - "symbol": "ZOOMER", - "totalSupply": "3017", - "tokenType": "ERC721", - "contractDeployer": "0xdbc7b76554556d2db77d289b18e0b6422e12f4da", - "deployedBlockNumber": 14713521, - "openSea": { - "floorPrice": 0.01999, - "collectionName": "MoonHeads ZooMers", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gae/tHhTYJA0vYYvYuRu_EtHnMFLAhJjETjZb4aQVuSoM2EFYzP_ltVso2UPjlU5Cp2HuFGOEzJDCS4MB6LayrCN7f-IlXZPzLHgwKkqaGg?w=500&auto=format", - "description": "MoonHeads are the official NFTs of TxStreet.com. Since 2018, TxStreet's main objective has been to educate the masses on blockchains/web3, and now TxStreet is handing over governance power to MoonHeads. Place ads on TxStreet with your MoonHead, vote on important decisions, and more!", - "externalUrl": "https://moonheads.io", - "twitterUsername": "MoonHeadsIO", - "discordUrl": "https://discord.gg/SWmV5eXUzz", - "lastIngestedAt": "2023-03-19T23:38:17.000Z" - } - } - }, - { - "contract": { - "address": "0x1542b05412dfecd80e734929f9087f8766934275" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000573", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmTJBmfy656afrL7goU1Ld5MievRPM9vy3gsavgfBTyXsA/4019", - "raw": "ipfs://QmTJBmfy656afrL7goU1Ld5MievRPM9vy3gsavgfBTyXsA/4019" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/18235c5fb7a18daa74c1857aa58ba765", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/18235c5fb7a18daa74c1857aa58ba765", - "raw": "ipfs://Qmadnga1tDi25zBUH4osbpYFrspGcU2vWWNMvtX4oAD13G", - "format": "png", - "bytes": 6573788 - } - ], - "metadata": { - "image": "ipfs://Qmadnga1tDi25zBUH4osbpYFrspGcU2vWWNMvtX4oAD13G", - "attributes": [ - { - "value": "Green Blob", - "trait_type": "Accessory" - }, - { - "value": "Zoo", - "trait_type": "Background" - }, - { - "value": "Techno Moon Suit", - "trait_type": "Clothing" - }, - { - "value": "Neutral", - "trait_type": "Expression" - }, - { - "value": "Normal", - "trait_type": "Eyeballs" - }, - { - "value": "Shadow Army Moon Boots", - "trait_type": "Feet" - }, - { - "value": "Laptop", - "trait_type": "Hands" - }, - { - "value": "Techno Moon Helmet", - "trait_type": "Head" - }, - { - "value": "Green", - "trait_type": "Platform" - }, - { - "value": "Plastic", - "trait_type": "Type" - }, - { - "value": "Unicorn", - "trait_type": "Clan" - }, - { - "display_type": "boost_percentage", - "value": 38, - "trait_type": "Speed" - }, - { - "display_type": "boost_percentage", - "value": 51, - "trait_type": "Magic" - }, - { - "display_type": "boost_percentage", - "value": 12, - "trait_type": "Chattiness" - } - ] - }, - "timeLastUpdated": "2023-03-11T13:23:53.297Z", - "contractMetadata": { - "name": "MoonHeads ZooMers", - "symbol": "ZOOMER", - "totalSupply": "3017", - "tokenType": "ERC721", - "contractDeployer": "0xdbc7b76554556d2db77d289b18e0b6422e12f4da", - "deployedBlockNumber": 14713521, - "openSea": { - "floorPrice": 0.01999, - "collectionName": "MoonHeads ZooMers", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gae/tHhTYJA0vYYvYuRu_EtHnMFLAhJjETjZb4aQVuSoM2EFYzP_ltVso2UPjlU5Cp2HuFGOEzJDCS4MB6LayrCN7f-IlXZPzLHgwKkqaGg?w=500&auto=format", - "description": "MoonHeads are the official NFTs of TxStreet.com. Since 2018, TxStreet's main objective has been to educate the masses on blockchains/web3, and now TxStreet is handing over governance power to MoonHeads. Place ads on TxStreet with your MoonHead, vote on important decisions, and more!", - "externalUrl": "https://moonheads.io", - "twitterUsername": "MoonHeadsIO", - "discordUrl": "https://discord.gg/SWmV5eXUzz", - "lastIngestedAt": "2023-03-19T23:38:17.000Z" - } - } - }, - { - "contract": { - "address": "0x1542b05412dfecd80e734929f9087f8766934275" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000574", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmTJBmfy656afrL7goU1Ld5MievRPM9vy3gsavgfBTyXsA/4020", - "raw": "ipfs://QmTJBmfy656afrL7goU1Ld5MievRPM9vy3gsavgfBTyXsA/4020" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/6100ad140d8845edfd1c4279fccf61f2", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/6100ad140d8845edfd1c4279fccf61f2", - "raw": "ipfs://QmcHdjxZdS8pEKPV6AztuTtRReY8Rep7Ut7sQUfxEowYXj", - "format": "png", - "bytes": 6319125 - } - ], - "metadata": { - "image": "ipfs://QmcHdjxZdS8pEKPV6AztuTtRReY8Rep7Ut7sQUfxEowYXj", - "attributes": [ - { - "value": "Dead Fishbowl", - "trait_type": "Accessory" - }, - { - "value": "Multiverse", - "trait_type": "Background" - }, - { - "value": "Shadow Formal Suit", - "trait_type": "Clothing" - }, - { - "value": "Angry", - "trait_type": "Expression" - }, - { - "value": "Normal", - "trait_type": "Eyeballs" - }, - { - "value": "Yellow Socks", - "trait_type": "Feet" - }, - { - "value": "Laptop", - "trait_type": "Hands" - }, - { - "value": "Headphones", - "trait_type": "Head" - }, - { - "value": "Light Green", - "trait_type": "Platform" - }, - { - "value": "Plastic", - "trait_type": "Type" - }, - { - "value": "Wolf", - "trait_type": "Clan" - }, - { - "display_type": "boost_percentage", - "value": 61, - "trait_type": "Speed" - }, - { - "display_type": "boost_percentage", - "value": 17, - "trait_type": "Magic" - }, - { - "display_type": "boost_percentage", - "value": 23, - "trait_type": "Chattiness" - } - ] - }, - "timeLastUpdated": "2023-03-11T14:25:41.710Z", - "contractMetadata": { - "name": "MoonHeads ZooMers", - "symbol": "ZOOMER", - "totalSupply": "3017", - "tokenType": "ERC721", - "contractDeployer": "0xdbc7b76554556d2db77d289b18e0b6422e12f4da", - "deployedBlockNumber": 14713521, - "openSea": { - "floorPrice": 0.01999, - "collectionName": "MoonHeads ZooMers", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gae/tHhTYJA0vYYvYuRu_EtHnMFLAhJjETjZb4aQVuSoM2EFYzP_ltVso2UPjlU5Cp2HuFGOEzJDCS4MB6LayrCN7f-IlXZPzLHgwKkqaGg?w=500&auto=format", - "description": "MoonHeads are the official NFTs of TxStreet.com. Since 2018, TxStreet's main objective has been to educate the masses on blockchains/web3, and now TxStreet is handing over governance power to MoonHeads. Place ads on TxStreet with your MoonHead, vote on important decisions, and more!", - "externalUrl": "https://moonheads.io", - "twitterUsername": "MoonHeadsIO", - "discordUrl": "https://discord.gg/SWmV5eXUzz", - "lastIngestedAt": "2023-03-19T23:38:17.000Z" - } - } - }, - { - "contract": { - "address": "0x1542b05412dfecd80e734929f9087f8766934275" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000575", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmTJBmfy656afrL7goU1Ld5MievRPM9vy3gsavgfBTyXsA/4021", - "raw": "ipfs://QmTJBmfy656afrL7goU1Ld5MievRPM9vy3gsavgfBTyXsA/4021" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/301fa1b573f8d06d2117370d5e8ad1c9", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/301fa1b573f8d06d2117370d5e8ad1c9", - "raw": "ipfs://QmYECE1vxtXStnAxaVHrrvg619X9WB2pbDfMX9YDyjeMod", - "format": "png", - "bytes": 6378778 - } - ], - "metadata": { - "image": "ipfs://QmYECE1vxtXStnAxaVHrrvg619X9WB2pbDfMX9YDyjeMod", - "attributes": [ - { - "value": "Campgrounds", - "trait_type": "Background" - }, - { - "value": "Formal Suit", - "trait_type": "Clothing" - }, - { - "value": "Neutral", - "trait_type": "Expression" - }, - { - "value": "Trippy", - "trait_type": "Eyeballs" - }, - { - "value": "Cyborg", - "trait_type": "Eyes" - }, - { - "value": "Beach Sandals", - "trait_type": "Feet" - }, - { - "value": "Beanie", - "trait_type": "Head" - }, - { - "value": "Pipe", - "trait_type": "Mouth" - }, - { - "value": "Green", - "trait_type": "Platform" - }, - { - "value": "Plastic", - "trait_type": "Type" - }, - { - "value": "Penguin", - "trait_type": "Clan" - }, - { - "display_type": "boost_percentage", - "value": 19, - "trait_type": "Speed" - }, - { - "display_type": "boost_percentage", - "value": 52, - "trait_type": "Magic" - }, - { - "display_type": "boost_percentage", - "value": 28, - "trait_type": "Chattiness" - } - ] - }, - "timeLastUpdated": "2023-03-11T13:23:36.346Z", - "contractMetadata": { - "name": "MoonHeads ZooMers", - "symbol": "ZOOMER", - "totalSupply": "3017", - "tokenType": "ERC721", - "contractDeployer": "0xdbc7b76554556d2db77d289b18e0b6422e12f4da", - "deployedBlockNumber": 14713521, - "openSea": { - "floorPrice": 0.01999, - "collectionName": "MoonHeads ZooMers", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gae/tHhTYJA0vYYvYuRu_EtHnMFLAhJjETjZb4aQVuSoM2EFYzP_ltVso2UPjlU5Cp2HuFGOEzJDCS4MB6LayrCN7f-IlXZPzLHgwKkqaGg?w=500&auto=format", - "description": "MoonHeads are the official NFTs of TxStreet.com. Since 2018, TxStreet's main objective has been to educate the masses on blockchains/web3, and now TxStreet is handing over governance power to MoonHeads. Place ads on TxStreet with your MoonHead, vote on important decisions, and more!", - "externalUrl": "https://moonheads.io", - "twitterUsername": "MoonHeadsIO", - "discordUrl": "https://discord.gg/SWmV5eXUzz", - "lastIngestedAt": "2023-03-19T23:38:17.000Z" - } - } - }, - { - "contract": { - "address": "0x1542b05412dfecd80e734929f9087f8766934275" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000576", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmTJBmfy656afrL7goU1Ld5MievRPM9vy3gsavgfBTyXsA/4022", - "raw": "ipfs://QmTJBmfy656afrL7goU1Ld5MievRPM9vy3gsavgfBTyXsA/4022" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/841011daa13595a0e10b985f43a51e3e", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/841011daa13595a0e10b985f43a51e3e", - "raw": "ipfs://QmVdfYtxhAdNt6pSvkhHUJAcUv3Veirdj9DzZsfky8L3dn", - "format": "png", - "bytes": 6793475 - } - ], - "metadata": { - "image": "ipfs://QmVdfYtxhAdNt6pSvkhHUJAcUv3Veirdj9DzZsfky8L3dn", - "attributes": [ - { - "value": "Multiverse", - "trait_type": "Background" - }, - { - "value": "Shadow Formal Suit", - "trait_type": "Clothing" - }, - { - "value": "Happy", - "trait_type": "Expression" - }, - { - "value": "Normal", - "trait_type": "Eyeballs" - }, - { - "value": "Shadow Nifty Moon Boots", - "trait_type": "Feet" - }, - { - "value": "Egyptian Sword", - "trait_type": "Hands" - }, - { - "value": "Shadow Nifty Moon Helmet", - "trait_type": "Head" - }, - { - "value": "Light Green", - "trait_type": "Platform" - }, - { - "value": "Plastic", - "trait_type": "Type" - }, - { - "value": "Lion", - "trait_type": "Clan" - }, - { - "display_type": "boost_percentage", - "value": 38, - "trait_type": "Speed" - }, - { - "display_type": "boost_percentage", - "value": 31, - "trait_type": "Magic" - }, - { - "display_type": "boost_percentage", - "value": 35, - "trait_type": "Chattiness" - } - ] - }, - "timeLastUpdated": "2023-03-11T13:23:33.836Z", - "contractMetadata": { - "name": "MoonHeads ZooMers", - "symbol": "ZOOMER", - "totalSupply": "3017", - "tokenType": "ERC721", - "contractDeployer": "0xdbc7b76554556d2db77d289b18e0b6422e12f4da", - "deployedBlockNumber": 14713521, - "openSea": { - "floorPrice": 0.01999, - "collectionName": "MoonHeads ZooMers", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gae/tHhTYJA0vYYvYuRu_EtHnMFLAhJjETjZb4aQVuSoM2EFYzP_ltVso2UPjlU5Cp2HuFGOEzJDCS4MB6LayrCN7f-IlXZPzLHgwKkqaGg?w=500&auto=format", - "description": "MoonHeads are the official NFTs of TxStreet.com. Since 2018, TxStreet's main objective has been to educate the masses on blockchains/web3, and now TxStreet is handing over governance power to MoonHeads. Place ads on TxStreet with your MoonHead, vote on important decisions, and more!", - "externalUrl": "https://moonheads.io", - "twitterUsername": "MoonHeadsIO", - "discordUrl": "https://discord.gg/SWmV5eXUzz", - "lastIngestedAt": "2023-03-19T23:38:17.000Z" - } - } - }, - { - "contract": { - "address": "0x1542b05412dfecd80e734929f9087f8766934275" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000577", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmTJBmfy656afrL7goU1Ld5MievRPM9vy3gsavgfBTyXsA/4023", - "raw": "ipfs://QmTJBmfy656afrL7goU1Ld5MievRPM9vy3gsavgfBTyXsA/4023" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d6b25b75b1061c442fa510881ee8a967", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/d6b25b75b1061c442fa510881ee8a967", - "raw": "ipfs://QmagavEo49KgHTnMjHntxSUPoeT39dRZ2QsQ2VVxU67oMS", - "format": "png", - "bytes": 6065135 - } - ], - "metadata": { - "image": "ipfs://QmagavEo49KgHTnMjHntxSUPoeT39dRZ2QsQ2VVxU67oMS", - "attributes": [ - { - "value": "Robot Friend", - "trait_type": "Accessory" - }, - { - "value": "Pyramids", - "trait_type": "Background" - }, - { - "value": "Shadow Formal Suit", - "trait_type": "Clothing" - }, - { - "value": "Neutral", - "trait_type": "Expression" - }, - { - "value": "Normal", - "trait_type": "Eyeballs" - }, - { - "value": "Nifty Moon Boots", - "trait_type": "Feet" - }, - { - "value": "Laptop", - "trait_type": "Hands" - }, - { - "value": "Bubblegum", - "trait_type": "Mouth" - }, - { - "value": "Purple", - "trait_type": "Platform" - }, - { - "value": "Plastic", - "trait_type": "Type" - }, - { - "value": "Unicorn", - "trait_type": "Clan" - }, - { - "display_type": "boost_percentage", - "value": 43, - "trait_type": "Speed" - }, - { - "display_type": "boost_percentage", - "value": 53, - "trait_type": "Magic" - }, - { - "display_type": "boost_percentage", - "value": 8, - "trait_type": "Chattiness" - } - ] - }, - "timeLastUpdated": "2023-03-11T13:23:33.801Z", - "contractMetadata": { - "name": "MoonHeads ZooMers", - "symbol": "ZOOMER", - "totalSupply": "3017", - "tokenType": "ERC721", - "contractDeployer": "0xdbc7b76554556d2db77d289b18e0b6422e12f4da", - "deployedBlockNumber": 14713521, - "openSea": { - "floorPrice": 0.01999, - "collectionName": "MoonHeads ZooMers", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gae/tHhTYJA0vYYvYuRu_EtHnMFLAhJjETjZb4aQVuSoM2EFYzP_ltVso2UPjlU5Cp2HuFGOEzJDCS4MB6LayrCN7f-IlXZPzLHgwKkqaGg?w=500&auto=format", - "description": "MoonHeads are the official NFTs of TxStreet.com. Since 2018, TxStreet's main objective has been to educate the masses on blockchains/web3, and now TxStreet is handing over governance power to MoonHeads. Place ads on TxStreet with your MoonHead, vote on important decisions, and more!", - "externalUrl": "https://moonheads.io", - "twitterUsername": "MoonHeadsIO", - "discordUrl": "https://discord.gg/SWmV5eXUzz", - "lastIngestedAt": "2023-03-19T23:38:17.000Z" - } - } - }, - { - "contract": { - "address": "0x1542b05412dfecd80e734929f9087f8766934275" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000578", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmTJBmfy656afrL7goU1Ld5MievRPM9vy3gsavgfBTyXsA/4024", - "raw": "ipfs://QmTJBmfy656afrL7goU1Ld5MievRPM9vy3gsavgfBTyXsA/4024" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/74f1b5533e41a5c4849a4e52f69ef39e", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/74f1b5533e41a5c4849a4e52f69ef39e", - "raw": "ipfs://Qmeh1iVgFcwB7YNUYVqDLWUQztySGR6Jbeqn7Vkr3CxHTf", - "format": "png", - "bytes": 6310811 - } - ], - "metadata": { - "image": "ipfs://Qmeh1iVgFcwB7YNUYVqDLWUQztySGR6Jbeqn7Vkr3CxHTf", - "attributes": [ - { - "value": "Plant", - "trait_type": "Accessory" - }, - { - "value": "Space", - "trait_type": "Background" - }, - { - "value": "Shadow Nifty Moon Suit", - "trait_type": "Clothing" - }, - { - "value": "Neutral", - "trait_type": "Expression" - }, - { - "value": "Normal", - "trait_type": "Eyeballs" - }, - { - "value": "Nifty Shoes", - "trait_type": "Feet" - }, - { - "value": "Nemes", - "trait_type": "Head" - }, - { - "value": "Green", - "trait_type": "Platform" - }, - { - "value": "Plastic", - "trait_type": "Type" - }, - { - "value": "Penguin", - "trait_type": "Clan" - }, - { - "display_type": "boost_percentage", - "value": 22, - "trait_type": "Speed" - }, - { - "display_type": "boost_percentage", - "value": 49, - "trait_type": "Magic" - }, - { - "display_type": "boost_percentage", - "value": 28, - "trait_type": "Chattiness" - } - ] - }, - "timeLastUpdated": "2023-03-11T13:23:53.520Z", - "contractMetadata": { - "name": "MoonHeads ZooMers", - "symbol": "ZOOMER", - "totalSupply": "3017", - "tokenType": "ERC721", - "contractDeployer": "0xdbc7b76554556d2db77d289b18e0b6422e12f4da", - "deployedBlockNumber": 14713521, - "openSea": { - "floorPrice": 0.01999, - "collectionName": "MoonHeads ZooMers", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gae/tHhTYJA0vYYvYuRu_EtHnMFLAhJjETjZb4aQVuSoM2EFYzP_ltVso2UPjlU5Cp2HuFGOEzJDCS4MB6LayrCN7f-IlXZPzLHgwKkqaGg?w=500&auto=format", - "description": "MoonHeads are the official NFTs of TxStreet.com. Since 2018, TxStreet's main objective has been to educate the masses on blockchains/web3, and now TxStreet is handing over governance power to MoonHeads. Place ads on TxStreet with your MoonHead, vote on important decisions, and more!", - "externalUrl": "https://moonheads.io", - "twitterUsername": "MoonHeadsIO", - "discordUrl": "https://discord.gg/SWmV5eXUzz", - "lastIngestedAt": "2023-03-19T23:38:17.000Z" - } - } - }, - { - "contract": { - "address": "0x1542b05412dfecd80e734929f9087f8766934275" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000579", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmTJBmfy656afrL7goU1Ld5MievRPM9vy3gsavgfBTyXsA/4025", - "raw": "ipfs://QmTJBmfy656afrL7goU1Ld5MievRPM9vy3gsavgfBTyXsA/4025" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/b5ff2eaf39d6d645539a30f5d3e3bc35", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/b5ff2eaf39d6d645539a30f5d3e3bc35", - "raw": "ipfs://QmTS85fgSUZ3X7Co1zfjwgbx7ts76XBkt24KaTk1xU3WBH", - "format": "png", - "bytes": 6853832 - } - ], - "metadata": { - "image": "ipfs://QmTS85fgSUZ3X7Co1zfjwgbx7ts76XBkt24KaTk1xU3WBH", - "attributes": [ - { - "value": "Fishbowl", - "trait_type": "Accessory" - }, - { - "value": "Zoo", - "trait_type": "Background" - }, - { - "value": "White Skull Shirt", - "trait_type": "Clothing" - }, - { - "value": "Neutral", - "trait_type": "Expression" - }, - { - "value": "Trippy", - "trait_type": "Eyeballs" - }, - { - "value": "Shadow Formal Shoes", - "trait_type": "Feet" - }, - { - "value": "Machete", - "trait_type": "Hands" - }, - { - "value": "Shadow Nifty Moon Helmet", - "trait_type": "Head" - }, - { - "value": "Purple", - "trait_type": "Platform" - }, - { - "value": "Plastic", - "trait_type": "Type" - }, - { - "value": "Lizard", - "trait_type": "Clan" - }, - { - "display_type": "boost_percentage", - "value": 10, - "trait_type": "Speed" - }, - { - "display_type": "boost_percentage", - "value": 40, - "trait_type": "Magic" - }, - { - "display_type": "boost_percentage", - "value": 53, - "trait_type": "Chattiness" - } - ] - }, - "timeLastUpdated": "2023-03-11T13:23:33.145Z", - "contractMetadata": { - "name": "MoonHeads ZooMers", - "symbol": "ZOOMER", - "totalSupply": "3017", - "tokenType": "ERC721", - "contractDeployer": "0xdbc7b76554556d2db77d289b18e0b6422e12f4da", - "deployedBlockNumber": 14713521, - "openSea": { - "floorPrice": 0.01999, - "collectionName": "MoonHeads ZooMers", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gae/tHhTYJA0vYYvYuRu_EtHnMFLAhJjETjZb4aQVuSoM2EFYzP_ltVso2UPjlU5Cp2HuFGOEzJDCS4MB6LayrCN7f-IlXZPzLHgwKkqaGg?w=500&auto=format", - "description": "MoonHeads are the official NFTs of TxStreet.com. Since 2018, TxStreet's main objective has been to educate the masses on blockchains/web3, and now TxStreet is handing over governance power to MoonHeads. Place ads on TxStreet with your MoonHead, vote on important decisions, and more!", - "externalUrl": "https://moonheads.io", - "twitterUsername": "MoonHeadsIO", - "discordUrl": "https://discord.gg/SWmV5eXUzz", - "lastIngestedAt": "2023-03-19T23:38:17.000Z" - } - } - }, - { - "contract": { - "address": "0x1542b05412dfecd80e734929f9087f8766934275" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000057a", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmTJBmfy656afrL7goU1Ld5MievRPM9vy3gsavgfBTyXsA/4026", - "raw": "ipfs://QmTJBmfy656afrL7goU1Ld5MievRPM9vy3gsavgfBTyXsA/4026" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/9b77c62fcfd5a496fb13b1c99600dd12", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/9b77c62fcfd5a496fb13b1c99600dd12", - "raw": "ipfs://QmXKVYQB2X51yMdbsMZehPN9JrvymBKBUQL4ZRkmLgks1Q", - "format": "png", - "bytes": 3815203 - } - ], - "metadata": { - "image": "ipfs://QmXKVYQB2X51yMdbsMZehPN9JrvymBKBUQL4ZRkmLgks1Q", - "attributes": [ - { - "value": "Hill", - "trait_type": "Background" - }, - { - "value": "Neutral", - "trait_type": "Expression" - }, - { - "value": "Normal", - "trait_type": "Eyeballs" - }, - { - "value": "Heart Glasses", - "trait_type": "Eyes" - }, - { - "value": "Explorer Hat", - "trait_type": "Head" - }, - { - "value": "Purple", - "trait_type": "Platform" - }, - { - "value": "Ghost", - "trait_type": "Type" - }, - { - "value": "Skateboard", - "trait_type": "Accessory" - }, - { - "value": "Beach", - "trait_type": "Clothing" - }, - { - "value": "Penguin", - "trait_type": "Clan" - }, - { - "display_type": "boost_percentage", - "value": 16, - "trait_type": "Speed" - }, - { - "display_type": "boost_percentage", - "value": 55, - "trait_type": "Magic" - }, - { - "display_type": "boost_percentage", - "value": 26, - "trait_type": "Chattiness" - } - ] - }, - "timeLastUpdated": "2023-03-11T13:23:33.061Z", - "contractMetadata": { - "name": "MoonHeads ZooMers", - "symbol": "ZOOMER", - "totalSupply": "3017", - "tokenType": "ERC721", - "contractDeployer": "0xdbc7b76554556d2db77d289b18e0b6422e12f4da", - "deployedBlockNumber": 14713521, - "openSea": { - "floorPrice": 0.01999, - "collectionName": "MoonHeads ZooMers", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gae/tHhTYJA0vYYvYuRu_EtHnMFLAhJjETjZb4aQVuSoM2EFYzP_ltVso2UPjlU5Cp2HuFGOEzJDCS4MB6LayrCN7f-IlXZPzLHgwKkqaGg?w=500&auto=format", - "description": "MoonHeads are the official NFTs of TxStreet.com. Since 2018, TxStreet's main objective has been to educate the masses on blockchains/web3, and now TxStreet is handing over governance power to MoonHeads. Place ads on TxStreet with your MoonHead, vote on important decisions, and more!", - "externalUrl": "https://moonheads.io", - "twitterUsername": "MoonHeadsIO", - "discordUrl": "https://discord.gg/SWmV5eXUzz", - "lastIngestedAt": "2023-03-19T23:38:17.000Z" - } - } - }, - { - "contract": { - "address": "0x1542b05412dfecd80e734929f9087f8766934275" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000057b", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmTJBmfy656afrL7goU1Ld5MievRPM9vy3gsavgfBTyXsA/4027", - "raw": "ipfs://QmTJBmfy656afrL7goU1Ld5MievRPM9vy3gsavgfBTyXsA/4027" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/5c53af662520cc2a7e550939b4d2f79c", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/5c53af662520cc2a7e550939b4d2f79c", - "raw": "ipfs://QmVWWd1pCPraNMqTmHhSEtqfC2GP5DqVJC4BoxMmvA7fcd", - "format": "png", - "bytes": 5933332 - } - ], - "metadata": { - "image": "ipfs://QmVWWd1pCPraNMqTmHhSEtqfC2GP5DqVJC4BoxMmvA7fcd", - "attributes": [ - { - "value": "Kitten", - "trait_type": "Accessory" - }, - { - "value": "Zoo", - "trait_type": "Background" - }, - { - "value": "Techno Moon Suit", - "trait_type": "Clothing" - }, - { - "value": "Neutral", - "trait_type": "Expression" - }, - { - "value": "Normal", - "trait_type": "Eyeballs" - }, - { - "value": "Explorer Shoes", - "trait_type": "Feet" - }, - { - "value": "Black Headband", - "trait_type": "Head" - }, - { - "value": "Bubblegum", - "trait_type": "Mouth" - }, - { - "value": "Blue", - "trait_type": "Platform" - }, - { - "value": "Plastic", - "trait_type": "Type" - }, - { - "value": "Wolf", - "trait_type": "Clan" - }, - { - "display_type": "boost_percentage", - "value": 65, - "trait_type": "Speed" - }, - { - "display_type": "boost_percentage", - "value": 23, - "trait_type": "Magic" - }, - { - "display_type": "boost_percentage", - "value": 25, - "trait_type": "Chattiness" - } - ] - }, - "timeLastUpdated": "2023-03-11T13:23:33.581Z", - "contractMetadata": { - "name": "MoonHeads ZooMers", - "symbol": "ZOOMER", - "totalSupply": "3017", - "tokenType": "ERC721", - "contractDeployer": "0xdbc7b76554556d2db77d289b18e0b6422e12f4da", - "deployedBlockNumber": 14713521, - "openSea": { - "floorPrice": 0.01999, - "collectionName": "MoonHeads ZooMers", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gae/tHhTYJA0vYYvYuRu_EtHnMFLAhJjETjZb4aQVuSoM2EFYzP_ltVso2UPjlU5Cp2HuFGOEzJDCS4MB6LayrCN7f-IlXZPzLHgwKkqaGg?w=500&auto=format", - "description": "MoonHeads are the official NFTs of TxStreet.com. Since 2018, TxStreet's main objective has been to educate the masses on blockchains/web3, and now TxStreet is handing over governance power to MoonHeads. Place ads on TxStreet with your MoonHead, vote on important decisions, and more!", - "externalUrl": "https://moonheads.io", - "twitterUsername": "MoonHeadsIO", - "discordUrl": "https://discord.gg/SWmV5eXUzz", - "lastIngestedAt": "2023-03-19T23:38:17.000Z" - } - } - }, - { - "contract": { - "address": "0x03a1e037df88001bf867e3bcffa7e48bab0cf5a6" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000074", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Cool Oliens #117", - "description": "An NFT collection for royal Oliens holders.", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmdT4pLoe5w93rCnESnaEXBU7PaAiSSWuDDXurLhmzVvAz/116", - "raw": "ipfs://QmdT4pLoe5w93rCnESnaEXBU7PaAiSSWuDDXurLhmzVvAz/116" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/45ec950099b8af25a8fef5bae54d0dd6", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/45ec950099b8af25a8fef5bae54d0dd6", - "raw": "ipfs://QmTzuLQSn78keGt3n36b3tNNs7B3WMjo2SNJUF9rRshPjA/116.png", - "format": "png", - "bytes": 361292 - } - ], - "metadata": { - "date": 1659914536876, - "image": "ipfs://QmTzuLQSn78keGt3n36b3tNNs7B3WMjo2SNJUF9rRshPjA/116.png", - "name": "Cool Oliens #117", - "description": "An NFT collection for royal Oliens holders.", - "edition": 117, - "attributes": [ - { - "value": "117 ", - "trait_type": "NFT ID" - }, - { - "value": "199 ", - "trait_type": "Rank" - } - ], - "compiler": "HashLips Art Engine" - }, - "timeLastUpdated": "2023-03-16T15:32:20.612Z", - "contractMetadata": { - "name": "Cool Oliens", - "symbol": "COOLIEN", - "totalSupply": "222", - "tokenType": "ERC721", - "contractDeployer": "0xcbc1c9b2d69f24b36a927d3e6276bc627ea45fcf", - "deployedBlockNumber": 15248626, - "openSea": { - "floorPrice": 0.1, - "collectionName": "Cool Oliens", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gae/iLTG6PQRDlIevEmSyXMWcMzR4rYSezA-h4ji0bsTJeOGuWK4J7GkYXDdllGmEDTiWEm8CyEnVpHNXggEYVK7jZilM5-NUPfAaHLY?w=500&auto=format", - "description": "An NFT collection for royal Oliens holders.", - "externalUrl": "https://linktr.ee/oliensnft", - "twitterUsername": "OliensNFT", - "discordUrl": "https://discord.gg/8YENpJTfWT", - "lastIngestedAt": "2023-03-14T07:19:57.000Z" - } - } - }, - { - "contract": { - "address": "0x04c87b76b73ed706d4aac567e3adccb994591b1b" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000009", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "0x653f7572026034069b62aafe625b8e27c00460d5", - "description": "Owner NFT of No.9 transferable address: 0x653f7572026034069b62aafe625b8e27c00460d5. Use it to trade, borrow or escrow your address securely. By A3S Protocol.", - "tokenUri": { - "gateway": "https://www.a3sprotocol.xyz/api/ipfs/ethereum/9", - "raw": "https://www.a3sprotocol.xyz/api/ipfs/ethereum/9" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/982e4507cfe2c8eccc7f403270a2a0d1", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/982e4507cfe2c8eccc7f403270a2a0d1", - "raw": "https://ipfs.a3sprotocol.xyz/ethereum/0x653f7572026034069b62aafe625b8e27c00460d5.png", - "format": "png", - "bytes": 10499 - } - ], - "metadata": { - "name": "0x653f7572026034069b62aafe625b8e27c00460d5", - "description": "Owner NFT of No.9 transferable address: 0x653f7572026034069b62aafe625b8e27c00460d5. Use it to trade, borrow or escrow your address securely. By A3S Protocol.", - "image": "https://ipfs.a3sprotocol.xyz/ethereum/0x653f7572026034069b62aafe625b8e27c00460d5.png" - }, - "timeLastUpdated": "2023-03-16T16:36:33.406Z", - "contractMetadata": { - "name": "A3SProtocol", - "symbol": "A3S", - "tokenType": "ERC721", - "contractDeployer": "0xcdb01899e35466b948b3476cbd60acc3ce477e4f", - "deployedBlockNumber": 15416204, - "openSea": { - "floorPrice": 0.033, - "collectionName": "A3S Protocol (Ethereum)", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/9ec3d51c303deafca58a7505de7cee29.png?w=500&auto=format", - "description": "A3S Protocol builds a next-generation address standard that empowers addresses with liquidity. Users can securely transfer, stake, or integrate addresses with each other, enabling “Address as a Service” for the first time.", - "externalUrl": "http://www.a3sprotocol.xyz", - "discordUrl": "https://discord.gg/qXsdj5h7rg", - "lastIngestedAt": "2023-03-14T17:37:41.000Z" - } - } - }, - { - "contract": { - "address": "0x05c0a4ad31ccbdcbc61c53f09f4cc428066fd80a" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000002c", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "TCG-OG #44", - "description": "TurtleCase, your second face.", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmbViC3uYYgejKRfpFPiSt1TRRLASe7Q8puFMgZKfffkWs/44.json", - "raw": "ipfs://QmbViC3uYYgejKRfpFPiSt1TRRLASe7Q8puFMgZKfffkWs/44.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/2e948ca8f09ae290b33bb1c2ce3fe632", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/2e948ca8f09ae290b33bb1c2ce3fe632", - "raw": "https://turtlecase.mypinata.cloud/ipfs/QmNYKyo4z15NZSPSHEyi2WbXsCQaieAVheW6MRbPKTgM81", - "format": "png", - "bytes": 1625193 - } - ], - "metadata": { - "name": "TCG-OG #44", - "description": "TurtleCase, your second face.", - "image": "https://turtlecase.mypinata.cloud/ipfs/QmNYKyo4z15NZSPSHEyi2WbXsCQaieAVheW6MRbPKTgM81", - "attributes": [ - { - "value": "OG", - "trait_type": "TurtleCase-Role" - } - ] - }, - "timeLastUpdated": "2023-03-16T15:32:21.585Z", - "contractMetadata": { - "name": "TurtleCase Origins", - "symbol": "TCGOG", - "totalSupply": "114", - "tokenType": "ERC721", - "contractDeployer": "0xc6f926654428f0faf8d0878ab8f6f113140408fd", - "deployedBlockNumber": 15007318, - "openSea": { - "floorPrice": 5.55, - "collectionName": "TurtleCase Origins", - "safelistRequestStatus": "approved", - "imageUrl": "https://i.seadn.io/gcs/files/8aa7f894bab3a100304bbb2097fed80f.jpg?w=500&auto=format", - "description": "TurtleCase, your second face", - "externalUrl": "https://turtlecase.xyz/", - "twitterUsername": "TurtlecaseGang", - "discordUrl": "https://discord.gg/turtlecase", - "lastIngestedAt": "2023-03-16T20:04:01.000Z" - } - } - }, - { - "contract": { - "address": "0x0652f6d4e01873b779a9250378bc5a330049d633" - }, - "id": { - "tokenId": "0x01", - "tokenMetadata": { - "tokenType": "ERC1155" - } - }, - "balance": "1", - "title": "MAGIC 8 BALL", - "description": "HEAVENS TOOLS 8 BALL DAPP", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmSa3hCbUHzDsV1sxZKFa6csx8zvmCmu4k1eGcwuh2sJTw/1", - "raw": "ipfs://QmSa3hCbUHzDsV1sxZKFa6csx8zvmCmu4k1eGcwuh2sJTw/1" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/89a8df41928cc20fe007f460fedcb6bf", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/89a8df41928cc20fe007f460fedcb6bf", - "raw": "ipfs://QmcormRckAXqXEn1v7J8p5BnmwwbdsDMDPSfY7HhUDw2Rp/1.jpg", - "format": "jpeg", - "bytes": 64136 - } - ], - "metadata": { - "image": "ipfs://QmcormRckAXqXEn1v7J8p5BnmwwbdsDMDPSfY7HhUDw2Rp/1.jpg", - "external_url": "", - "animation_url": "ipfs://QmcormRckAXqXEn1v7J8p5BnmwwbdsDMDPSfY7HhUDw2Rp/2.html", - "background_color": "", - "name": "MAGIC 8 BALL", - "description": "HEAVENS TOOLS 8 BALL DAPP", - "attributes": [ - { - "value": "satoshi.testaccount.eth", - "trait_type": "Created By:" - } - ] - }, - "timeLastUpdated": "2023-03-22T06:43:46.589Z", - "contractMetadata": { - "name": "HEAVENS TOOLS 8 BALL", - "symbol": "8ball", - "tokenType": "ERC1155", - "contractDeployer": "0xa74fc66e75f883ee8e60e287335436ca8e6a303c", - "deployedBlockNumber": 16381117, - "openSea": { - "floorPrice": 0.02, - "collectionName": "HEAVENS TOOLS 8 BALL", - "safelistRequestStatus": "not_requested", - "lastIngestedAt": "2023-03-17T00:23:54.000Z" - } - } - }, - { - "contract": { - "address": "0x0781b30b6c8003e5a4052fd59608a4db8ceab4ff" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000070", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/QmavUUV8zggMAcJHxhQzRWaB9wJeu1ykLJAit7sBjSrEHg/112.json", - "raw": "ipfs://QmavUUV8zggMAcJHxhQzRWaB9wJeu1ykLJAit7sBjSrEHg/112.json" - }, - "media": [ - { - "gateway": "", - "raw": "" - } - ], - "metadata": {}, - "timeLastUpdated": "2023-03-22T21:31:26.372Z", - "contractMetadata": { - "name": "UnOrdinals Pets", - "symbol": "UnOrdinals Pets", - "totalSupply": "800", - "tokenType": "ERC721", - "contractDeployer": "0xe8af7aab6107e0fc8baa50ddc22dd94bdbf75d8f", - "deployedBlockNumber": 16609366, - "openSea": { - "floorPrice": 0.0018, - "collectionName": "UnOrdinals Pets OnChain", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/5af756c166bc0f0dc93de2e453c9dee9.webp?w=500&auto=format", - "description": "A sludgy series of 100% CC0 UnOrdinals Pet , randomly generated and then stored on-chain with Arweave to ensure they survive the nuclear fallout. ", - "lastIngestedAt": "2023-03-18T20:10:05.000Z" - } - } - }, - { - "contract": { - "address": "0x0781b30b6c8003e5a4052fd59608a4db8ceab4ff" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000155", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/QmavUUV8zggMAcJHxhQzRWaB9wJeu1ykLJAit7sBjSrEHg/341.json", - "raw": "ipfs://QmavUUV8zggMAcJHxhQzRWaB9wJeu1ykLJAit7sBjSrEHg/341.json" - }, - "media": [ - { - "gateway": "", - "raw": "" - } - ], - "metadata": {}, - "timeLastUpdated": "2023-03-22T22:57:04.160Z", - "contractMetadata": { - "name": "UnOrdinals Pets", - "symbol": "UnOrdinals Pets", - "totalSupply": "800", - "tokenType": "ERC721", - "contractDeployer": "0xe8af7aab6107e0fc8baa50ddc22dd94bdbf75d8f", - "deployedBlockNumber": 16609366, - "openSea": { - "floorPrice": 0.0018, - "collectionName": "UnOrdinals Pets OnChain", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/5af756c166bc0f0dc93de2e453c9dee9.webp?w=500&auto=format", - "description": "A sludgy series of 100% CC0 UnOrdinals Pet , randomly generated and then stored on-chain with Arweave to ensure they survive the nuclear fallout. ", - "lastIngestedAt": "2023-03-18T20:10:05.000Z" - } - } - }, - { - "contract": { - "address": "0x08be81c80615fbf5ef135d2203d244218c6a450a" - }, - "id": { - "tokenId": "0x01", - "tokenMetadata": { - "tokenType": "ERC1155" - } - }, - "balance": "500", - "title": "Boner Checks", - "description": "Boner Checks verify that you do indeed have a Boner!", - "tokenUri": { - "gateway": "https://arweave.net/dMfQYdRhj5cr5B_39Mv3G_J9Xt-i9WPZfsrNqczVrac", - "raw": "https://arweave.net/dMfQYdRhj5cr5B_39Mv3G_J9Xt-i9WPZfsrNqczVrac" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/6e7d051e110ea0049c7ec3fcbd903284", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/6e7d051e110ea0049c7ec3fcbd903284", - "raw": "https://arweave.net/qgtrdZkJQ-Ta2FVTBrJecYVlH_UVAEpM4iNA1-jFoZM", - "format": "jpeg", - "bytes": 148935 - } - ], - "metadata": { - "image": "https://arweave.net/qgtrdZkJQ-Ta2FVTBrJecYVlH_UVAEpM4iNA1-jFoZM", - "image_details": { - "format": "JPEG", - "width": 960, - "sha256": "eb64abced8724d10ff2fba72fc63921e40fd597bdefecafda3c5578d8768e372", - "bytes": 148935, - "height": 1280 - }, - "image_url": "https://arweave.net/qgtrdZkJQ-Ta2FVTBrJecYVlH_UVAEpM4iNA1-jFoZM", - "name": "Boner Checks", - "description": "Boner Checks verify that you do indeed have a Boner!", - "attributes": [ - { - "value": "xxxfiretrapxxx", - "trait_type": "Artist" - } - ], - "created_by": "VitaliksBoner" - }, - "timeLastUpdated": "2023-03-20T20:03:13.195Z", - "contractMetadata": { - "name": "Boner Checks", - "symbol": "Boner", - "tokenType": "ERC1155", - "contractDeployer": "0xed3aa1149ed49ea3843d79e07767605694151fc1", - "deployedBlockNumber": 16833863, - "openSea": { - "lastIngestedAt": "2023-03-15T14:27:30.000Z" - } - } - }, - { - "contract": { - "address": "0x0a41db66c8f994ec56b55357c92e4f1e66d8ba06" - }, - "id": { - "tokenId": "0x01", - "tokenMetadata": { - "tokenType": "ERC1155" - } - }, - "balance": "1", - "title": "S.P.A.M.", - "description": "SUPER POWERFUL ARTING MECHANISM", - "tokenUri": { - "gateway": "https://arweave.net/UDX6To-k6-7POCLfkoKBlNEGX1Q0cnLBX3HdjKiHmEI", - "raw": "https://arweave.net/UDX6To-k6-7POCLfkoKBlNEGX1Q0cnLBX3HdjKiHmEI" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/ff83143b0a6f87eef0b87fc170459cc9", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/ff83143b0a6f87eef0b87fc170459cc9", - "raw": "https://arweave.net/-bKhu9NdHo6nfjTEWcza_bOJJKc1sP3xdIdaEZl5kQQ", - "format": "gif", - "bytes": 35395241 - } - ], - "metadata": { - "image": "https://arweave.net/-bKhu9NdHo6nfjTEWcza_bOJJKc1sP3xdIdaEZl5kQQ", - "image_details": { - "format": "GIF", - "width": 1420, - "sha256": "c94d0e869a90723b5b879b7c1dcd8af60d0cd3541b5f48fff6b6f42a3bb69152", - "bytes": 35395241, - "height": 1420 - }, - "image_url": "https://arweave.net/-bKhu9NdHo6nfjTEWcza_bOJJKc1sP3xdIdaEZl5kQQ", - "name": "S.P.A.M.", - "description": "SUPER POWERFUL ARTING MECHANISM", - "attributes": [ - { - "value": "The Perfesser", - "trait_type": "Artist" - } - ], - "created_by": "The Perfesser" - }, - "timeLastUpdated": "2023-03-22T23:03:43.106Z", - "contractMetadata": { - "tokenType": "ERC1155", - "contractDeployer": "0x83cfbf713e60b0dbb093eff8659284c23c20ff27", - "deployedBlockNumber": 16055552, - "openSea": { - "floorPrice": 0.01, - "collectionName": "SPAMSPAMSPAMSPAMSPAM", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/d3a25d5ffdde9491303f4a217cce2b6b.gif?w=500&auto=format", - "description": "SUPER POWERFUL ARTING MECHANISM", - "twitterUsername": "_theperfesser", - "lastIngestedAt": "2023-03-11T08:03:08.000Z" - } - } - }, - { - "contract": { - "address": "0x0f5835de26edc0898d6fd58233dfb07182e9a160" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000005e9", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Soylads #1514", - "description": "A proud product of Yona and Cum Box Collective, the Soylads collection is a cartoon styled take on absurdity and obsession with complex NFT art. Every piece is carelessly drawn by mouse with no drawing pad involved whatsoever ((not because being an artist sucks and I wish I was more responsible about my career yet here I am drawing soyjaks anyway)) to ensure fluid dynamics between community and art.", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmeRas5wH2WQPZh2cLxh89ojzQxvwQ7fGWRZrKTYGnSkaM/1513", - "raw": "ipfs://QmeRas5wH2WQPZh2cLxh89ojzQxvwQ7fGWRZrKTYGnSkaM/1513" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/94258dda109ff2830062498ee53c76b7", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/94258dda109ff2830062498ee53c76b7", - "raw": "ipfs://QmUjkwVVJ2LaCzs6GzfJwqKMnj7YviXUiNCx3anYZGG81U/1513.jpeg", - "format": "jpeg", - "bytes": 57008 - } - ], - "metadata": { - "name": "Soylads #1514", - "description": "A proud product of Yona and Cum Box Collective, the Soylads collection is a cartoon styled take on absurdity and obsession with complex NFT art. Every piece is carelessly drawn by mouse with no drawing pad involved whatsoever ((not because being an artist sucks and I wish I was more responsible about my career yet here I am drawing soyjaks anyway)) to ensure fluid dynamics between community and art.", - "image": "ipfs://QmUjkwVVJ2LaCzs6GzfJwqKMnj7YviXUiNCx3anYZGG81U/1513.jpeg", - "properties": [ - { - "value": "Slang", - "trait_type": "Background" - }, - { - "value": "Mixed", - "trait_type": "Body" - }, - { - "value": "Seethe", - "trait_type": "Brows" - }, - { - "value": "Simp", - "trait_type": "Eyes" - }, - { - "value": "Heh", - "trait_type": "Mouth" - }, - { - "value": "Neckbeard", - "trait_type": "Beard" - }, - { - "value": "Rectangular Nerd", - "trait_type": "Glasses" - }, - { - "value": "The Donald", - "trait_type": "Hair" - }, - { - "value": "Kimono", - "trait_type": "Cloth" - }, - { - "value": "Computer", - "trait_type": "Accessory" - }, - { - "value": 35, - "trait_type": "Soy %" - } - ] - }, - "timeLastUpdated": "2023-03-11T14:25:41.512Z", - "contractMetadata": { - "name": "Soylads", - "symbol": "SLS", - "totalSupply": "1883", - "tokenType": "ERC721", - "contractDeployer": "0x480acf1d1468f46e01228fdfab6954b232b8e95e", - "deployedBlockNumber": 14503719, - "openSea": { - "floorPrice": 0.0175, - "collectionName": "Soylads", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gae/nUk6RxUkFPKYaqHSPWw6pR4kRyIItYTcsVmHkCukOigsHG0npwrLS8BFGVDAnGHL1pfbkLtBogtge716bBXL4keDPpHm8MW9LHJZ9A?w=500&auto=format", - "description": "A proud product of Yona and Cum Box Collective, soylad maker collection is a cartoon styled take on absurdity and obsession with complex NFT art.\n\nEvery piece is carelessly drawn by mouse with no drawing pad involved whatsoever ((not because being an artist sucks and I wish I was more responsible about my career yet here I am drawing soylads anyway)) to ensure fluid dynamics between community and art.", - "externalUrl": "https://soylads.xyz/", - "twitterUsername": "Soylads", - "discordUrl": "https://discord.gg/soylads", - "lastIngestedAt": "2023-03-19T00:22:43.000Z" - } - } - }, - { - "contract": { - "address": "0x101f3bc1a395dc9f14332150c14c3946e4eddb32" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000016", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Matryoshka #22", - "description": "22 of 8888 2D pixel art Matryoshkas.", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/QmevrDR5U9Y9VTr6N2DZKiw5ysKMUemnaevnpufPspyMxi/22", - "raw": "ipfs://QmevrDR5U9Y9VTr6N2DZKiw5ysKMUemnaevnpufPspyMxi/22" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/54aa9f335cdc67c4162f3b0c36d61d89", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/54aa9f335cdc67c4162f3b0c36d61d89", - "raw": "ipfs://QmTCkjef4VPrX1n2ekeT7h1FFnh8Q1NZxaqA85rfhur4DK", - "format": "png", - "bytes": 1113 - } - ], - "metadata": { - "name": "Matryoshka #22", - "description": "22 of 8888 2D pixel art Matryoshkas.", - "image": "ipfs://QmTCkjef4VPrX1n2ekeT7h1FFnh8Q1NZxaqA85rfhur4DK", - "attributes": [ - { - "value": "Punk", - "trait_type": "Background" - }, - { - "value": "Pink", - "trait_type": "Color" - }, - { - "value": "Human[3]", - "trait_type": "Face" - }, - { - "value": "Spinner", - "trait_type": "Head" - }, - { - "value": "Bored", - "trait_type": "Eyes" - }, - { - "value": "Grin", - "trait_type": "Mouth" - }, - { - "value": "Bored", - "trait_type": "Earrings" - }, - { - "value": "Armor", - "trait_type": "Body" - }, - { - "value": "Bored", - "trait_type": "Accessory" - } - ] - }, - "timeLastUpdated": "2023-03-21T21:50:39.199Z", - "contractMetadata": { - "name": "Matryoshka Hub Adventure Club", - "symbol": "MHAC", - "totalSupply": "4491", - "tokenType": "ERC721", - "contractDeployer": "0xb1482668c112319f138ba718f708006c4d9447ff", - "deployedBlockNumber": 15072284, - "openSea": { - "floorPrice": 0.002, - "collectionName": "Matryoshka Hub Adventure Club", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/10add1a43c8a6653c2b8b43ff3fa0686.jpg?w=500&auto=format", - "description": "The Matryoshka Hub Adventure Club is a PFP NFT collection of 8888 unique randomly generated 2D pixel art Matryoshkas living on the Ethereum blockchain. Like a blockchain block, each Matryoshka has own hash that was created based on token id and parent Matryoshka hash except first one which used unix timestamp.\n\nVisit www.MatryoshkaHub.ru for more details.", - "externalUrl": "https://matryoshkahub.ru", - "discordUrl": "https://discord.gg/EADpMmPzy9", - "lastIngestedAt": "2023-03-19T01:39:33.000Z" - } - } - }, - { - "contract": { - "address": "0x10a39670f77bcaa3b4ae491e21f1ec75531c49c5" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000002", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "SyndicateDao OG Pass", - "description": "The trusted and curated portal that grants OG access to all SYND future projects.", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmSFvQYDqk8WAZLC21MsV1W1wyvB79kJ1rTLdkAJBNRcJi", - "raw": "QmSFvQYDqk8WAZLC21MsV1W1wyvB79kJ1rTLdkAJBNRcJi" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/86e30f46304279aadf1d6425690ed55f", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/86e30f46304279aadf1d6425690ed55f", - "raw": "ipfs://QmRJ37vPPHr6GUrkB8A11GptTRpRmXF1FVStkhYmaGXQbv", - "format": "png", - "bytes": 79990 - } - ], - "metadata": { - "name": "SyndicateDao OG Pass", - "symbol": "SYNDOG", - "description": "The trusted and curated portal that grants OG access to all SYND future projects.", - "image": "ipfs://QmRJ37vPPHr6GUrkB8A11GptTRpRmXF1FVStkhYmaGXQbv" - }, - "timeLastUpdated": "2023-03-11T13:23:32.575Z", - "contractMetadata": { - "name": "SyndicateDao OG Pass", - "symbol": "✺SYNDOG", - "totalSupply": "17", - "tokenType": "ERC721", - "contractDeployer": "0x9a43ea8973d25ce43554452ceb15edcf046489c0", - "deployedBlockNumber": 15622251, - "openSea": { - "floorPrice": 0, - "collectionName": "SyndicateDao OG Pass", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/24a59587607df55e178d4ce96ca4fc57.jpg?w=500&auto=format", - "description": "The trusted and curated portal that grants OG access to all SYND future projects.\nhttps://app.syndicate.io/collectives/0x10a39670f77bcaa3b4ae491e21f1ec75531c49c5?chain=mainnet", - "externalUrl": "https://app.syndicate.io/collectives/0x10a39670f77bcaa3b4ae491e21f1ec75531c49c5?chain=mainnet", - "lastIngestedAt": "2023-03-19T07:51:13.000Z" - } - } - }, - { - "contract": { - "address": "0x10eddda195fd33f81635d73df91679b642fbe7f0" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000000c3", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Mental Health by Han #195", - "description": "Mental Health by Han is a 400 NFT collection exploring mental health issues.", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/QmUidy1jwfZneR5TmxUT5SotwXxdijtmEdwnJoNhNXvDxM/195.json", - "raw": "ipfs://QmUidy1jwfZneR5TmxUT5SotwXxdijtmEdwnJoNhNXvDxM/195.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d32dbbf6654febb7a4e0d58969ad48cc", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/d32dbbf6654febb7a4e0d58969ad48cc", - "raw": "ipfs://QmV9beYpqefuupbLmUY97jHU6RmrYYqggjGrMpY4obN2FH/195.png", - "format": "png", - "bytes": 585227 - } - ], - "metadata": { - "date": 1651886617939, - "image": "ipfs://QmV9beYpqefuupbLmUY97jHU6RmrYYqggjGrMpY4obN2FH/195.png", - "dna": "6e051780b933d8e6304577573ca8c63da946e4b0", - "name": "Mental Health by Han #195", - "description": "Mental Health by Han is a 400 NFT collection exploring mental health issues.", - "edition": 195, - "attributes": [ - { - "value": "Blurred", - "trait_type": "Background" - }, - { - "value": "Body", - "trait_type": "Body" - }, - { - "value": "Bipolar", - "trait_type": "Emotion" - }, - { - "value": "Unfazed", - "trait_type": "Face" - } - ], - "compiler": "HashLips Art Engine" - }, - "timeLastUpdated": "2023-03-22T18:02:40.346Z", - "contractMetadata": { - "name": "MentalHealthByHan", - "symbol": "MH", - "totalSupply": "400", - "tokenType": "ERC721", - "contractDeployer": "0x8ce76fda56d1a3ebc0f3ed9b7abb8ead28f8b93a", - "deployedBlockNumber": 14727180, - "openSea": { - "floorPrice": 0.0085, - "collectionName": "Mental Health By Han", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gae/FH6xFVOm-EcjeLcCTR8i384Xes0PlVKqKV5JWLb8gd56oHUw3CpX984QhiSS5zNR0O5f9q891xZZaNJhtcE6WJnS0bWTl1C0om5Dmw?w=500&auto=format", - "description": "Mental Health by Han is a 400 NFT collection delving deep into the minds of individuals with mental health issues.\n\nFree mint. CC0 collection. Celebrate the Mental Health Awareness month.\n\n", - "lastIngestedAt": "2023-03-19T08:19:45.000Z" - } - } - }, - { - "contract": { - "address": "0x12f6d1a1c4c91b8cb4c9106c0d37f5c8be6b4d17" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000130", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "House Of Satan #304", - "description": "House of Satan is a generative NFT project built on the Ethereum blockchain containing 6,667 images of Satan varying in rarity.", - "tokenUri": { - "gateway": "https://hos-metadata.s3.amazonaws.com/304", - "raw": "https://hos-metadata.s3.amazonaws.com/304" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/938a5bc91424fe8528daba0211758560", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/938a5bc91424fe8528daba0211758560", - "raw": "ipfs://QmPhGM2eddG2oqCPExRtaQhbw9Egam595noYoSScLzKqPJ", - "format": "jpeg", - "bytes": 2546105 - } - ], - "metadata": { - "name": "House Of Satan #304", - "description": "House of Satan is a generative NFT project built on the Ethereum blockchain containing 6,667 images of Satan varying in rarity.", - "image": "ipfs://QmPhGM2eddG2oqCPExRtaQhbw9Egam595noYoSScLzKqPJ", - "attributes": [ - { - "value": "Burning Church", - "trait_type": "Background" - }, - { - "value": "Burnt", - "trait_type": "Skin" - }, - { - "value": "Warlock Cloak", - "trait_type": "Chest" - }, - { - "value": "Snake Tongue", - "trait_type": "Mouth" - }, - { - "value": "Soulless", - "trait_type": "Eyes" - }, - { - "value": "Rams Skull", - "trait_type": "Headgear" - }, - { - "value": "Blood Gold", - "trait_type": "Border" - }, - { - "value": "Double-Edged Sword", - "trait_type": "Right Hand" - }, - { - "value": "Vitaliks Head", - "trait_type": "Left Hand" - } - ] - }, - "timeLastUpdated": "2023-03-11T13:23:32.360Z", - "contractMetadata": { - "name": "House of Satan", - "symbol": "HOS", - "totalSupply": "729", - "tokenType": "ERC721", - "contractDeployer": "0xbad75084aa69600f7a8ad613af10b4d5e3919063", - "deployedBlockNumber": 13460566, - "openSea": { - "floorPrice": 0.0778, - "collectionName": "House of Satan", - "safelistRequestStatus": "approved", - "imageUrl": "https://i.seadn.io/gae/0_2--UiyKpSQHe4bk3Cagftkt-_SUapxwqF99zQS5ymVttgNcM4WAFToQLFZdiivYBgkIScbKfpAnZoMg28R__7E8R1adanrlExw0yo?w=500&auto=format", - "description": "House of Satan is a generative NFT project built on the Ethereum blockchain containing images of Satan varying in rarity.", - "externalUrl": "https://houseofsatan.io", - "twitterUsername": "SatanicNFT", - "discordUrl": "https://discord.gg/HouseOfSatan", - "lastIngestedAt": "2023-03-19T19:49:04.000Z" - } - } - }, - { - "contract": { - "address": "0x12fe4b4d1c7adb452501be5403d57d4468a545d4" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000013f", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "NOBGOBLIN #319", - "description": "AAAAYUHUUUUU DINGDONG, YU WANG saay? OHAYDER ONEYSNAEKGOBLRS. yoo FREEKEN LUBDUBS da GOBLEN MAGIK WAANDS on da WEBFRE wat? HOPYOOMINZ FURST MONSTAER ankel spankr. WULL datsall, LUV UR HAIREE HOTDUG, OL BLIND BOB.", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmTeJcHGHhKgcq5nuJN6jQtR13ih9qbQk4Kr9z6haPrRbt/319.json", - "raw": "https://gateway.pinata.cloud/ipfs/QmTeJcHGHhKgcq5nuJN6jQtR13ih9qbQk4Kr9z6haPrRbt/319.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d7a1ee7d2f28b1ab0a423f2c55165a41", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/d7a1ee7d2f28b1ab0a423f2c55165a41", - "raw": "https://gateway.pinata.cloud/ipfs/Qmd67aGyLjfnxzx3g5t8HyufF1zPj6rVmMjStVf2u9aYqw/0318.jpg", - "format": "jpeg", - "bytes": 98769 - } - ], - "metadata": { - "name": "NOBGOBLIN #319", - "description": "AAAAYUHUUUUU DINGDONG, YU WANG saay? OHAYDER ONEYSNAEKGOBLRS. yoo FREEKEN LUBDUBS da GOBLEN MAGIK WAANDS on da WEBFRE wat? HOPYOOMINZ FURST MONSTAER ankel spankr. WULL datsall, LUV UR HAIREE HOTDUG, OL BLIND BOB.", - "image": "https://gateway.pinata.cloud/ipfs/Qmd67aGyLjfnxzx3g5t8HyufF1zPj6rVmMjStVf2u9aYqw/0318.jpg", - "attributes": [ - { - "value": "Purdy Cave", - "trait_type": "Collrzes" - }, - { - "value": "Eer", - "trait_type": "Eers" - }, - { - "value": "Taterhead", - "trait_type": "Hedz" - }, - { - "value": "Waaah", - "trait_type": "Eye on dat side" - }, - { - "value": "Blahhhhhhh", - "trait_type": "MUNCHYHOLE" - }, - { - "value": "Hipnoatisn", - "trait_type": "Eyz on dis side" - }, - { - "value": "Goz down", - "trait_type": "Stankfinder" - }, - { - "value": "None", - "trait_type": "1 of 1" - } - ] - }, - "timeLastUpdated": "2023-03-20T20:03:13.572Z", - "contractMetadata": { - "name": "NOBGOBLINS.wtf", - "symbol": "NOBGOB", - "totalSupply": "1329", - "tokenType": "ERC721", - "contractDeployer": "0x1ea41c5bc7fbd2c6dc7fc31034ea512702987f08", - "deployedBlockNumber": 14911853, - "openSea": { - "floorPrice": 0.01, - "collectionName": "NOBGOBLINS.wtf", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gae/C3znGoSOfi-s3va-0xawVxEjCbMU8vozFinxNryyUYrJr_p9s-sJh-rKA8CkJNqLR7tZbXP5haR9MgVbraeGUMXKRgTXd7q-LPxEado?w=500&auto=format", - "description": "AAAAYUHUUUUU DINGDONG, YU WANG saay? OHAYDER ONEYSNAEKGOBLRS. yoo FREEKEN LUBDUBS da GOBLEN MAGIK WAANDS on da WEBFRE wat? HOPYOOMINZ FURST MONSTAER ankel spankr. WULL datsall, LUV UR HAIREE HOTDUG, OL BLIND BOB.", - "externalUrl": "http://nobgoblins.wtf", - "twitterUsername": "NobGoblins_wtf", - "lastIngestedAt": "2023-03-19T19:49:11.000Z" - } - } - }, - { - "contract": { - "address": "0x1dfe7ca09e99d10835bf73044a23b73fc20623df" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000f8489", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Bag #1016969", - "description": "More Loot is additional randomized adventurer gear generated and stored on chain. Maximum supply is dynamic, increasing at 1/10th of Ethereum's block rate. Stats, images, and other functionality are intentionally omitted for others to interpret. Feel free to use More Loot in any way you want.", - "tokenUri": { - "gateway": "", - "raw": "data:application/json;base64,eyJuYW1lIjogIkJhZyAjMTAxNjk2OSIsICJkZXNjcmlwdGlvbiI6ICJNb3JlIExvb3QgaXMgYWRkaXRpb25hbCByYW5kb21pemVkIGFkdmVudHVyZXIgZ2VhciBnZW5lcmF0ZWQgYW5kIHN0b3JlZCBvbiBjaGFpbi4gTWF4aW11bSBzdXBwbHkgaXMgZHluYW1pYywgaW5jcmVhc2luZyBhdCAxLzEwdGggb2YgRXRoZXJldW0ncyBibG9jayByYXRlLiBTdGF0cywgaW1hZ2VzLCBhbmQgb3RoZXIgZnVuY3Rpb25hbGl0eSBhcmUgaW50ZW50aW9uYWxseSBvbWl0dGVkIGZvciBvdGhlcnMgdG8gaW50ZXJwcmV0LiBGZWVsIGZyZWUgdG8gdXNlIE1vcmUgTG9vdCBpbiBhbnkgd2F5IHlvdSB3YW50LiIsICJpbWFnZSI6ICJkYXRhOmltYWdlL3N2Zyt4bWw7YmFzZTY0LFBITjJaeUI0Yld4dWN6MGlhSFIwY0RvdkwzZDNkeTUzTXk1dmNtY3ZNakF3TUM5emRtY2lJSEJ5WlhObGNuWmxRWE53WldOMFVtRjBhVzg5SW5oTmFXNVpUV2x1SUcxbFpYUWlJSFpwWlhkQ2IzZzlJakFnTUNBek5UQWdNelV3SWo0OGMzUjViR1UrTG1KaGMyVWdleUJtYVd4c09pQjNhR2wwWlRzZ1ptOXVkQzFtWVcxcGJIazZJSE5sY21sbU95Qm1iMjUwTFhOcGVtVTZJREUwY0hnN0lIMDhMM04wZVd4bFBqeHlaV04wSUhkcFpIUm9QU0l4TURBbElpQm9aV2xuYUhROUlqRXdNQ1VpSUdacGJHdzlJbUpzWVdOcklpQXZQangwWlhoMElIZzlJakV3SWlCNVBTSXlNQ0lnWTJ4aGMzTTlJbUpoYzJVaVBrZHlZWFpsSUZkaGJtUThMM1JsZUhRK1BIUmxlSFFnZUQwaU1UQWlJSGs5SWpRd0lpQmpiR0Z6Y3owaVltRnpaU0krVW05aVpUd3ZkR1Y0ZEQ0OGRHVjRkQ0I0UFNJeE1DSWdlVDBpTmpBaUlHTnNZWE56UFNKaVlYTmxJajRpUjJ4dmIyMGdUVzl2YmlJZ1NHOXZaQ0J2WmlCMGFHVWdWSGRwYm5NZ0t6RThMM1JsZUhRK1BIUmxlSFFnZUQwaU1UQWlJSGs5SWpnd0lpQmpiR0Z6Y3owaVltRnpaU0krVDNKdVlYUmxJRUpsYkhROEwzUmxlSFErUEhSbGVIUWdlRDBpTVRBaUlIazlJakV3TUNJZ1kyeGhjM005SW1KaGMyVWlQa2hoY21RZ1RHVmhkR2hsY2lCQ2IyOTBjend2ZEdWNGRENDhkR1Y0ZENCNFBTSXhNQ0lnZVQwaU1USXdJaUJqYkdGemN6MGlZbUZ6WlNJK1YyOXZiQ0JIYkc5MlpYTThMM1JsZUhRK1BIUmxlSFFnZUQwaU1UQWlJSGs5SWpFME1DSWdZMnhoYzNNOUltSmhjMlVpUGs1bFkydHNZV05sUEM5MFpYaDBQangwWlhoMElIZzlJakV3SWlCNVBTSXhOakFpSUdOc1lYTnpQU0ppWVhObElqNUNjbTl1ZW1VZ1VtbHVaend2ZEdWNGRENDhMM04yWno0PSJ9" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/ebe46df5979e8c3854b9ac67cbe2a4c4", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/ebe46df5979e8c3854b9ac67cbe2a4c4", - "raw": "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaW5ZTWluIG1lZXQiIHZpZXdCb3g9IjAgMCAzNTAgMzUwIj48c3R5bGU+LmJhc2UgeyBmaWxsOiB3aGl0ZTsgZm9udC1mYW1pbHk6IHNlcmlmOyBmb250LXNpemU6IDE0cHg7IH08L3N0eWxlPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9ImJsYWNrIiAvPjx0ZXh0IHg9IjEwIiB5PSIyMCIgY2xhc3M9ImJhc2UiPkdyYXZlIFdhbmQ8L3RleHQ+PHRleHQgeD0iMTAiIHk9IjQwIiBjbGFzcz0iYmFzZSI+Um9iZTwvdGV4dD48dGV4dCB4PSIxMCIgeT0iNjAiIGNsYXNzPSJiYXNlIj4iR2xvb20gTW9vbiIgSG9vZCBvZiB0aGUgVHdpbnMgKzE8L3RleHQ+PHRleHQgeD0iMTAiIHk9IjgwIiBjbGFzcz0iYmFzZSI+T3JuYXRlIEJlbHQ8L3RleHQ+PHRleHQgeD0iMTAiIHk9IjEwMCIgY2xhc3M9ImJhc2UiPkhhcmQgTGVhdGhlciBCb290czwvdGV4dD48dGV4dCB4PSIxMCIgeT0iMTIwIiBjbGFzcz0iYmFzZSI+V29vbCBHbG92ZXM8L3RleHQ+PHRleHQgeD0iMTAiIHk9IjE0MCIgY2xhc3M9ImJhc2UiPk5lY2tsYWNlPC90ZXh0Pjx0ZXh0IHg9IjEwIiB5PSIxNjAiIGNsYXNzPSJiYXNlIj5Ccm9uemUgUmluZzwvdGV4dD48L3N2Zz4=", - "format": "svg+xml", - "bytes": 902 - } - ], - "metadata": { - "name": "Bag #1016969", - "description": "More Loot is additional randomized adventurer gear generated and stored on chain. Maximum supply is dynamic, increasing at 1/10th of Ethereum's block rate. Stats, images, and other functionality are intentionally omitted for others to interpret. Feel free to use More Loot in any way you want.", - "image": "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaW5ZTWluIG1lZXQiIHZpZXdCb3g9IjAgMCAzNTAgMzUwIj48c3R5bGU+LmJhc2UgeyBmaWxsOiB3aGl0ZTsgZm9udC1mYW1pbHk6IHNlcmlmOyBmb250LXNpemU6IDE0cHg7IH08L3N0eWxlPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9ImJsYWNrIiAvPjx0ZXh0IHg9IjEwIiB5PSIyMCIgY2xhc3M9ImJhc2UiPkdyYXZlIFdhbmQ8L3RleHQ+PHRleHQgeD0iMTAiIHk9IjQwIiBjbGFzcz0iYmFzZSI+Um9iZTwvdGV4dD48dGV4dCB4PSIxMCIgeT0iNjAiIGNsYXNzPSJiYXNlIj4iR2xvb20gTW9vbiIgSG9vZCBvZiB0aGUgVHdpbnMgKzE8L3RleHQ+PHRleHQgeD0iMTAiIHk9IjgwIiBjbGFzcz0iYmFzZSI+T3JuYXRlIEJlbHQ8L3RleHQ+PHRleHQgeD0iMTAiIHk9IjEwMCIgY2xhc3M9ImJhc2UiPkhhcmQgTGVhdGhlciBCb290czwvdGV4dD48dGV4dCB4PSIxMCIgeT0iMTIwIiBjbGFzcz0iYmFzZSI+V29vbCBHbG92ZXM8L3RleHQ+PHRleHQgeD0iMTAiIHk9IjE0MCIgY2xhc3M9ImJhc2UiPk5lY2tsYWNlPC90ZXh0Pjx0ZXh0IHg9IjEwIiB5PSIxNjAiIGNsYXNzPSJiYXNlIj5Ccm9uemUgUmluZzwvdGV4dD48L3N2Zz4=" - }, - "timeLastUpdated": "2023-03-11T13:23:32.201Z", - "contractMetadata": { - "name": "More Loot", - "symbol": "MLOOT", - "totalSupply": "135400", - "tokenType": "ERC721", - "contractDeployer": "0xf296178d553c8ec21a2fbd2c5dda8ca9ac905a00", - "deployedBlockNumber": 13160010, - "openSea": { - "floorPrice": 0.0029, - "collectionName": "More Loot", - "safelistRequestStatus": "approved", - "lastIngestedAt": "2023-03-20T02:38:10.000Z" - } - } - }, - { - "contract": { - "address": "0x1ed89eb526a8be0ac8c5f7a1646698c6913029e1" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000170e", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "BAMC #5902", - "description": "", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmPBWFTypRu95H42UbEsrZbEan95qYyiCaMBhZAXZrrZTK/5902", - "raw": "https://gateway.pinata.cloud/ipfs/QmPBWFTypRu95H42UbEsrZbEan95qYyiCaMBhZAXZrrZTK/5902" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/8933a48e8a09729eb5617b40db9692de", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/8933a48e8a09729eb5617b40db9692de", - "raw": "https://gateway.pinata.cloud/ipfs/QmcbGRWRL9Z9VgiTxvRs489wbvQWsM8Xg5FAhZL2gWzeDo/5902.png", - "format": "png", - "bytes": 668113 - } - ], - "metadata": { - "date": 1641276847359, - "image": "https://gateway.pinata.cloud/ipfs/QmcbGRWRL9Z9VgiTxvRs489wbvQWsM8Xg5FAhZL2gWzeDo/5902.png", - "dna": "06d42fcc6025ff8f8ac786dec107c2103033353e", - "name": "BAMC #5902", - "description": "", - "edition": 5902, - "attributes": [ - { - "value": "Yellow", - "trait_type": "Background" - }, - { - "value": "Red Leopard", - "trait_type": "Body" - }, - { - "value": "Tongue", - "trait_type": "Shirt" - }, - { - "value": "Bloody", - "trait_type": "Eyes" - }, - { - "value": "Grin", - "trait_type": "Mouth" - }, - { - "value": "Bunny", - "trait_type": "Hats" - } - ], - "compiler": "HashLips Art Engine" - }, - "timeLastUpdated": "2023-03-20T02:33:24.520Z", - "contractMetadata": { - "name": "Baby Ape Mutant Club", - "symbol": "BAMC", - "tokenType": "ERC721", - "contractDeployer": "0x10e688ae0defe44cfeaf9e1a2e1a20c17d38f9b6", - "deployedBlockNumber": 13949163, - "openSea": { - "floorPrice": 0.003, - "collectionName": "Baby Ape Mutant Club", - "safelistRequestStatus": "approved", - "imageUrl": "https://i.seadn.io/gae/xjy4YzuEGzkFSXw7WZtqD02b-anxzJWJ-w7SEu9LPSqEviRs1Ifdt3PCvdRJ8-2gHzcXZMjONpK4dKhlAhICupObg13fVdZcCJQxZKU?w=500&auto=format", - "description": "A collection of 6,666 baby mutant apes!\n\nCompanions:\nhttps://opensea.io/collection/baby-shiba-mutant-club", - "lastIngestedAt": "2023-03-20T02:40:15.000Z" - } - } - }, - { - "contract": { - "address": "0x23d33e18f43a8cd3ab479ea0419640f0dd3649c3" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000002", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Okay Chairs #2", - "description": "Just some Okay Chairs", - "tokenUri": { - "gateway": "https://bafybeiha7paloi36hm7dc26zh4kauirhuisi7xebtmx66l22pqmok4woum.ipfs.nftstorage.link/2.json", - "raw": "https://bafybeiha7paloi36hm7dc26zh4kauirhuisi7xebtmx66l22pqmok4woum.ipfs.nftstorage.link/2.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/1ba92f4417e8ab3fed639daf9e53d9a7", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/1ba92f4417e8ab3fed639daf9e53d9a7", - "raw": "https://bafybeibcae5wyxzmqh5g5j7hyxyj6wqrdgr54kxc4wrtwjrtn6mii5rrtq.ipfs.nftstorage.link/2.png", - "format": "png", - "bytes": 59246 - } - ], - "metadata": { - "date": 1654718037052, - "image": "https://bafybeibcae5wyxzmqh5g5j7hyxyj6wqrdgr54kxc4wrtwjrtn6mii5rrtq.ipfs.nftstorage.link/2.png", - "dna": "2bcfc719d6d39c01914c77bab90c0e82f390f89c", - "name": "Okay Chairs #2", - "description": "Just some Okay Chairs", - "edition": 2, - "attributes": [ - { - "value": "Off white", - "trait_type": "Backgrounds" - }, - { - "value": "Throne", - "trait_type": "Chair" - }, - { - "value": "Pillow Green", - "trait_type": "Item 1" - } - ], - "compiler": "HashLips Art Engine" - }, - "timeLastUpdated": "2023-03-20T12:36:38.866Z", - "contractMetadata": { - "name": "Okay Chairs", - "symbol": "CHAIR", - "totalSupply": "3", - "tokenType": "ERC721", - "contractDeployer": "0x3a2e739f41639612b7d7cf69af87b89548d015c8", - "deployedBlockNumber": 14933446, - "openSea": { - "floorPrice": 0, - "collectionName": "Okay Chairs", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/65385925e76cfe05547483f709576248.jpg?w=500&auto=format", - "description": "Just some Okay Chairs", - "lastIngestedAt": "2023-03-20T06:07:47.000Z" - } - } - }, - { - "contract": { - "address": "0x23d33e18f43a8cd3ab479ea0419640f0dd3649c3" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000003", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Okay Chairs #3", - "description": "Just some Okay Chairs", - "tokenUri": { - "gateway": "https://bafybeiha7paloi36hm7dc26zh4kauirhuisi7xebtmx66l22pqmok4woum.ipfs.nftstorage.link/3.json", - "raw": "https://bafybeiha7paloi36hm7dc26zh4kauirhuisi7xebtmx66l22pqmok4woum.ipfs.nftstorage.link/3.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/acd3100941dc268f1bf01b41a9306fe3", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/acd3100941dc268f1bf01b41a9306fe3", - "raw": "https://bafybeibcae5wyxzmqh5g5j7hyxyj6wqrdgr54kxc4wrtwjrtn6mii5rrtq.ipfs.nftstorage.link/3.png", - "format": "png", - "bytes": 61595 - } - ], - "metadata": { - "date": 1654718037760, - "image": "https://bafybeibcae5wyxzmqh5g5j7hyxyj6wqrdgr54kxc4wrtwjrtn6mii5rrtq.ipfs.nftstorage.link/3.png", - "dna": "4c627522d63c988ed5a9dc71d7d2786e8f2b14ef", - "name": "Okay Chairs #3", - "description": "Just some Okay Chairs", - "edition": 3, - "attributes": [ - { - "value": "Gold", - "trait_type": "Backgrounds" - }, - { - "value": "Throne Gold", - "trait_type": "Chair" - }, - { - "value": "Painting", - "trait_type": "Item 1" - } - ], - "compiler": "HashLips Art Engine" - }, - "timeLastUpdated": "2023-03-20T21:36:39.064Z", - "contractMetadata": { - "name": "Okay Chairs", - "symbol": "CHAIR", - "totalSupply": "3", - "tokenType": "ERC721", - "contractDeployer": "0x3a2e739f41639612b7d7cf69af87b89548d015c8", - "deployedBlockNumber": 14933446, - "openSea": { - "floorPrice": 0, - "collectionName": "Okay Chairs", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/65385925e76cfe05547483f709576248.jpg?w=500&auto=format", - "description": "Just some Okay Chairs", - "lastIngestedAt": "2023-03-20T06:07:47.000Z" - } - } - }, - { - "contract": { - "address": "0x26021ca5f9d35cbc4e984fca0c3a27b47f561d23" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000001f7", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "CRYPTO PEPES #503", - "description": "3,333 crypto pepes on the ethereum blockchain ready to moon", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmeoy71Ye4A367HGrtyi4sTCB71AsMVzMbNRpmDpQm2CxS/503.json", - "raw": "ipfs://Qmeoy71Ye4A367HGrtyi4sTCB71AsMVzMbNRpmDpQm2CxS/503.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d198c016731a4e1dd8e448d6a0bf3d0e", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/d198c016731a4e1dd8e448d6a0bf3d0e", - "raw": "ipfs://QmcCn2ag1oVNMcEEdox2bQGc5jwmVnQAaxUdpemw82oqbZ/503.png", - "format": "png", - "bytes": 3640 - } - ], - "metadata": { - "date": 1669533301015, - "image": "ipfs://QmcCn2ag1oVNMcEEdox2bQGc5jwmVnQAaxUdpemw82oqbZ/503.png", - "dna": "cdbbf66d7d1886996b43af930f15070dcae2b274", - "name": "CRYPTO PEPES #503", - "description": "3,333 crypto pepes on the ethereum blockchain ready to moon", - "edition": 503, - "attributes": [ - { - "value": "SMOKEY", - "trait_type": "BACKGROUNDS" - }, - { - "value": "OG", - "trait_type": "PEPE" - }, - { - "value": "STRIPED SHIRT", - "trait_type": "CLOTHING" - }, - { - "value": "UNSHAVEN", - "trait_type": "FACE SHADOW" - }, - { - "value": "ARMY HAT", - "trait_type": "HEADWEAR" - }, - { - "value": "PHONEME VOH", - "trait_type": "MOUTH" - }, - { - "value": "EYES CLOSED", - "trait_type": "EYES" - } - ], - "compiler": "HashLips Art Engine" - }, - "timeLastUpdated": "2023-03-15T14:01:16.592Z", - "contractMetadata": { - "name": "Crypto Pepes", - "symbol": "PEPE", - "totalSupply": "516", - "tokenType": "ERC721", - "contractDeployer": "0x9c814372667565d72306e2488b8f3beffabfb867", - "deployedBlockNumber": 16063538, - "openSea": { - "floorPrice": 0.004, - "collectionName": "Crypto Pepes Club", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/3806a3046a4db280698b1f241f53a597.gif?w=500&auto=format", - "description": "3,333 crypto pepes on the ethereum blockchain ready to moon", - "lastIngestedAt": "2023-03-12T06:32:10.000Z" - } - } - }, - { - "contract": { - "address": "0x26021ca5f9d35cbc4e984fca0c3a27b47f561d23" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000001fe", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "CRYPTO PEPES #510", - "description": "3,333 crypto pepes on the ethereum blockchain ready to moon", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/Qmeoy71Ye4A367HGrtyi4sTCB71AsMVzMbNRpmDpQm2CxS/510.json", - "raw": "ipfs://Qmeoy71Ye4A367HGrtyi4sTCB71AsMVzMbNRpmDpQm2CxS/510.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/7fd40db601f6c479eb0e985b2e52bed9", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/7fd40db601f6c479eb0e985b2e52bed9", - "raw": "ipfs://QmcCn2ag1oVNMcEEdox2bQGc5jwmVnQAaxUdpemw82oqbZ/510.png", - "format": "png", - "bytes": 3469 - } - ], - "metadata": { - "date": 1669533301235, - "image": "ipfs://QmcCn2ag1oVNMcEEdox2bQGc5jwmVnQAaxUdpemw82oqbZ/510.png", - "dna": "cb64a462154e104a40c4c0688857ae3ea03fac65", - "name": "CRYPTO PEPES #510", - "description": "3,333 crypto pepes on the ethereum blockchain ready to moon", - "edition": 510, - "attributes": [ - { - "value": "TARO", - "trait_type": "BACKGROUNDS" - }, - { - "value": "BLUEBERRY", - "trait_type": "PEPE" - }, - { - "value": "STRIPED SHIRT", - "trait_type": "CLOTHING" - }, - { - "value": "SHAVEN", - "trait_type": "FACE SHADOW" - }, - { - "value": "BLACK SKULL CAP", - "trait_type": "HEADWEAR" - }, - { - "value": "SADGE", - "trait_type": "MOUTH" - }, - { - "value": "OKAY", - "trait_type": "EYES" - } - ], - "compiler": "HashLips Art Engine" - }, - "timeLastUpdated": "2023-03-15T14:01:16.796Z", - "contractMetadata": { - "name": "Crypto Pepes", - "symbol": "PEPE", - "totalSupply": "516", - "tokenType": "ERC721", - "contractDeployer": "0x9c814372667565d72306e2488b8f3beffabfb867", - "deployedBlockNumber": 16063538, - "openSea": { - "floorPrice": 0.004, - "collectionName": "Crypto Pepes Club", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/3806a3046a4db280698b1f241f53a597.gif?w=500&auto=format", - "description": "3,333 crypto pepes on the ethereum blockchain ready to moon", - "lastIngestedAt": "2023-03-12T06:32:10.000Z" - } - } - }, - { - "contract": { - "address": "0x265385c7f4132228a0d54eb1a9e7460b91c0cc68" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000ff04", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "$", - "description": "The unicode character $", - "tokenUri": { - "gateway": "", - "raw": "data:application/json;base64,eyJuYW1lIjoi77yEIiwiZGVzY3JpcHRpb24iOiJUaGUgdW5pY29kZSBjaGFyYWN0ZXIg77yEIiwiYXR0cmlidXRlcyI6W3sidHJhaXRfdHlwZSI6IkNoYXJhY3RlciBUeXBlIiwidmFsdWUiOiJIYWxmd2lkdGggYW5kIEZ1bGx3aWR0aCBGb3JtcyJ9XSwiaW1hZ2UiOiJkYXRhOmltYWdlL3N2Zyt4bWw7YmFzZTY0LFBITjJaeUI0Yld4dWN6MGlhSFIwY0RvdkwzZDNkeTUzTXk1dmNtY3ZNakF3TUM5emRtY2lJSEJ5WlhObGNuWmxRWE53WldOMFVtRjBhVzg5SW5oTmFXUjVUV2xrSUcxbFpYUWlJSFpwWlhkQ2IzZzlJakFnTUNBME1EQWdOREF3SWo0OGMzUjViR1UrTG1Ob0lIc2dkR1Y0ZEMxaGJtTm9iM0k2SUcxcFpHUnNaVHNnWkc5dGFXNWhiblF0WW1GelpXeHBibVU2SUcxcFpHUnNaVHNnWm1sc2JEb2dkMmhwZEdVN0lHWnZiblF0Wm1GdGFXeDVPaUJ6WlhKcFpqc2dabTl1ZEMxemFYcGxPaUE1Tm5CNE95QjlQQzl6ZEhsc1pUNDhjbVZqZENCM2FXUjBhRDBpTVRBd0pTSWdhR1ZwWjJoMFBTSXhNREFsSWlCbWFXeHNQU0ppYkdGamF5SWdMejQ4ZEdWNGRDQjRQU0l5TURBaUlIazlJakl3TUNJZ1kyeGhjM005SW1Ob0lqN3Z2SVE4TDNSbGVIUStQQzl6ZG1jKyJ9" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/f1a2c7d9d5eb73fc202173f83b27afc9", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/f1a2c7d9d5eb73fc202173f83b27afc9", - "raw": "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWR5TWlkIG1lZXQiIHZpZXdCb3g9IjAgMCA0MDAgNDAwIj48c3R5bGU+LmNoIHsgdGV4dC1hbmNob3I6IG1pZGRsZTsgZG9taW5hbnQtYmFzZWxpbmU6IG1pZGRsZTsgZmlsbDogd2hpdGU7IGZvbnQtZmFtaWx5OiBzZXJpZjsgZm9udC1zaXplOiA5NnB4OyB9PC9zdHlsZT48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJibGFjayIgLz48dGV4dCB4PSIyMDAiIHk9IjIwMCIgY2xhc3M9ImNoIj7vvIQ8L3RleHQ+PC9zdmc+", - "format": "svg+xml", - "bytes": 446 - } - ], - "metadata": { - "name": "$", - "description": "The unicode character $", - "image": "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaWR5TWlkIG1lZXQiIHZpZXdCb3g9IjAgMCA0MDAgNDAwIj48c3R5bGU+LmNoIHsgdGV4dC1hbmNob3I6IG1pZGRsZTsgZG9taW5hbnQtYmFzZWxpbmU6IG1pZGRsZTsgZmlsbDogd2hpdGU7IGZvbnQtZmFtaWx5OiBzZXJpZjsgZm9udC1zaXplOiA5NnB4OyB9PC9zdHlsZT48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJibGFjayIgLz48dGV4dCB4PSIyMDAiIHk9IjIwMCIgY2xhc3M9ImNoIj7vvIQ8L3RleHQ+PC9zdmc+", - "attributes": [ - { - "value": "Halfwidth and Fullwidth Forms", - "trait_type": "Character Type" - } - ] - }, - "timeLastUpdated": "2023-03-06T17:45:43.077Z", - "contractMetadata": { - "name": "Unicode (for Geeks)", - "symbol": "�", - "tokenType": "ERC721", - "contractDeployer": "0xe0b604208176c9c991a310e242677dffddd3ab4d", - "deployedBlockNumber": 13206802, - "openSea": { - "floorPrice": 0.07, - "collectionName": "Unicode (for Geeks)", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://openseauserdata.com/files/f9d2c33c697c2b0df6861e2dd10301b3.svg", - "description": "Unicode characters, as NFTs. Free to mint; strictly limited supply of 143,859.\n\nAll profits from trading fees support the Unicode Foundation, via their Adopt a Character program. NFT owners can vote on the next character to adopt at our Snapshot: https://snapshot.org/#/unicodeforgeeks.eth/", - "lastIngestedAt": "2023-03-20T11:09:07.000Z" - } - } - }, - { - "contract": { - "address": "0x28a8874150ccdb519ce06adc584961a14fe3b186" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000020e", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/QmdLRXS4Rqf9L9RDbQrnUJkAH71JSmDUQq96B4mom7PeE7/Coin", - "raw": "https://ipfs.io/ipfs/QmdLRXS4Rqf9L9RDbQrnUJkAH71JSmDUQq96B4mom7PeE7/Coin" - }, - "media": [ - { - "gateway": "", - "raw": "" - } - ], - "metadata": {}, - "timeLastUpdated": "2023-03-21T22:06:40.559Z", - "contractMetadata": { - "name": "Digitible", - "symbol": "DT", - "totalSupply": "1893", - "tokenType": "ERC721", - "contractDeployer": "0x447f970583d653e2e69e05fd7a9cc4a28749e5e5", - "deployedBlockNumber": 8341881, - "openSea": { - "floorPrice": 0, - "collectionName": "Digitible NFT Inc", - "safelistRequestStatus": "approved", - "imageUrl": "https://i.seadn.io/gae/El5ViKNOpjkvajXNdNnwXTE5xb0Wg72EdaXEikc-DBJSeZ-9KR9sQ-T4nv7JRWjFGkxeZdndIkFmL7MbRNgzVII?w=500&auto=format", - "description": "Digitible is a rare Non-Fungible token platform and serving agency. Be sure to view our website to sign Ross Ulbricht's petition and see our line of Ross Ulbricht NFT's including a limited edition 1/500 physical funded bar.", - "externalUrl": "https://digitible.com/", - "lastIngestedAt": "2023-03-20T14:40:45.000Z" - } - } - }, - { - "contract": { - "address": "0x2a187453064356c898cae034eaed119e1663acb8" - }, - "id": { - "tokenId": "0x280eced9c17439b3770443e3e6653bfb851b65f318d07042393812fb9374168b", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Buterin", - "description": "The Decentraland username Buterin, which is also the ENS subdomain `Buterin.dcl.eth`.", - "tokenUri": { - "gateway": "", - "raw": "" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/4ab46d441e4786cdd220ff61988cd3e5", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/4ab46d441e4786cdd220ff61988cd3e5", - "raw": "https://i.seadn.io/gae/pv7H3evj-YVAgNutg48FosKX3jeC1a_WOzpi9ZL7Qno-k-EPlDOocU68hvj45ZYVZQFvy56X-pg6tS9Jai_cMCMp?w=500&auto=format", - "format": "png", - "bytes": 14792 - } - ], - "metadata": { - "name": "Buterin", - "description": "The Decentraland username Buterin, which is also the ENS subdomain `Buterin.dcl.eth`.", - "image": "https://i.seadn.io/gae/pv7H3evj-YVAgNutg48FosKX3jeC1a_WOzpi9ZL7Qno-k-EPlDOocU68hvj45ZYVZQFvy56X-pg6tS9Jai_cMCMp?w=500&auto=format", - "attributes": [ - { - "value": 7, - "trait_type": "Length" - } - ] - }, - "timeLastUpdated": "2022-12-22T11:48:23.897Z", - "contractMetadata": { - "name": "DCL Registrar", - "symbol": "DCLENS", - "totalSupply": "38837", - "tokenType": "ERC721", - "contractDeployer": "0xe74ab71711981a31d3c38edfe702989f30be29b6", - "deployedBlockNumber": 9412979, - "openSea": { - "floorPrice": 0.014, - "collectionName": "Decentraland Names", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/5KIxEGmnAiL5psnMCSLPlfSxDxfRSk4sTQRSyhPdgnu70nGb2YsuVxTmO2iKEkOZOfq476Bl1hAu6aJIKjs1myY?w=500&auto=format", - "description": "Decentraland is an Ethereum blockchain-powered virtual world, developed and owned by its users, who can create, experience, and monetize content and applications. Decentraland Names are tradable ERC721s, integrated fully with the Ethereum Name System. These unique human-readable names allow users to trade tokens between memorable addresses, e.g. ‘jane.dcl.eth’. In this OpenSea store, you can buy and sell Decentraland Names in MANA, DCL's native currency.", - "externalUrl": "https://decentraland.org/", - "discordUrl": "https://discord.gg/svZP5W7tmq", - "lastIngestedAt": "2023-03-20T16:52:54.000Z" - } - } - }, - { - "contract": { - "address": "0x2a2127753653f6210d26f5b470738bf13b73423d" - }, - "id": { - "tokenId": "0x9b0dd7d4e188cb934b49df82244d421a7ded1817667c3bb47b754abb44d515bd", - "tokenMetadata": { - "tokenType": "ERC1155" - } - }, - "balance": "1", - "title": "everything to the moon", - "description": "```\nThe network helps around the bored moon\n```\n\n# About this amulet\nThis is an amulet, a short poem with a lucky SHA-256 hash, explained [here](https://text.bargains/).\n\nYou can find and mint your own amulets at [amulet.garden](https://at.amulet.garden/).\n\nThis poem's rarity is legendary.\n\n\n[Here](https://dashboard\\.cloverly\\.com/receipt/20210321\\-b23a4b04f064266c0d772df026135d2c) is a record of the carbon offset purchased in this poem's name.\n", - "tokenUri": { - "gateway": "https://at.amulet.garden/token/9b0dd7d4e188cb934b49df82244d421a7ded1817667c3bb47b754abb44d515bd.json", - "raw": "https://at.amulet.garden/token/{id}.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/bd9fbc052cb6307fd038bdc13442f28b", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/bd9fbc052cb6307fd038bdc13442f28b", - "raw": "https://at.amulet.garden/token/9b0dd7d4e188cb934b49df82244d421a7ded1817667c3bb47b754abb44d515bd.png", - "format": "png", - "bytes": 11967 - } - ], - "metadata": { - "name": "everything to the moon", - "description": "```\nThe network helps around the bored moon\n```\n\n# About this amulet\nThis is an amulet, a short poem with a lucky SHA-256 hash, explained [here](https://text.bargains/).\n\nYou can find and mint your own amulets at [amulet.garden](https://at.amulet.garden/).\n\nThis poem's rarity is legendary.\n\n\n[Here](https://dashboard\\.cloverly\\.com/receipt/20210321\\-b23a4b04f064266c0d772df026135d2c) is a record of the carbon offset purchased in this poem's name.\n", - "image": "https://at.amulet.garden/token/9b0dd7d4e188cb934b49df82244d421a7ded1817667c3bb47b754abb44d515bd.png", - "attributes": [ - { - "display_type": "number", - "value": 8, - "trait_type": "Score" - }, - { - "value": "legendary", - "trait_type": "Rarity" - }, - { - "display_type": "number", - "value": 39, - "trait_type": "Length" - }, - { - "value": "Revealed" - }, - { - "value": "No", - "trait_type": "Hidden Whitespace" - } - ], - "poem": "The network helps around the bored moon" - }, - "timeLastUpdated": "2023-03-06T17:46:07.894Z", - "contractMetadata": { - "name": "Amulets", - "symbol": "AMULET", - "tokenType": "ERC1155", - "contractDeployer": "0xe0b604208176c9c991a310e242677dffddd3ab4d", - "deployedBlockNumber": 12097683, - "openSea": { - "floorPrice": 0.049, - "collectionName": "Amulets V4", - "safelistRequestStatus": "not_requested", - "description": "Amulets are short poems with lucky SHA-256 hashes", - "externalUrl": "https://text.bargains/", - "lastIngestedAt": "2023-03-20T16:52:58.000Z" - } - } - }, - { - "contract": { - "address": "0x2a2127753653f6210d26f5b470738bf13b73423d" - }, - "id": { - "tokenId": "0xa1de57a8ad4d9f1fc1c4ec3b14adb7ffb13f907e29ed37f97ef8d3415aca8699", - "tokenMetadata": { - "tokenType": "ERC1155" - } - }, - "balance": "1", - "title": "standard american", - "description": "```\nWe; like gods and like machines; confuse the one for the other.\n```\n\n# About this amulet\nThis is an amulet, a short poem with a lucky SHA-256 hash, explained [here](https://text.bargains/).\n\nYou can find and mint your own amulets at [amulet.garden](https://at.amulet.garden/).\n\nThis poem's rarity is uncommon.\n\n\nThis poem does not have a carbon offset URL! This is a formal requirement to be an Amulet, but the author hasn't provided a valid URL.\n", - "tokenUri": { - "gateway": "https://at.amulet.garden/token/a1de57a8ad4d9f1fc1c4ec3b14adb7ffb13f907e29ed37f97ef8d3415aca8699.json", - "raw": "https://at.amulet.garden/token/{id}.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/a33e0a8a50945f40b8c731aa766ec9c3", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/a33e0a8a50945f40b8c731aa766ec9c3", - "raw": "https://at.amulet.garden/token/a1de57a8ad4d9f1fc1c4ec3b14adb7ffb13f907e29ed37f97ef8d3415aca8699.png", - "format": "png", - "bytes": 10334 - } - ], - "metadata": { - "name": "standard american", - "description": "```\nWe; like gods and like machines; confuse the one for the other.\n```\n\n# About this amulet\nThis is an amulet, a short poem with a lucky SHA-256 hash, explained [here](https://text.bargains/).\n\nYou can find and mint your own amulets at [amulet.garden](https://at.amulet.garden/).\n\nThis poem's rarity is uncommon.\n\n\nThis poem does not have a carbon offset URL! This is a formal requirement to be an Amulet, but the author hasn't provided a valid URL.\n", - "image": "https://at.amulet.garden/token/a1de57a8ad4d9f1fc1c4ec3b14adb7ffb13f907e29ed37f97ef8d3415aca8699.png", - "attributes": [ - { - "display_type": "number", - "value": 5, - "trait_type": "Score" - }, - { - "value": "uncommon", - "trait_type": "Rarity" - }, - { - "display_type": "number", - "value": 63, - "trait_type": "Length" - }, - { - "value": "Revealed" - }, - { - "value": "No", - "trait_type": "Hidden Whitespace" - } - ], - "poem": "We; like gods and like machines; confuse the one for the other." - }, - "timeLastUpdated": "2023-03-02T15:49:55.487Z", - "contractMetadata": { - "name": "Amulets", - "symbol": "AMULET", - "tokenType": "ERC1155", - "contractDeployer": "0xe0b604208176c9c991a310e242677dffddd3ab4d", - "deployedBlockNumber": 12097683, - "openSea": { - "floorPrice": 0.049, - "collectionName": "Amulets V4", - "safelistRequestStatus": "not_requested", - "description": "Amulets are short poems with lucky SHA-256 hashes", - "externalUrl": "https://text.bargains/", - "lastIngestedAt": "2023-03-20T16:52:58.000Z" - } - } - }, - { - "contract": { - "address": "0x2ae1300474b991f2372734eba589e8b4e304edc0" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000002", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "tiny pepe #2", - "description": "one of 4k cc0 tiny pepes minted out across 7 different chains.", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/bafybeieze557ofvh4vwz6xce3fk36kmelkgpl6u4bsk3ovxmc3qiyqvdui/2.json", - "raw": "ipfs://bafybeieze557ofvh4vwz6xce3fk36kmelkgpl6u4bsk3ovxmc3qiyqvdui/2.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/b8a40159639e0a74954cdfcb7e7a6701", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/b8a40159639e0a74954cdfcb7e7a6701", - "raw": "ipfs://bafybeieocu22pd4kbhf2hwokk6csvhcxg53jie4n6tqpihknua5hgqeqjq/2.png", - "format": "png", - "bytes": 3252 - } - ], - "metadata": { - "date": 1659250660397, - "image": "ipfs://bafybeieocu22pd4kbhf2hwokk6csvhcxg53jie4n6tqpihknua5hgqeqjq/2.png", - "dna": "c3623d2514fb92d2ffd60aafda287f135ce598bf", - "name": "tiny pepe #2", - "description": "one of 4k cc0 tiny pepes minted out across 7 different chains.", - "edition": 2, - "attributes": [ - { - "value": "Black", - "trait_type": "Background" - }, - { - "value": "Blue", - "trait_type": "Pepe" - }, - { - "value": "Blue", - "trait_type": "Eyes" - }, - { - "value": "Normal", - "trait_type": "Mouth" - }, - { - "value": "Black", - "trait_type": "Shirt" - }, - { - "value": "Clean", - "trait_type": "Head" - } - ], - "compiler": "Pepe" - }, - "timeLastUpdated": "2023-03-06T23:43:27.515Z", - "contractMetadata": { - "name": "tiny pepes (eth)", - "symbol": "TNP", - "totalSupply": "4444", - "tokenType": "ERC721", - "contractDeployer": "0x426ffe41f80489122d023358c20ab88762f7026a", - "deployedBlockNumber": 15248865, - "openSea": { - "floorPrice": 0.0064, - "collectionName": "tiny pepes (eth)", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/6a0dd5059f1d523f2f6c9f3b1a08be01.gif?w=500&auto=format", - "description": "tiny pepes pfp soldout", - "lastIngestedAt": "2023-03-20T17:08:30.000Z" - } - } - }, - { - "contract": { - "address": "0x2ca113e1aa37d83662a1d3f84e209f7068700fa6" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000001fd", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Crecodile #509", - "description": "Ladies and gentlemen, boys and girls… welcome to the grand opening of Crecoland! For the first time in decentralized history, the wonderful world of Crecodiles is open to the public. Crecodiles are a series of 8888 crocodile NFTs. Not just a charming collectible, these fancy friends have their DNA fully stored on the Ethereum blockchain and are excited to explore the full potential of on-chain metadata.", - "tokenUri": { - "gateway": "", - "raw": "data:application/json;base64,ewoibmFtZSI6ICJDcmVjb2RpbGUgIzUwOSIKLCJkZXNjcmlwdGlvbiI6ICJMYWRpZXMgYW5kIGdlbnRsZW1lbiwgYm95cyBhbmQgZ2lybHPigKYgd2VsY29tZSB0byB0aGUgZ3JhbmQgb3BlbmluZyBvZiBDcmVjb2xhbmQhIEZvciB0aGUgZmlyc3QgdGltZSBpbiBkZWNlbnRyYWxpemVkIGhpc3RvcnksIHRoZSB3b25kZXJmdWwgd29ybGQgb2YgQ3JlY29kaWxlcyBpcyBvcGVuIHRvIHRoZSBwdWJsaWMuIENyZWNvZGlsZXMgYXJlIGEgc2VyaWVzIG9mIDg4ODggY3JvY29kaWxlIE5GVHMuIE5vdCBqdXN0IGEgY2hhcm1pbmcgY29sbGVjdGlibGUsIHRoZXNlIGZhbmN5IGZyaWVuZHMgaGF2ZSB0aGVpciBETkEgZnVsbHkgc3RvcmVkIG9uIHRoZSBFdGhlcmV1bSBibG9ja2NoYWluIGFuZCBhcmUgZXhjaXRlZCB0byBleHBsb3JlIHRoZSBmdWxsIHBvdGVudGlhbCBvZiBvbi1jaGFpbiBtZXRhZGF0YS4iCiwiYXR0cmlidXRlcyI6Wwp7InRyYWl0X3R5cGUiOiAiQmFja2dyb3VuZCIsICJ2YWx1ZSI6ICJPcmFuZ2UifSwKeyJ0cmFpdF90eXBlIjogIkJlaGluZCIsICJ2YWx1ZSI6ICJOb25lIn0sCnsidHJhaXRfdHlwZSI6ICJNb3V0aCIsICJ2YWx1ZSI6ICJQYXN0ZSJ9LAp7InRyYWl0X3R5cGUiOiAiT3V0Zml0IiwgInZhbHVlIjogIlBhdGNod29yayBTaGlydCJ9LAp7InRyYWl0X3R5cGUiOiAiRXllcyIsICJ2YWx1ZSI6ICJGb2N1c2VkIn0sCnsidHJhaXRfdHlwZSI6ICJIZWFkZ2VhciIsICJ2YWx1ZSI6ICJTaHJvb21zIn0sCnsidHJhaXRfdHlwZSI6ICJMZWZ0IEhhbmQiLCAidmFsdWUiOiAiTm9uZSJ9LAp7InRyYWl0X3R5cGUiOiAiUmlnaHQgSGFuZCIsICJ2YWx1ZSI6ICJQYWxldHRlIn0sCnsidHJhaXRfdHlwZSI6ICJGcmVucyIsICJ2YWx1ZSI6ICJOb25lIn0KXQosImV4dGVybmFsX3VybCI6ICJodHRwczovL3d3dy5jcmVjby54eXovY3JlY29kaWxlLzUwOSIKLCJpbWFnZSI6ICJodHRwczovL2lrLmltYWdla2l0LmlvLzJqMGRia3M1bi9pbWcvc3RhdGljL2NyZWNvcy9wcmVyZW5kZXIvMjA4OTcwNDM2MDA0NDUyNzYxOC5wbmciCn0=" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/15c1e1cea1151b2f4c1e107d32ea3b41", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/15c1e1cea1151b2f4c1e107d32ea3b41", - "raw": "https://ik.imagekit.io/2j0dbks5n/img/static/crecos/prerender/2089704360044527618.png", - "format": "jpeg", - "bytes": 93556 - } - ], - "metadata": { - "name": "Crecodile #509", - "description": "Ladies and gentlemen, boys and girls… welcome to the grand opening of Crecoland! For the first time in decentralized history, the wonderful world of Crecodiles is open to the public. Crecodiles are a series of 8888 crocodile NFTs. Not just a charming collectible, these fancy friends have their DNA fully stored on the Ethereum blockchain and are excited to explore the full potential of on-chain metadata.", - "image": "https://ik.imagekit.io/2j0dbks5n/img/static/crecos/prerender/2089704360044527618.png", - "attributes": [ - { - "value": "Orange", - "trait_type": "Background" - }, - { - "value": "None", - "trait_type": "Behind" - }, - { - "value": "Paste", - "trait_type": "Mouth" - }, - { - "value": "Patchwork Shirt", - "trait_type": "Outfit" - }, - { - "value": "Focused", - "trait_type": "Eyes" - }, - { - "value": "Shrooms", - "trait_type": "Headgear" - }, - { - "value": "None", - "trait_type": "Left Hand" - }, - { - "value": "Palette", - "trait_type": "Right Hand" - }, - { - "value": "None", - "trait_type": "Frens" - } - ], - "external_url": "https://www.creco.xyz/crecodile/509" - }, - "timeLastUpdated": "2023-03-06T17:45:43.280Z", - "contractMetadata": { - "name": "Crecodiles", - "symbol": "CRECO", - "totalSupply": "8888", - "tokenType": "ERC721", - "contractDeployer": "0x582d2cc12e24de9b9bf81dc146df294eaa8daa8d", - "deployedBlockNumber": 14628216, - "openSea": { - "floorPrice": 0.06878, - "collectionName": "Crecodiles", - "safelistRequestStatus": "approved", - "imageUrl": "https://i.seadn.io/gae/6xlnhM_4g84zFtchr8HJ2y3dXftOh1ozyMAUepXLLLBAv-zo8A7m58zLq0gNKkML4JvNrW55NN2cuQ_26L3s405louc5_Cg8n0wwIA?w=500&auto=format", - "description": "Ladies and gentlemen, boys and girls… welcome to the grand opening of Crecoland! For the first time in decentralized history, the wonderful world of Crecodiles is open to the public. Crecodiles are a series of 8888 crocodile NFTs. Not just a charming collectible, these fancy friends have their DNA fully stored on the Ethereum blockchain and are excited to explore the full potential of on-chain metadata.", - "externalUrl": "https://www.creco.xyz", - "twitterUsername": "creco_xyz", - "discordUrl": "https://discord.gg/creco", - "lastIngestedAt": "2023-03-20T18:25:11.000Z" - } - } - }, - { - "contract": { - "address": "0x30cdac3871c41a63767247c8d1a2de59f5714e78" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000972", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Obit #2418", - "description": "AN 8-BIT OBITUARY OF FAMILY FIENDS\n\nThere are 7,132 Obits. We are all unique, restless souls of our own generation. Dead Ringers are the most coveted of the clan but ownership of any Obit will grant you access to exclusive launches, airdrops, and other surprising pleasures. Grave pleasures indeed.\n\nVisit the [Obits website](https://obitsnft.com) for more details.", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/Qmb5zeyvU7ZpotLDzkUmSeMDA71MExp8eJyNeefGdoeA2x/2418", - "raw": "ipfs://Qmb5zeyvU7ZpotLDzkUmSeMDA71MExp8eJyNeefGdoeA2x/2418" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/60ebac3c691e1cf286e3b611ea69db05", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/60ebac3c691e1cf286e3b611ea69db05", - "raw": "ipfs://QmPASmu4tqbgwuceqWtHbEZTrn24zsva1NDBxpfzEjVpQR/2418.png", - "format": "png", - "bytes": 22540 - } - ], - "metadata": { - "name": "Obit #2418", - "description": "AN 8-BIT OBITUARY OF FAMILY FIENDS\n\nThere are 7,132 Obits. We are all unique, restless souls of our own generation. Dead Ringers are the most coveted of the clan but ownership of any Obit will grant you access to exclusive launches, airdrops, and other surprising pleasures. Grave pleasures indeed.\n\nVisit the [Obits website](https://obitsnft.com) for more details.", - "image": "ipfs://QmPASmu4tqbgwuceqWtHbEZTrn24zsva1NDBxpfzEjVpQR/2418.png", - "external_url": "https://obitsnft.com", - "attributes": [ - { - "value": "Female", - "trait_type": "type" - }, - { - "value": "Short Gray", - "trait_type": "Accessory" - }, - { - "value": "Big Shades", - "trait_type": "Accessory" - }, - { - "value": "Gold Chain", - "trait_type": "Accessory" - }, - { - "value": "2008 - 2012", - "trait_type": "Lived" - } - ], - "background_color": "cccccc" - }, - "timeLastUpdated": "2023-03-15T15:06:42.522Z", - "contractMetadata": { - "name": "0bits", - "symbol": "0bits", - "totalSupply": "7132", - "tokenType": "ERC721", - "contractDeployer": "0xf85a742e9debf5715745c69210181e0c2dd5c9eb", - "deployedBlockNumber": 13300009, - "openSea": { - "floorPrice": 0.059293, - "collectionName": "Obits Official", - "safelistRequestStatus": "approved", - "imageUrl": "https://i.seadn.io/gae/Lerkj-waM_kd-iwSTcj8ur75wG0JjZraYNXzkfmRw5FgTMa2EmRGROQxtoD_R0lOj0kP8wwk85AVsys0fPRFypimE1xAU36U7KZ_0Q?w=500&auto=format", - "description": "**AN 8-BIT OBITUARY OF FAMILY FIENDS**\n\nThere are 7,132 Obits. We are all unique, restless souls of our own generation. Dead Ringers are the most coveted of the clan but ownership of any Obit will grant you access to exclusive launches, airdrops, and other surprising pleasures. Grave pleasures indeed.\n\nVisit the [Obits website](https://obitsnft.com) for more details.", - "externalUrl": "https://obitsnft.com", - "twitterUsername": "ObitsNFT", - "discordUrl": "https://discord.gg/ggpFEdUc9q", - "lastIngestedAt": "2023-03-22T18:11:02.000Z" - } - } - }, - { - "contract": { - "address": "0x31385d3520bced94f77aae104b406994d8f2168c" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000002469", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "BASTARD GAN PUNK V2 #9321", - "description": "FUCKING ME OUT, THE TASTE OF IT\nTHE ONLY RECITIE, THIS IS WHERE I WANT TO BE\nSILENT, WE LIVE LIKE A HUNDRED MILES BY A THIRSTY SEA\n", - "tokenUri": { - "gateway": "https://api.bastardganpunks.club/9321", - "raw": "https://api.bastardganpunks.club/9321" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/fe5a011ad011cafc0e3937a1fa0bc7ff", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/fe5a011ad011cafc0e3937a1fa0bc7ff", - "raw": "https://ipfs.io/ipfs/QmToZrRVm7DqsUEryjfc7k3gDVvaUR59dVpsStbz9rASAQ", - "format": "png", - "bytes": 11690 - } - ], - "metadata": { - "image": "https://ipfs.io/ipfs/QmToZrRVm7DqsUEryjfc7k3gDVvaUR59dVpsStbz9rASAQ", - "external_url": "https://www.bastardganpunks.club/v2/9321", - "tokenId": 9321, - "name": "BASTARD GAN PUNK V2 #9321", - "description": "FUCKING ME OUT, THE TASTE OF IT\nTHE ONLY RECITIE, THIS IS WHERE I WANT TO BE\nSILENT, WE LIVE LIKE A HUNDRED MILES BY A THIRSTY SEA\n", - "attributes": [ - { - "value": "CALM AF (STILL)", - "trait_type": "HYPE TYPE" - }, - { - "value": "ANON BASTARD", - "trait_type": "BASTARDNESS" - }, - { - "value": "28", - "trait_type": "SONG WORD COUNT" - }, - { - "value": "APE", - "trait_type": "TYPE" - }, - { - "value": "GLITCHY AF", - "trait_type": "BACKGROUND" - }, - { - "value": "RIGHT", - "trait_type": "FACING DIRECTION" - }, - { - "value": "EDIBLES???", - "trait_type": "BAD HABIT(S)" - }, - { - "value": "EGG CARTON", - "trait_type": "GLITCH PATTERN" - }, - { - "value": "NUTTIN'", - "trait_type": "FACE" - }, - { - "value": "NUTTIN'", - "trait_type": "NECK" - }, - { - "value": "MEDICAL MASK", - "trait_type": "MOUTH" - }, - { - "value": "BIG SHADES", - "trait_type": "EYES" - }, - { - "value": "CLOWN NOSE", - "trait_type": "NOSE" - }, - { - "value": "NUTTIN'", - "trait_type": "EAR" - }, - { - "value": "HOODIE", - "trait_type": "HEAD" - }, - { - "value": "4", - "trait_type": "ATTRIBUTE COUNT" - } - ], - "imageArweave": "https://arweave.net/RGW_C7hc74gtLKYdYAtVXY0PXSqs6OLDmYf9NEXHh-M" - }, - "timeLastUpdated": "2023-03-06T23:43:26.488Z", - "contractMetadata": { - "name": "BASTARD GAN PUNKS V2", - "symbol": "BGANPUNKV2", - "totalSupply": "11305", - "tokenType": "ERC721", - "contractDeployer": "0xc5e08104c19dafd00fe40737490da9552db5bfe5", - "deployedBlockNumber": 11991231, - "openSea": { - "floorPrice": 0.1997, - "collectionName": "BASTARD GAN PUNKS V2", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/-_j_RMVSqfDvPfRJhF3BQaf6D3OD31sG6d5pszei8a5V31EKr4Jz11xk-0iAnG4vTKwvhNPx2ICn4r25tbEtQ36EYJRdxlczuppUwg?w=500&auto=format", - "description": "VERSION 2 OF BASTARD GAN PUNKS ARE COOLER, BETTER AND GOOFIER THAN BOTH BOOMER CRYPTOPUNKS & VERSION 1 BASTARD GAN PUNKS. THIS TIME, ALL CRYPTOPUNK ATTRIBUTES ARE EXTRACTED AND A NEW DATASET OF ALL COMBINATIONS OF THEM ARE TRAINED WITH GAN TO GIVE BIRTH TO EVEN MORE BADASS ONES. ALSO EACH ONE HAS A UNIQUE STORY GENERATED FROM MORE THAN 10K PUNK & EMO SONG LYRICS VIA GPT-2 LANGUAGE PROCESSING ALGORITHM. \n\nBASTARDS ARE SLOWLY DEGENERATING THE WORLD. ADOPT ONE TO KICK EVERYONE'S ASSES!\n\nDISCLAIMER: THIS PROJECT IS NOT AFFILIATED WITH YUGA LABS\n\nBANNER DESIGN BY: @zfyrx", - "externalUrl": "https://bastardganpunks.club", - "twitterUsername": "bganpunks", - "discordUrl": "https://discord.gg/bganpunks", - "lastIngestedAt": "2023-03-22T18:53:16.000Z" - } - } - }, - { - "contract": { - "address": "0x18f835c5a2268e9871fbf2cde9abde4d646e9747" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000003", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Xcard#3", - "description": "Look at the design rendering of this card here: https://xpassport.app/v/vitalik.eth", - "tokenUri": { - "gateway": "https://api.xpassport.app/token/3?network=mainnet&address=18f835c5a2268e9871fbf2cde9abde4d646e9747", - "raw": "https://api.xpassport.app/token/3?network=mainnet&address=18f835c5a2268e9871fbf2cde9abde4d646e9747" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/856176a70abd08f061024a0d40ca9da0", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/856176a70abd08f061024a0d40ca9da0", - "raw": "https://api.xpassport.app/images/mainnet_18f835c5a2268e9871fbf2cde9abde4d646e9747/3.png", - "format": "png", - "bytes": 1164681 - } - ], - "metadata": { - "name": "Xcard#3", - "description": "Look at the design rendering of this card here: https://xpassport.app/v/vitalik.eth", - "image": "https://api.xpassport.app/images/mainnet_18f835c5a2268e9871fbf2cde9abde4d646e9747/3.png", - "attributes": [ - { - "value": "green", - "trait_type": "Cockade Color" - }, - { - "value": "purple", - "trait_type": "Epaulet Color" - }, - { - "value": "epic", - "trait_type": "Cufflink Color" - }, - { - "value": "blue", - "trait_type": "Bordure Color" - }, - { - "value": "blue", - "trait_type": "Blazon Color" - }, - { - "value": 5, - "trait_type": "Blazon Pattern" - } - ], - "properties": { - "blazon": { - "color": "blue", - "pattern": 5 - }, - "bordure": { - "color": "blue" - }, - "epaulet": { - "color": "purple" - }, - "cockade": { - "color": "green" - }, - "cufflink": { - "color": "epic" - } - } - }, - "timeLastUpdated": "2023-03-11T13:23:53.050Z", - "contractMetadata": { - "name": "Xcard", - "symbol": "XCD", - "totalSupply": "10", - "tokenType": "ERC721", - "contractDeployer": "0xcee6440c7f819b22deeff29b49bdc5c465560c62", - "deployedBlockNumber": 14106081, - "openSea": { - "floorPrice": 0, - "collectionName": "X-Passport", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gae/XmfGv9CKX0cEUgLmnVWnFOtgmxds7G3zdcxxOzcGQ_AMIPo2OQPSppS0v4aBrwzi0TViXxhCR97TpFV_46QecKCSuKhGlDaoHwKR9g?w=500&auto=format", - "description": "https://xpassport.app/", - "lastIngestedAt": "2023-03-20T00:05:10.000Z" - } - } - }, - { - "contract": { - "address": "0x1b2b41bc128dc6246dfcafbb9ae3a75bd74ff6dd" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000002d", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Donald Trump - odious hero #45", - "description": "The collection of historical NFTs is dedicated to the 45th President of the United States - the biggest political misunderstanding. Each of the 123 works is made individually and unique.", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmaDx3sRJgJgEg2RL9MtgWgxqgEEJkeWYgrejEszDagWhS/45.json", - "raw": "ipfs://QmaDx3sRJgJgEg2RL9MtgWgxqgEEJkeWYgrejEszDagWhS/45.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/0d8e8837b51ed7ea384742a3be3990aa", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/0d8e8837b51ed7ea384742a3be3990aa", - "raw": "ipfs://QmTTkD7Q9hmb848ss2dZUp6RXFpfGwVAV4JsJPSgaDtgNk/45.png", - "format": "png", - "bytes": 1658312 - } - ], - "metadata": { - "date": 1661678659986, - "image": "ipfs://QmTTkD7Q9hmb848ss2dZUp6RXFpfGwVAV4JsJPSgaDtgNk/45.png", - "dna": "716987f6751b05bb05a95a3a2c3dfb40f83e7d61", - "name": "Donald Trump - odious hero #45", - "description": "The collection of historical NFTs is dedicated to the 45th President of the United States - the biggest political misunderstanding. Each of the 123 works is made individually and unique.", - "edition": 45, - "attributes": [ - { - "value": "45", - "trait_type": "Picture" - } - ], - "compiler": "Asshole in the White House" - }, - "timeLastUpdated": "2023-03-11T14:25:41.489Z", - "contractMetadata": { - "name": "Donald Trump - odious hero", - "symbol": "DJT", - "totalSupply": "123", - "tokenType": "ERC721", - "contractDeployer": "0xb46bf65fc2b1368e99aedb2ebbcc4dde999a2dd3", - "deployedBlockNumber": 15452198, - "openSea": { - "floorPrice": 4.88936, - "collectionName": "Donald Trump - odious hero", - "safelistRequestStatus": "disabled_top_trending", - "imageUrl": "https://i.seadn.io/gcs/files/ae2c3f348ca6a1fd396195641c5769bd.png?w=500&auto=format", - "description": "Welcome to the post-ironic NFT project! \nThe collection of historical NFTs is dedicated to the 45th President of the United States - the biggest political misunderstanding. ", - "externalUrl": "https://trump-to-the-moon.com/", - "twitterUsername": "OdiousTrump", - "lastIngestedAt": "2023-03-20T01:33:28.000Z" - } - } - }, - { - "contract": { - "address": "0x1d2248b01b43ad573ef8a8ca6b2820398e08ec83" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000020", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://gateway.pinata.cloud/ipfs/32.json", - "raw": "https://gateway.pinata.cloud/ipfs/32.json" - }, - "media": [ - { - "gateway": "", - "raw": "" - } - ], - "metadata": { - "metadata": [], - "attributes": [] - }, - "timeLastUpdated": "2023-03-23T00:48:00.616Z", - "error": "Token uri responded with a non 200 response code", - "contractMetadata": { - "name": "CryptoMason", - "symbol": "MASON", - "totalSupply": "45", - "tokenType": "ERC721", - "contractDeployer": "0x7e8a66624db5f485e2dfbe2f3aa967444e51eb7e", - "deployedBlockNumber": 15492032, - "openSea": { - "floorPrice": 0, - "collectionName": "CryptoMason V2", - "safelistRequestStatus": "not_requested", - "lastIngestedAt": "2023-03-20T01:48:02.000Z" - } - } - }, - { - "contract": { - "address": "0x1e6d2b2f7799a5be419a7627d94e1cb9714b6b25" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000020", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Pink Shit Ape - 32", - "description": "", - "tokenUri": { - "gateway": "https://metadata.pinkshitape.com/metadata/32.json", - "raw": "https://metadata.pinkshitape.com/metadata/32.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/e3669112e8c5cfb4cf7638702283dca0", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/e3669112e8c5cfb4cf7638702283dca0", - "raw": "https://static.pinkshitape.com/32.png", - "format": "png", - "bytes": 81922 - } - ], - "metadata": { - "name": "Pink Shit Ape - 32", - "image": "https://static.pinkshitape.com/32.png", - "attributes": [ - { - "value": "grain-growing farmer", - "trait_type": "role" - }, - { - "value": "Bath", - "trait_type": "hobby" - }, - { - "value": "Online game addiction", - "trait_type": "bad" - }, - { - "value": "Power", - "trait_type": "character" - } - ], - "background_color": "#97fcfc" - }, - "timeLastUpdated": "2023-03-19T10:48:49.294Z", - "contractMetadata": { - "name": "Pink Shit APE", - "symbol": "PSA", - "totalSupply": "45", - "tokenType": "ERC721", - "contractDeployer": "0xb33b625231e1a1ba04db93ee3d0b28e7167c0c85", - "deployedBlockNumber": 15001720, - "openSea": { - "floorPrice": 0, - "collectionName": "Pink Shit APE", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/3e6d7f4b18714104b007de85150b8742.gif?w=500&auto=format", - "description": "Oh shoot! 9999 lucky bastard! \n ???? Mint: https://pinkshitape.com/\n ???? Pink Shit Ape is a collection of 9,999 unique Pink Shit Ape NFTs— unique digital collectibles living on the Ethereum blockchain. \n\nEach Pink Shit Ape NFT has a unique identity attribute and character, which is a bit like your unique existence in the real world. The added interest of SHIT elements has shaped the unique collection value of Pink Shit Ape NFT and the visual cultural symbol of the Web3 world\n\n\nNo Rights Reserved, compliance to CC0.\n\n\nTwitter https://twitter.com/pinkshitape\n\nDiscord: https://discord.com/invite/nBVqJ5YUxF", - "externalUrl": "https://pinkshitape.com/", - "twitterUsername": "pinkshitape", - "discordUrl": "https://discord.gg/xcv6ktfapA", - "lastIngestedAt": "2023-03-20T02:39:12.000Z" - } - } - }, - { - "contract": { - "address": "0x22871b977aae43d44fe50df03f632134c3e3e490" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000001e1", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://nftmetadata.udid.network/api/nft/m/481", - "raw": "https://nftmetadata.udid.network/api/nft/m/481" - }, - "media": [ - { - "gateway": "", - "raw": "" - } - ], - "metadata": {}, - "timeLastUpdated": "2023-03-22T17:32:52.614Z", - "contractMetadata": { - "name": "UDID FREE PASS CARD", - "symbol": "UFPC", - "tokenType": "ERC721", - "contractDeployer": "0x3d002404deee63697fbef95657dce57335bf561d", - "deployedBlockNumber": 15184854, - "openSea": { - "floorPrice": 0.004, - "collectionName": "UDID Network Genesis Pass Card", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/a2d634de8432b4c8f69b0f02c0c7f859.jpg?w=500&auto=format", - "description": "UDID Network Genesis Pass Card(Full name: UDID Network NFT Genesis Pass Card), is a celebration and empowerment activity initiated by dnsDAO, is in order to motivate the early followers and supporters of dnsDAO and UDID Network community.\n\nUDID Network is the first product devised and launched by dnsDAO. The members who hold the Pass Card can enjoy corresponding rights and interests and will be applied in the future UDID Network. That is to say, the NFT Pass Card is A USE CASE for UDID Network!\n\nUDID Genesis Pass Card is not only NFT, a new use case, but also your exclusive unified DID. This is a grand experiment in Web3 community building. dnsDAO&UDID Network community members will participate and witness this carnival.", - "externalUrl": "https://nft.udid.network/", - "twitterUsername": "udidofficial", - "discordUrl": "https://discord.gg/3A4vg4T4yg", - "lastIngestedAt": "2023-03-20T04:10:17.000Z" - } - } - }, - { - "contract": { - "address": "0x25ed58c027921e14d86380ea2646e3a1b5c55a8b" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000012f4", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Dev #4852", - "description": "Developers around the world are tired of working and contributing their time and effort to enrich the top 1%. Join the movement that is community owned, building the future from the bottom up.", - "tokenUri": { - "gateway": "", - "raw": "data:application/json;base64,eyJuYW1lIjogIkRldiAjNDg1MiIsICJkZXNjcmlwdGlvbiI6ICJEZXZlbG9wZXJzIGFyb3VuZCB0aGUgd29ybGQgYXJlIHRpcmVkIG9mIHdvcmtpbmcgYW5kIGNvbnRyaWJ1dGluZyB0aGVpciB0aW1lIGFuZCBlZmZvcnQgdG8gZW5yaWNoIHRoZSB0b3AgMSUuIEpvaW4gdGhlIG1vdmVtZW50IHRoYXQgaXMgY29tbXVuaXR5IG93bmVkLCBidWlsZGluZyB0aGUgZnV0dXJlIGZyb20gdGhlIGJvdHRvbSB1cC4iLCAiaW1hZ2UiOiAiZGF0YTppbWFnZS9zdmcreG1sO2Jhc2U2NCxQSE4yWnlCNGJXeHVjejBpYUhSMGNEb3ZMM2QzZHk1M015NXZjbWN2TWpBd01DOXpkbWNpSUhCeVpYTmxjblpsUVhOd1pXTjBVbUYwYVc4OUluaE5hVzVaVFdsdUlHMWxaWFFpSUhacFpYZENiM2c5SWpBZ01DQXpOVEFnTXpVd0lqNDhjM1I1YkdVK0xtSmhjMlVnZXlCbWFXeHNPaUJpYkdGamF6c2dabTl1ZEMxbVlXMXBiSGs2SUhObGNtbG1PeUJtYjI1MExYTnBlbVU2SURFMGNIZzdJSDA4TDNOMGVXeGxQanh5WldOMElIZHBaSFJvUFNJeE1EQWxJaUJvWldsbmFIUTlJakV3TUNVaUlHWnBiR3c5SW5kb2FYUmxJaUF2UGp4MFpYaDBJSGc5SWpFd0lpQjVQU0l5TUNJZ1kyeGhjM005SW1KaGMyVWlQa0Z1WkhKdmFXUWdUV0Z5YzJodFlXeHNiM2M4TDNSbGVIUStQSFJsZUhRZ2VEMGlNVEFpSUhrOUlqUXdJaUJqYkdGemN6MGlZbUZ6WlNJK1FuSmhZMnRsZEhNOEwzUmxlSFErUEhSbGVIUWdlRDBpTVRBaUlIazlJall3SWlCamJHRnpjejBpWW1GelpTSStVR3hoZEdsdWRXMGdWSEpsYm1Ob1kyOWhkRHd2ZEdWNGRENDhkR1Y0ZENCNFBTSXhNQ0lnZVQwaU9EQWlJR05zWVhOelBTSmlZWE5sSWo1VGQybG1kRHd2ZEdWNGRENDhkR1Y0ZENCNFBTSXhNQ0lnZVQwaU1UQXdJaUJqYkdGemN6MGlZbUZ6WlNJK1ZsSThMM1JsZUhRK1BIUmxlSFFnZUQwaU1UQWlJSGs5SWpFeU1DSWdZMnhoYzNNOUltSmhjMlVpUGxSdmEzbHZQQzkwWlhoMFBqeDBaWGgwSUhnOUlqRXdJaUI1UFNJeE5EQWlJR05zWVhOelBTSmlZWE5sSWo1QlluTjBjbUZqZER3dmRHVjRkRDQ4ZEdWNGRDQjRQU0l4TUNJZ2VUMGlNVFl3SWlCamJHRnpjejBpWW1GelpTSStRMmhwYkd3OEwzUmxlSFErUEM5emRtYysifQ==" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/b59495581b1c969f0607d2dd04b34c13", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/b59495581b1c969f0607d2dd04b34c13", - "raw": "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaW5ZTWluIG1lZXQiIHZpZXdCb3g9IjAgMCAzNTAgMzUwIj48c3R5bGU+LmJhc2UgeyBmaWxsOiBibGFjazsgZm9udC1mYW1pbHk6IHNlcmlmOyBmb250LXNpemU6IDE0cHg7IH08L3N0eWxlPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IndoaXRlIiAvPjx0ZXh0IHg9IjEwIiB5PSIyMCIgY2xhc3M9ImJhc2UiPkFuZHJvaWQgTWFyc2htYWxsb3c8L3RleHQ+PHRleHQgeD0iMTAiIHk9IjQwIiBjbGFzcz0iYmFzZSI+QnJhY2tldHM8L3RleHQ+PHRleHQgeD0iMTAiIHk9IjYwIiBjbGFzcz0iYmFzZSI+UGxhdGludW0gVHJlbmNoY29hdDwvdGV4dD48dGV4dCB4PSIxMCIgeT0iODAiIGNsYXNzPSJiYXNlIj5Td2lmdDwvdGV4dD48dGV4dCB4PSIxMCIgeT0iMTAwIiBjbGFzcz0iYmFzZSI+VlI8L3RleHQ+PHRleHQgeD0iMTAiIHk9IjEyMCIgY2xhc3M9ImJhc2UiPlRva3lvPC90ZXh0Pjx0ZXh0IHg9IjEwIiB5PSIxNDAiIGNsYXNzPSJiYXNlIj5BYnN0cmFjdDwvdGV4dD48dGV4dCB4PSIxMCIgeT0iMTYwIiBjbGFzcz0iYmFzZSI+Q2hpbGw8L3RleHQ+PC9zdmc+", - "format": "svg+xml", - "bytes": 854 - } - ], - "metadata": { - "name": "Dev #4852", - "description": "Developers around the world are tired of working and contributing their time and effort to enrich the top 1%. Join the movement that is community owned, building the future from the bottom up.", - "image": "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHByZXNlcnZlQXNwZWN0UmF0aW89InhNaW5ZTWluIG1lZXQiIHZpZXdCb3g9IjAgMCAzNTAgMzUwIj48c3R5bGU+LmJhc2UgeyBmaWxsOiBibGFjazsgZm9udC1mYW1pbHk6IHNlcmlmOyBmb250LXNpemU6IDE0cHg7IH08L3N0eWxlPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9IndoaXRlIiAvPjx0ZXh0IHg9IjEwIiB5PSIyMCIgY2xhc3M9ImJhc2UiPkFuZHJvaWQgTWFyc2htYWxsb3c8L3RleHQ+PHRleHQgeD0iMTAiIHk9IjQwIiBjbGFzcz0iYmFzZSI+QnJhY2tldHM8L3RleHQ+PHRleHQgeD0iMTAiIHk9IjYwIiBjbGFzcz0iYmFzZSI+UGxhdGludW0gVHJlbmNoY29hdDwvdGV4dD48dGV4dCB4PSIxMCIgeT0iODAiIGNsYXNzPSJiYXNlIj5Td2lmdDwvdGV4dD48dGV4dCB4PSIxMCIgeT0iMTAwIiBjbGFzcz0iYmFzZSI+VlI8L3RleHQ+PHRleHQgeD0iMTAiIHk9IjEyMCIgY2xhc3M9ImJhc2UiPlRva3lvPC90ZXh0Pjx0ZXh0IHg9IjEwIiB5PSIxNDAiIGNsYXNzPSJiYXNlIj5BYnN0cmFjdDwvdGV4dD48dGV4dCB4PSIxMCIgeT0iMTYwIiBjbGFzcz0iYmFzZSI+Q2hpbGw8L3RleHQ+PC9zdmc+" - }, - "timeLastUpdated": "2023-03-06T17:45:43.098Z", - "contractMetadata": { - "name": "Devs for Revolution", - "symbol": "DEVS", - "totalSupply": "7887", - "tokenType": "ERC721", - "contractDeployer": "0x91d7a9e7c09477392290fe16c1b243e4a36d279a", - "deployedBlockNumber": 13153967, - "openSea": { - "floorPrice": 0.04, - "collectionName": "Devs for Revolution", - "safelistRequestStatus": "approved", - "imageUrl": "https://i.seadn.io/gae/6Jbode0t_bTO9MHYoYvjIW9nHENCxOs40EGg3Z5ptg4lLlD2z2WXEAIrjyV929aQnIi94hPL4VZ3Pl2NWOO_tSaO6gdjdrcMHrF9?w=500&auto=format", - "description": "Devs for Revolution grants token holders official Developer DAO membership.\n\nhttps://developerdao.notion.site/Getting-Started-with-Developer-DAO-2bddd332c51a4957b0b83f60f9fa4ebe", - "twitterUsername": "developer_dao", - "lastIngestedAt": "2023-03-20T11:08:17.000Z" - } - } - }, - { - "contract": { - "address": "0x2e8ac3401a537499660d270a70e01a0019cac0e6" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000001", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "ETDOG #1", - "description": "", - "tokenUri": { - "gateway": "https://nft-1316913824.cos.accelerate.myqcloud.com/txt0/1.json", - "raw": "https://nft-1316913824.cos.accelerate.myqcloud.com/txt0/1.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/e23bdc7c9ec9761c9492f768dd36641f", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/e23bdc7c9ec9761c9492f768dd36641f", - "raw": "https://nft-1316913824.cos.accelerate.myqcloud.com/pic0/1.png", - "format": "png", - "bytes": 349508 - } - ], - "metadata": { - "name": "ETDOG #1", - "image": "https://nft-1316913824.cos.accelerate.myqcloud.com/pic0/1.png", - "attributes": [] - }, - "timeLastUpdated": "2023-03-20T20:03:17.683Z", - "contractMetadata": { - "name": "ETDOG", - "symbol": "ETDOG", - "totalSupply": "15", - "tokenType": "ERC721", - "contractDeployer": "0x7c4ae3e30b842419a7d9d8c8f5333b3595d6f3b8", - "deployedBlockNumber": 16668958, - "openSea": { - "floorPrice": 0, - "collectionName": "ETDOG", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/1b4b4121d30e8dc3d1b38180a08f62c5.jpg?w=500&auto=format", - "description": "ETDOG NFT is a collection of 10,000 randomly generated NFTs running on the Ethereum blockchain. Holding ETDOG NFT will grant membership to the ETDOG Flying Club, a club that combines flight, sports, fashion, games, culture and Web3 innovation community. Holders also get top-tier access to exclusive drops, events, experiences, and more. In the Mint ETDOG NFT blind box, open a rare or special NFT to get rich gifts and identities!", - "externalUrl": "https://www.etdog.com", - "lastIngestedAt": "2023-03-20T19:07:32.000Z" - } - } - }, - { - "contract": { - "address": "0x2f0c52c69f374ba50940776e588933319091c408" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000000e2", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Mikamoto", - "description": "MIKAMOTO (also known as The Mikamoto Card) is a mastercopy tribute to the original RAREPEPE Nakamoto Card, the very first NFT in the RarePepe collection, created by anonymous artist Mike in September 2016. MIKAMOTO is the first NFT on the Mika Blockchain. It has a supply of 300 cards, mirroring the supply of the original RAREPEPE. ", - "tokenUri": { - "gateway": "https://arweave.net/3zGaG4wefxBk9gvQ_Y76IQM8UTeW75tphpM6DlOcGck", - "raw": "https://arweave.net/3zGaG4wefxBk9gvQ_Y76IQM8UTeW75tphpM6DlOcGck" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/88e8a54c5b4d15ff7d7901e655a9a824", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/88e8a54c5b4d15ff7d7901e655a9a824", - "raw": "https://arweave.net/eMOzh-tEJtyybmUyN7tm2tojD0FC8DCwxCYMZ_0TCGg", - "format": "gif", - "bytes": 999699 - } - ], - "metadata": { - "name": "Mikamoto", - "image": "https://arweave.net/eMOzh-tEJtyybmUyN7tm2tojD0FC8DCwxCYMZ_0TCGg", - "description": "MIKAMOTO (also known as The Mikamoto Card) is a mastercopy tribute to the original RAREPEPE Nakamoto Card, the very first NFT in the RarePepe collection, created by anonymous artist Mike in September 2016. MIKAMOTO is the first NFT on the Mika Blockchain. It has a supply of 300 cards, mirroring the supply of the original RAREPEPE. ", - "attributes": [ - { - "value": "WHOISIT", - "trait_type": "Artist" - } - ], - "media": { - "mimeType": "video/mp4", - "size": "26372698", - "uri": "https://arweave.net/FM74QSgAjzv-eJNgk3gGVmbrmNWc1OWGEt_IIFsGB0U", - "dimensions": "800x1120" - } - }, - "timeLastUpdated": "2023-03-20T20:03:13.230Z", - "contractMetadata": { - "name": "Seeing Red", - "symbol": "CNRED", - "tokenType": "ERC721", - "contractDeployer": "0x0d6f7bc54dc6b4dfb2501e229325cb7bfe773c19", - "deployedBlockNumber": 16313065, - "openSea": { - "floorPrice": 0.042, - "collectionName": "Seeing Red - Mikaboshi", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/0b2ca71fb7fd529fc22aeed5044fcb17.png?w=500&auto=format", - "description": "Mikaboshi community minters.\nget involved at (seeingred.io)[https://seeingred.io]", - "lastIngestedAt": "2023-03-12T11:47:47.000Z" - } - } - }, - { - "contract": { - "address": "0x31c823260528ba98e3bf797b2add2302af097392" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000ef0", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Voxel Ville #3824", - "description": "Voxel Ville is a digitized village that exists on the Ethereum blockchain in a metaverse very, very far away.", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmPxtXH9Z7ixyyuCzTGJjZYqxYgQMZjpgXyVtq9VebWL2f/3824", - "raw": "ipfs://QmPxtXH9Z7ixyyuCzTGJjZYqxYgQMZjpgXyVtq9VebWL2f/3824" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/8df3e2fc353993cace2f718cfd6bd886", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/8df3e2fc353993cace2f718cfd6bd886", - "raw": "ipfs://QmNr7BwsDo2xcAHUZNX5Y4ZQ2KmDCKfZA5Jg6fQ874zgsA/3824.png", - "format": "png", - "bytes": 22365600 - } - ], - "metadata": { - "name": "Voxel Ville #3824", - "description": "Voxel Ville is a digitized village that exists on the Ethereum blockchain in a metaverse very, very far away.", - "image": "ipfs://QmNr7BwsDo2xcAHUZNX5Y4ZQ2KmDCKfZA5Jg6fQ874zgsA/3824.png", - "external_url": "https://www.voxelville.io/", - "attributes": [ - { - "value": "Monkey", - "trait_type": "Animal 1" - }, - { - "value": "None", - "trait_type": "Animal 2" - }, - { - "value": "Apartment A:4", - "trait_type": "Building Type" - }, - { - "value": "20.5m x 20.5m", - "trait_type": "Land Size" - }, - { - "value": "Downtown Japan", - "trait_type": "Location" - }, - { - "value": "Vending Machine", - "trait_type": "Misc 1" - }, - { - "value": "None", - "trait_type": "Misc 2" - }, - { - "value": "None", - "trait_type": "Misc 3" - }, - { - "value": "Naruto", - "trait_type": "Resident 1" - }, - { - "value": "Itsuki", - "trait_type": "Resident 2" - }, - { - "value": "Autumn", - "trait_type": "Season" - }, - { - "value": "None", - "trait_type": "Vehicle 1" - }, - { - "value": "Taxi", - "trait_type": "Vehicle 2" - } - ] - }, - "timeLastUpdated": "2023-03-06T23:43:30.485Z", - "contractMetadata": { - "name": "Voxel Ville", - "symbol": "VOVI", - "tokenType": "ERC721", - "contractDeployer": "0x6a29cade663a3a9bd8e865ac3f6153be0d2a12ec", - "deployedBlockNumber": 13322248, - "openSea": { - "floorPrice": 0.0284, - "collectionName": "Voxel Ville Official", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gae/W7gaosyJkDOSBcGBYAK597HWlEUG6Xa30zxLbTcUID-Z22lY-MlAKg2HovnURlyFJKbYbc4T4FIbsNqcIf4HmWbwiOf_SA95N6Bolg?w=500&auto=format", - "description": "Voxel Ville is a digitized village that exists on the Ethereum blockchain in a metaverse very, very far away.\n\n[Voxel Ville Avatars](https://opensea.io/collection/voxel-ville-avatars)\n\n[Discord](https://discord.gg/voxelville) | [Website](https://voxelville.io/) | [Twitter](https://twitter.com/VilleVoxel)", - "externalUrl": "https://www.voxelville.io/", - "twitterUsername": "VilleVoxel", - "discordUrl": "https://discord.gg/ZKvcW4PbBp", - "lastIngestedAt": "2023-03-11T06:20:17.000Z" - } - } - }, - { - "contract": { - "address": "0x338d8368ba63f218fceb32cf142497a374babe32" - }, - "id": { - "tokenId": "0x000000000000000000000000d8da6bf26964af9d7eed9e03e53415d37aa96045", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045", - "description": "[ETHouse for 0xd8da6bf26964af9d7eed9e03e53415d37aa96045](https://ethouses.io/0xd8da6bf26964af9d7eed9e03e53415d37aa96045). A 100% on-chain, extensible, generative art project, where every Ethereum address is represented by a unique NFT.", - "tokenUri": { - "gateway": "https://ethouses.io/m/0xd8da6bf26964af9d7eed9e03e53415d37aa96045", - "raw": "https://ethouses.io/m/0xd8da6bf26964af9d7eed9e03e53415d37aa96045" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/3ec7644933f18fb95a3d41e80a6c6626", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/3ec7644933f18fb95a3d41e80a6c6626", - "raw": "https://firebasestorage.googleapis.com/v0/b/ethouses-90076.appspot.com/o/houses%2F0xd8da6bf26964af9d7eed9e03e53415d37aa96045.png?alt=media", - "format": "png", - "bytes": 20008 - } - ], - "metadata": { - "name": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045", - "description": "[ETHouse for 0xd8da6bf26964af9d7eed9e03e53415d37aa96045](https://ethouses.io/0xd8da6bf26964af9d7eed9e03e53415d37aa96045). A 100% on-chain, extensible, generative art project, where every Ethereum address is represented by a unique NFT.", - "image": "https://firebasestorage.googleapis.com/v0/b/ethouses-90076.appspot.com/o/houses%2F0xd8da6bf26964af9d7eed9e03e53415d37aa96045.png?alt=media", - "animation_url": "https://ethouses.io/h/0xd8da6bf26964af9d7eed9e03e53415d37aa96045", - "external_url": "https://ethouses.io/0xd8da6bf26964af9d7eed9e03e53415d37aa96045", - "attributes": [ - { - "value": "LIGHT", - "trait_type": "side" - }, - { - "value": "277", - "trait_type": "DISTANCETOSIDE" - }, - { - "value": 277, - "max_value": 300, - "trait_type": "distanceToSide" - }, - { - "value": "323", - "trait_type": "DISTANCETOZERO" - }, - { - "value": 323, - "max_value": 600, - "trait_type": "distanceToZero" - }, - { - "value": "277", - "trait_type": "DISTANCETOF" - }, - { - "value": 277, - "max_value": 600, - "trait_type": "distanceToF" - }, - { - "value": "5", - "trait_type": "MAXREPETITION" - }, - { - "value": 5, - "max_value": 40, - "trait_type": "maxRepetition" - }, - { - "value": "2", - "trait_type": "MAXSTRAIGHT" - }, - { - "value": 2, - "max_value": 16, - "trait_type": "maxStraight" - }, - { - "value": "#15D37A", - "trait_type": "wallFrontColor" - }, - { - "value": "#D8DA6B", - "trait_type": "roofFrontColor" - }, - { - "value": "#F26964", - "trait_type": "roofBackColor" - }, - { - "value": "#A96045", - "trait_type": "wallBackColor" - }, - { - "display_type": "number", - "value": 2, - "trait_type": "numberOfHouseColors" - }, - { - "value": "rainbowWindows" - }, - { - "value": "charm" - } - ] - }, - "timeLastUpdated": "2023-03-07T03:30:59.246Z", - "contractMetadata": { - "name": "ETHouses", - "symbol": "HOUSE", - "totalSupply": "53", - "tokenType": "ERC721", - "contractDeployer": "0x92a6f975cbb957677e44877008b4f85094350810", - "deployedBlockNumber": 13125253, - "openSea": { - "floorPrice": 0, - "collectionName": "ETHouses", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gae/u65hUdHTxZx7tODEO3obnL9RwVfllQb5noBuBWmKI9MiYf50KBCvZ2c-g9xrKD2ez0fHLbD_LYV8DdYHP2YV8ZiZlzRiwlpwsP_I9ts?w=500&auto=format", - "description": "[ETHouses](https://ethouses.io) is a 100% on-chain, extensible, generative art project, where every Ethereum address is represented by a unique NFT, and only the address owner can claim it.\n", - "externalUrl": "https://ethouses.io/", - "twitterUsername": "ethouses", - "lastIngestedAt": "2023-03-22T20:38:03.000Z" - } - } - }, - { - "contract": { - "address": "0x36018502fff2e816a04988034f80a19027e24f01" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000007", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "http://api.bored-ape-solana-club-nft.xyz/ipfs/7", - "raw": "http://api.bored-ape-solana-club-nft.xyz/ipfs/7" - }, - "media": [ - { - "gateway": "", - "raw": "" - } - ], - "metadata": {}, - "timeLastUpdated": "2023-03-21T08:42:19.961Z", - "contractMetadata": { - "name": "NotBoredApeSolanaClub", - "symbol": "NOBASC", - "totalSupply": "24", - "tokenType": "ERC721", - "contractDeployer": "0x1b4af14fadf08071006194869992cec46952da2d", - "deployedBlockNumber": 14800561, - "openSea": { - "floorPrice": 0, - "collectionName": "NotBoredApeSolanaClub", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gae/-btilklEWtHxQ0ZlyKt9CVvSHiJzi0YhxqpTJIu-6YrfdmSjqKqYBSnkRUa7pSkhoTHs0pX7182GiGlkBCRZ_9b-eeYEW1kVjj3A?w=500&auto=format", - "description": "[Mint on the website](https://bored-ape-solana-club.xyz)\n\nThe intention was always set to be a community-driven NFT project full of 6001 Bored Apes hand drawn, not matching any Ethereum BAYC trait combinations. BASC is not affiliated with Yuga Labs.\n", - "externalUrl": "https://bored-ape-solana-club.xyz", - "lastIngestedAt": "2023-03-11T04:16:32.000Z" - } - } - }, - { - "contract": { - "address": "0x39ed051a1a3a1703b5e0557b122ec18365dbc184" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000742", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "SUPERPUNK #1858", - "description": "", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmXJX7YaipcR6gtRJtosHv85bWm5D1UVxuyB6MCBXXfBc6/1858", - "raw": "https://gateway.pinata.cloud/ipfs/QmXJX7YaipcR6gtRJtosHv85bWm5D1UVxuyB6MCBXXfBc6/1858" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/ceebabec715fbae5b9f30cdc4151b24f", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/ceebabec715fbae5b9f30cdc4151b24f", - "raw": "https://gateway.pinata.cloud/ipfs/QmeGktsBhTnAY7qJtD3gbnH7AU3NGLAEJEULuGBNxLDvhU/1858.png", - "format": "png", - "bytes": 4429 - } - ], - "metadata": { - "name": "SUPERPUNK #1858", - "image": "https://gateway.pinata.cloud/ipfs/QmeGktsBhTnAY7qJtD3gbnH7AU3NGLAEJEULuGBNxLDvhU/1858.png", - "attributes": [ - { - "value": "Female Young Black", - "trait_type": "Base" - }, - { - "value": "Bandana", - "trait_type": "Attribute" - }, - { - "value": "Golden Teeth", - "trait_type": "Attribute" - } - ] - }, - "timeLastUpdated": "2023-03-06T23:43:27.705Z", - "contractMetadata": { - "name": "SUPERPUNK", - "symbol": "SP", - "totalSupply": "1510", - "tokenType": "ERC721", - "contractDeployer": "0x8421a482a109f873be54fd76ca830755131c3e6c", - "deployedBlockNumber": 12070508, - "openSea": { - "floorPrice": 0.15, - "collectionName": "SUPERPUNK", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gae/l47UHiv0j2GnAvn_5L4PN5GHbNntQOmqej4bNOlxv8MlkJJgyyV4n1ZCoWfhuovzZ-TjJ3FD7r0vLyTbMznmDO1CTLogTKPgz8K2?w=500&auto=format", - "description": "One of the first ever NFTs that will be cross chain, have owner governance and offer staking to holders. Do more with your art. Get Superpunkish.\n", - "externalUrl": "https://www.superpunks.club/", - "twitterUsername": "SuperPunks_NFT", - "discordUrl": "https://discord.gg/2zGuSRCq", - "lastIngestedAt": "2023-03-11T06:23:36.000Z" - } - } - }, - { - "contract": { - "address": "0x3cb151f5ff77cdce228796fed768d9109f7e504f" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000005", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Present", - "description": "One Christmas present.", - "tokenUri": { - "gateway": "https://us-central1-thing-1d2be.cloudfunctions.net/getThing?thingId=DSXT9JLyq63U8GqYUqwu", - "raw": "https://us-central1-thing-1d2be.cloudfunctions.net/getThing?thingId=DSXT9JLyq63U8GqYUqwu" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/522e353825266917b90b5d8a91fc3b0e", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/522e353825266917b90b5d8a91fc3b0e", - "raw": "https://firebasestorage.googleapis.com/v0/b/thing-1d2be.appspot.com/o/token%2Fasset-1575467890213?alt=media&token=fd4203cc-0b7b-4be7-9b98-c9d0b242c78a", - "format": "jpeg", - "bytes": 88516 - } - ], - "metadata": { - "image": "https://firebasestorage.googleapis.com/v0/b/thing-1d2be.appspot.com/o/token%2Fasset-1575467890213?alt=media&token=fd4203cc-0b7b-4be7-9b98-c9d0b242c78a", - "isForSale": true, - "description": "One Christmas present.", - "contractAddress": "", - "type": "ERC721", - "external_link": "https://mintbase.io/minted//DSXT9JLyq63U8GqYUqwu", - "minter": "0x9D31e30003f253563Ff108BC60B16Fdf2c93abb5", - "mintedOn": { - "_seconds": 1575467939, - "_nanoseconds": 810000000 - }, - "price": "0", - "name": "Present", - "minted": "Minted on Mintbase.io", - "attributes": [ - { - "value": "Present", - "trait_type": "item" - }, - { - "value": 2, - "trait_type": "level" - }, - { - "display_type": "number", - "value": 1, - "trait_type": "generation" - } - ] - }, - "timeLastUpdated": "2023-03-06T17:46:08.083Z", - "contractMetadata": { - "name": "Present", - "symbol": "XMAS", - "totalSupply": "5", - "tokenType": "ERC721", - "contractDeployer": "0x9d31e30003f253563ff108bc60b16fdf2c93abb5", - "deployedBlockNumber": 9049620, - "openSea": { - "floorPrice": 0, - "collectionName": "Present", - "safelistRequestStatus": "not_requested", - "lastIngestedAt": "2023-03-11T10:20:49.000Z" - } - } - }, - { - "contract": { - "address": "0x3ceb6868bfbf99f6b76fe5bb37343c075677c698" - }, - "id": { - "tokenId": "0x000000000000000000000000000000000000000000000000000000000000160c", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "V1 Phunk #5644", - "description": "", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmYxKmX5SXfGxwgrrfNvxxEXdbxaTQn9yy3JQx15p5cwgo/5644", - "raw": "ipfs://QmYxKmX5SXfGxwgrrfNvxxEXdbxaTQn9yy3JQx15p5cwgo/5644" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/8b26eb5c46c22b0d115f3b3c22efc237", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/8b26eb5c46c22b0d115f3b3c22efc237", - "raw": "ipfs://QmU6vXKqfVonu6Uk63oWyEJtKbx5FUX2ZEZ3X1bn3NJzoX/5644.png", - "format": "png", - "bytes": 1396 - } - ], - "metadata": { - "name": "V1 Phunk #5644", - "description": "", - "image": "ipfs://QmU6vXKqfVonu6Uk63oWyEJtKbx5FUX2ZEZ3X1bn3NJzoX/5644.png", - "attributes": [ - { - "value": 5644, - "trait_type": "Punk#" - }, - { - "value": "Female", - "trait_type": "Type" - }, - { - "value": "light", - "trait_type": "Skin Tone" - }, - { - "value": "", - "trait_type": "Hat" - }, - { - "value": "Messy Hair", - "trait_type": "Hair" - }, - { - "value": "VR", - "trait_type": "Eyes" - }, - { - "value": "", - "trait_type": "Eyes (makeup)" - }, - { - "value": "", - "trait_type": "Blemishes" - }, - { - "value": "", - "trait_type": "Nose" - }, - { - "value": "", - "trait_type": "Ears" - }, - { - "value": "", - "trait_type": "Mouth" - }, - { - "value": "", - "trait_type": "Mouth (makeup)" - }, - { - "value": "", - "trait_type": "Mouth Prop" - }, - { - "value": "", - "trait_type": "Beard" - }, - { - "value": "", - "trait_type": "Neck" - } - ] - }, - "timeLastUpdated": "2023-03-07T02:35:18.131Z", - "contractMetadata": { - "name": "V1 Phunks", - "symbol": "V1PHNK", - "totalSupply": "9500", - "tokenType": "ERC721", - "contractDeployer": "0x6583ec53bf3dc210b05f718d75a3194d9bed08c0", - "deployedBlockNumber": 14247265, - "openSea": { - "floorPrice": 0.006, - "collectionName": "V1 Phunks", - "safelistRequestStatus": "approved", - "imageUrl": "https://i.seadn.io/gae/8ZTSbA9JgMoWOIAlOKB51UVTD29kbwVZJVjAEJBUDsoi54GTJ_58nz0mt2WUb4LR-cBnfHLlY0GD-mk0NY-ZpvaJzxLO_zUEjobj1g?w=500&auto=format", - "description": "", - "externalUrl": "https://v1phunks.org/", - "twitterUsername": "v1phunks", - "lastIngestedAt": "2023-03-11T10:24:14.000Z" - } - } - }, - { - "contract": { - "address": "0x3d578dc45a7838cb9010757c73a5830b89d95c05" - }, - "id": { - "tokenId": "0x0000000000001ff01ff0000000000fe00fe0000000001ff01ff0000000000000", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "PXC-256 #126", - "description": "", - "tokenUri": { - "gateway": "", - "raw": "data:application/json;base64,eyJuYW1lIjoiUFhDLTI1NiAjMTI2IiwgImltYWdlIjogImRhdGE6aW1hZ2Uvc3ZnK3htbDt1dGY4LDxzdmcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyB2ZXJzaW9uPScxLjInIHZpZXdCb3g9JzAgMCAxNiAxNicgc2hhcGUtcmVuZGVyaW5nPSdjcmlzcEVkZ2VzJyB3aWR0aD0nNTEycHgnIGhlaWdodD0nNTEycHgnPjxyZWN0IHg9JzAnIHk9JzAnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxJyB5PScwJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMicgeT0nMCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzMnIHk9JzAnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSc0JyB5PScwJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nNScgeT0nMCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzYnIHk9JzAnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSc3JyB5PScwJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nOCcgeT0nMCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzknIHk9JzAnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxMCcgeT0nMCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzExJyB5PScwJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTInIHk9JzAnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxMycgeT0nMCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzE0JyB5PScwJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTUnIHk9JzAnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScwJyB5PScxJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMScgeT0nMScgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzInIHk9JzEnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSczJyB5PScxJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nNCcgeT0nMScgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzUnIHk9JzEnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSc2JyB5PScxJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nNycgeT0nMScgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzgnIHk9JzEnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSc5JyB5PScxJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTAnIHk9JzEnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxMScgeT0nMScgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzEyJyB5PScxJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTMnIHk9JzEnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxNCcgeT0nMScgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzE1JyB5PScxJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMCcgeT0nMicgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzEnIHk9JzInIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScyJyB5PScyJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMycgeT0nMicgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzQnIHk9JzInIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSc1JyB5PScyJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nNicgeT0nMicgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzcnIHk9JzInIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSc4JyB5PScyJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nOScgeT0nMicgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzEwJyB5PScyJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTEnIHk9JzInIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxMicgeT0nMicgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzEzJyB5PScyJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTQnIHk9JzInIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxNScgeT0nMicgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzAnIHk9JzMnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxJyB5PSczJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMicgeT0nMycgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzMnIHk9JzMnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyMwMDAwMDAnLz48cmVjdCB4PSc0JyB5PSczJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjMDAwMDAwJy8+PHJlY3QgeD0nNScgeT0nMycgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nIzAwMDAwMCcvPjxyZWN0IHg9JzYnIHk9JzMnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyMwMDAwMDAnLz48cmVjdCB4PSc3JyB5PSczJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjMDAwMDAwJy8+PHJlY3QgeD0nOCcgeT0nMycgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nIzAwMDAwMCcvPjxyZWN0IHg9JzknIHk9JzMnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyMwMDAwMDAnLz48cmVjdCB4PScxMCcgeT0nMycgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nIzAwMDAwMCcvPjxyZWN0IHg9JzExJyB5PSczJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjMDAwMDAwJy8+PHJlY3QgeD0nMTInIHk9JzMnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxMycgeT0nMycgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzE0JyB5PSczJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTUnIHk9JzMnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScwJyB5PSc0JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMScgeT0nNCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzInIHk9JzQnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSczJyB5PSc0JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjMDAwMDAwJy8+PHJlY3QgeD0nNCcgeT0nNCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nIzAwMDAwMCcvPjxyZWN0IHg9JzUnIHk9JzQnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyMwMDAwMDAnLz48cmVjdCB4PSc2JyB5PSc0JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjMDAwMDAwJy8+PHJlY3QgeD0nNycgeT0nNCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nIzAwMDAwMCcvPjxyZWN0IHg9JzgnIHk9JzQnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyMwMDAwMDAnLz48cmVjdCB4PSc5JyB5PSc0JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjMDAwMDAwJy8+PHJlY3QgeD0nMTAnIHk9JzQnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyMwMDAwMDAnLz48cmVjdCB4PScxMScgeT0nNCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nIzAwMDAwMCcvPjxyZWN0IHg9JzEyJyB5PSc0JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTMnIHk9JzQnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxNCcgeT0nNCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzE1JyB5PSc0JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMCcgeT0nNScgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzEnIHk9JzUnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScyJyB5PSc1JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMycgeT0nNScgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzQnIHk9JzUnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSc1JyB5PSc1JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nNicgeT0nNScgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzcnIHk9JzUnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSc4JyB5PSc1JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nOScgeT0nNScgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzEwJyB5PSc1JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTEnIHk9JzUnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxMicgeT0nNScgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzEzJyB5PSc1JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTQnIHk9JzUnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxNScgeT0nNScgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzAnIHk9JzYnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxJyB5PSc2JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMicgeT0nNicgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzMnIHk9JzYnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSc0JyB5PSc2JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nNScgeT0nNicgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzYnIHk9JzYnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSc3JyB5PSc2JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nOCcgeT0nNicgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzknIHk9JzYnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxMCcgeT0nNicgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzExJyB5PSc2JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTInIHk9JzYnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxMycgeT0nNicgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzE0JyB5PSc2JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTUnIHk9JzYnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScwJyB5PSc3JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMScgeT0nNycgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzInIHk9JzcnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSczJyB5PSc3JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nNCcgeT0nNycgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nIzAwMDAwMCcvPjxyZWN0IHg9JzUnIHk9JzcnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyMwMDAwMDAnLz48cmVjdCB4PSc2JyB5PSc3JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjMDAwMDAwJy8+PHJlY3QgeD0nNycgeT0nNycgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nIzAwMDAwMCcvPjxyZWN0IHg9JzgnIHk9JzcnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyMwMDAwMDAnLz48cmVjdCB4PSc5JyB5PSc3JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjMDAwMDAwJy8+PHJlY3QgeD0nMTAnIHk9JzcnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyMwMDAwMDAnLz48cmVjdCB4PScxMScgeT0nNycgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzEyJyB5PSc3JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTMnIHk9JzcnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxNCcgeT0nNycgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzE1JyB5PSc3JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMCcgeT0nOCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzEnIHk9JzgnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScyJyB5PSc4JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMycgeT0nOCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzQnIHk9JzgnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyMwMDAwMDAnLz48cmVjdCB4PSc1JyB5PSc4JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjMDAwMDAwJy8+PHJlY3QgeD0nNicgeT0nOCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nIzAwMDAwMCcvPjxyZWN0IHg9JzcnIHk9JzgnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyMwMDAwMDAnLz48cmVjdCB4PSc4JyB5PSc4JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjMDAwMDAwJy8+PHJlY3QgeD0nOScgeT0nOCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nIzAwMDAwMCcvPjxyZWN0IHg9JzEwJyB5PSc4JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjMDAwMDAwJy8+PHJlY3QgeD0nMTEnIHk9JzgnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxMicgeT0nOCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzEzJyB5PSc4JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTQnIHk9JzgnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxNScgeT0nOCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzAnIHk9JzknIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxJyB5PSc5JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMicgeT0nOScgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzMnIHk9JzknIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSc0JyB5PSc5JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nNScgeT0nOScgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzYnIHk9JzknIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSc3JyB5PSc5JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nOCcgeT0nOScgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzknIHk9JzknIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxMCcgeT0nOScgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzExJyB5PSc5JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTInIHk9JzknIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxMycgeT0nOScgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzE0JyB5PSc5JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTUnIHk9JzknIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScwJyB5PScxMCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzEnIHk9JzEwJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMicgeT0nMTAnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSczJyB5PScxMCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzQnIHk9JzEwJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nNScgeT0nMTAnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSc2JyB5PScxMCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzcnIHk9JzEwJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nOCcgeT0nMTAnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSc5JyB5PScxMCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzEwJyB5PScxMCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzExJyB5PScxMCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzEyJyB5PScxMCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzEzJyB5PScxMCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzE0JyB5PScxMCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzE1JyB5PScxMCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzAnIHk9JzExJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMScgeT0nMTEnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScyJyB5PScxMScgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzMnIHk9JzExJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjMDAwMDAwJy8+PHJlY3QgeD0nNCcgeT0nMTEnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyMwMDAwMDAnLz48cmVjdCB4PSc1JyB5PScxMScgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nIzAwMDAwMCcvPjxyZWN0IHg9JzYnIHk9JzExJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjMDAwMDAwJy8+PHJlY3QgeD0nNycgeT0nMTEnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyMwMDAwMDAnLz48cmVjdCB4PSc4JyB5PScxMScgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nIzAwMDAwMCcvPjxyZWN0IHg9JzknIHk9JzExJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjMDAwMDAwJy8+PHJlY3QgeD0nMTAnIHk9JzExJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjMDAwMDAwJy8+PHJlY3QgeD0nMTEnIHk9JzExJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjMDAwMDAwJy8+PHJlY3QgeD0nMTInIHk9JzExJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTMnIHk9JzExJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTQnIHk9JzExJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTUnIHk9JzExJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMCcgeT0nMTInIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxJyB5PScxMicgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzInIHk9JzEyJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMycgeT0nMTInIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyMwMDAwMDAnLz48cmVjdCB4PSc0JyB5PScxMicgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nIzAwMDAwMCcvPjxyZWN0IHg9JzUnIHk9JzEyJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjMDAwMDAwJy8+PHJlY3QgeD0nNicgeT0nMTInIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyMwMDAwMDAnLz48cmVjdCB4PSc3JyB5PScxMicgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nIzAwMDAwMCcvPjxyZWN0IHg9JzgnIHk9JzEyJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjMDAwMDAwJy8+PHJlY3QgeD0nOScgeT0nMTInIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyMwMDAwMDAnLz48cmVjdCB4PScxMCcgeT0nMTInIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyMwMDAwMDAnLz48cmVjdCB4PScxMScgeT0nMTInIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyMwMDAwMDAnLz48cmVjdCB4PScxMicgeT0nMTInIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxMycgeT0nMTInIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxNCcgeT0nMTInIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxNScgeT0nMTInIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScwJyB5PScxMycgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzEnIHk9JzEzJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMicgeT0nMTMnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSczJyB5PScxMycgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzQnIHk9JzEzJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nNScgeT0nMTMnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSc2JyB5PScxMycgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzcnIHk9JzEzJyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nOCcgeT0nMTMnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSc5JyB5PScxMycgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzEwJyB5PScxMycgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzExJyB5PScxMycgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzEyJyB5PScxMycgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzEzJyB5PScxMycgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzE0JyB5PScxMycgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzE1JyB5PScxMycgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzAnIHk9JzE0JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMScgeT0nMTQnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScyJyB5PScxNCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzMnIHk9JzE0JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nNCcgeT0nMTQnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSc1JyB5PScxNCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzYnIHk9JzE0JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nNycgeT0nMTQnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSc4JyB5PScxNCcgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzknIHk9JzE0JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTAnIHk9JzE0JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTEnIHk9JzE0JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTInIHk9JzE0JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTMnIHk9JzE0JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTQnIHk9JzE0JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMTUnIHk9JzE0JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMCcgeT0nMTUnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxJyB5PScxNScgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzInIHk9JzE1JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nMycgeT0nMTUnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSc0JyB5PScxNScgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzUnIHk9JzE1JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nNicgeT0nMTUnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PSc3JyB5PScxNScgd2lkdGg9JzEnIGhlaWdodD0nMScgZmlsbD0nI0ZGRkZGRicvPjxyZWN0IHg9JzgnIHk9JzE1JyB3aWR0aD0nMScgaGVpZ2h0PScxJyBmaWxsPScjRkZGRkZGJy8+PHJlY3QgeD0nOScgeT0nMTUnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxMCcgeT0nMTUnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxMScgeT0nMTUnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxMicgeT0nMTUnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxMycgeT0nMTUnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxNCcgeT0nMTUnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48cmVjdCB4PScxNScgeT0nMTUnIHdpZHRoPScxJyBoZWlnaHQ9JzEnIGZpbGw9JyNGRkZGRkYnLz48L3N2Zz4iLCJkZXNjcmlwdGlvbiI6IiIsImF0dHJpYnV0ZXMiOiBbeyJ0cmFpdF90eXBlIjogIkF1dGhvciBXYWxsZXQiLCJ2YWx1ZSI6ICIweDk5MzUwZTVlYmI3MzU2OWI2ZmMzN2EyZDY4YTc4Yjg4NjkxYTc1YzYifV19" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/0ad78ed5e3cd61d793e4dd47137badaa", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/0ad78ed5e3cd61d793e4dd47137badaa", - "raw": "data:image/svg+xml;utf8,", - "format": "svg+xml", - "bytes": 14434 - } - ], - "metadata": { - "name": "PXC-256 #126", - "image": "data:image/svg+xml;utf8,", - "description": "", - "attributes": [ - { - "value": "0x99350e5ebb73569b6fc37a2d68a78b88691a75c6", - "trait_type": "Author Wallet" - } - ] - }, - "timeLastUpdated": "2023-03-06T17:45:43.130Z", - "contractMetadata": { - "name": "PixelChain 256", - "symbol": "PXC256", - "totalSupply": "2048", - "tokenType": "ERC721", - "contractDeployer": "0xf2419e6a58c0a772aeb4d80948411d6fbb181eef", - "deployedBlockNumber": 15746487, - "openSea": { - "floorPrice": 0.0031, - "collectionName": "PixelChain 256", - "safelistRequestStatus": "disabled_top_trending", - "imageUrl": "https://i.seadn.io/gcs/files/92d5e4acf0cd3affe0f142787c84a04c.png?w=500&auto=format", - "description": "PixelChain 256 is a collection of 2048 NFTs where artist create 16x16 pixel art 100% stored on-chain.\r\n\r\nThe artworks are encoded entirely in the tokenID, making each NFT unique and impossible to be replicated by others.\r\nOne key feature of PixelChain 256 is that it doesn’t depend on any backend to display the visuals. The image generation is done entirely by the smart contract, and all the metadata is stored on the Ethereum blockchain.", - "externalUrl": "https://pxc256.art/", - "twitterUsername": "Pixelchain_Dapp", - "lastIngestedAt": "2023-03-11T14:08:13.000Z" - } - } - }, - { - "contract": { - "address": "0x41ac9fee31050bb72a5eea1435a21b22589697da" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000006c1", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Sports Thing #1729", - "description": "VSP partner claim with Thingdoms.", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmcTL4sttzJBGScZVMs5sZE3bnEXHwJ9DQ6QZDhu5AeSMS/1729", - "raw": "ipfs://QmcTL4sttzJBGScZVMs5sZE3bnEXHwJ9DQ6QZDhu5AeSMS/1729" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/4569421bd2030a5d79eaac0e59e6ddba", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/4569421bd2030a5d79eaac0e59e6ddba", - "raw": "ipfs://QmPAA3sMRe8P9bngoAxToMxqmYzAbh96U6FHk27FCaqKWc/1729.jpeg", - "format": "jpeg", - "bytes": 887001 - } - ], - "metadata": { - "name": "Sports Thing #1729", - "image": "ipfs://QmPAA3sMRe8P9bngoAxToMxqmYzAbh96U6FHk27FCaqKWc/1729.jpeg", - "description": "VSP partner claim with Thingdoms.", - "attributes": [ - { - "value": "blue", - "trait_type": "vsp_base" - }, - { - "value": "magic soup", - "trait_type": "thingdoms_base" - }, - { - "value": "football", - "trait_type": "sport" - }, - { - "value": "common", - "trait_type": "tier" - }, - { - "value": "9", - "trait_type": "grade" - } - ] - }, - "timeLastUpdated": "2023-03-15T16:48:03.224Z", - "contractMetadata": { - "name": "Sports Things", - "symbol": "SPORTSTHING", - "totalSupply": "9140", - "tokenType": "ERC721", - "contractDeployer": "0x8aa4ca3f3d45a94cfce35ca6ddcf8e40d89220bb", - "deployedBlockNumber": 15047971, - "openSea": { - "floorPrice": 0.005, - "collectionName": "Sports Things", - "safelistRequestStatus": "approved", - "imageUrl": "https://i.seadn.io/gcs/files/739f1ac1a7aefe2e5dfaa797d4ec88c0.jpg?w=500&auto=format", - "description": "Sports Things is a collaboration between VaynerSports Pass and Thingdoms.", - "lastIngestedAt": "2023-03-15T15:34:34.000Z" - } - } - }, - { - "contract": { - "address": "0x41ac9fee31050bb72a5eea1435a21b22589697da" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000006c2", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Sports Thing #1730", - "description": "VSP partner claim with Thingdoms.", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/QmcTL4sttzJBGScZVMs5sZE3bnEXHwJ9DQ6QZDhu5AeSMS/1730", - "raw": "ipfs://QmcTL4sttzJBGScZVMs5sZE3bnEXHwJ9DQ6QZDhu5AeSMS/1730" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/9160c2e31db0a14d6539364720bbc0d7", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/9160c2e31db0a14d6539364720bbc0d7", - "raw": "ipfs://QmPAA3sMRe8P9bngoAxToMxqmYzAbh96U6FHk27FCaqKWc/1730.jpeg", - "format": "jpeg", - "bytes": 1071098 - } - ], - "metadata": { - "name": "Sports Thing #1730", - "image": "ipfs://QmPAA3sMRe8P9bngoAxToMxqmYzAbh96U6FHk27FCaqKWc/1730.jpeg", - "description": "VSP partner claim with Thingdoms.", - "attributes": [ - { - "value": "spectacular bubble gum", - "trait_type": "vsp_base" - }, - { - "value": "magic soup", - "trait_type": "thingdoms_base" - }, - { - "value": "esports", - "trait_type": "sport" - }, - { - "value": "uncommon", - "trait_type": "tier" - }, - { - "value": "8", - "trait_type": "grade" - } - ] - }, - "timeLastUpdated": "2023-03-15T16:48:06.273Z", - "contractMetadata": { - "name": "Sports Things", - "symbol": "SPORTSTHING", - "totalSupply": "9140", - "tokenType": "ERC721", - "contractDeployer": "0x8aa4ca3f3d45a94cfce35ca6ddcf8e40d89220bb", - "deployedBlockNumber": 15047971, - "openSea": { - "floorPrice": 0.005, - "collectionName": "Sports Things", - "safelistRequestStatus": "approved", - "imageUrl": "https://i.seadn.io/gcs/files/739f1ac1a7aefe2e5dfaa797d4ec88c0.jpg?w=500&auto=format", - "description": "Sports Things is a collaboration between VaynerSports Pass and Thingdoms.", - "lastIngestedAt": "2023-03-15T15:34:34.000Z" - } - } - }, - { - "contract": { - "address": "0x45b727e740a82d865d9a90c9b109335e20da1f97" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000002ad", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://mooncollective.io/metadata/685", - "raw": "https://mooncollective.io/metadata/685" - }, - "media": [ - { - "gateway": "", - "raw": "" - } - ], - "metadata": { - "metadata": [], - "attributes": [] - }, - "timeLastUpdated": "2023-03-23T00:48:00.443Z", - "error": "Token uri responded with a non 200 response code", - "contractMetadata": { - "name": "MoonCollective", - "symbol": "MOONx", - "totalSupply": "2001", - "tokenType": "ERC721", - "contractDeployer": "0x09a2ea93d254d1e31dae156beabd65a80f96d178", - "deployedBlockNumber": 14612845, - "openSea": { - "floorPrice": 0.0099, - "collectionName": "MoonCollective Official", - "safelistRequestStatus": "approved", - "imageUrl": "https://i.seadn.io/gae/fChwfniqaxPypooiW67kUq1ckim5RMENWsrtkLZkUDjgh4KJ7iyBH9r5fdpJxV_-_D4al7TwXQTUffTmgYhfGzaOINaHIpFiyo1A-c8?w=500&auto=format", - "description": "We are an information hub that mirrors conversations inside exclusive blue chip projects to distribute the information within it’s closed tight-nit group of alpha whales to the MOON Collective community.\r\n\r\nCurrently mirror to our holders:\r\n\r\nBored Ape Yacht Club\r\nAzuki\r\nAnonymice\r\nMoonbirds\r\nCoolcats\r\nHabibiz\r\nKarafuru\r\nKaiju\r\nZombieclub\r\nMVHQ", - "externalUrl": "https://mooncollective.io/", - "discordUrl": "https://discord.gg/28GSWUdQxF", - "lastIngestedAt": "2023-03-12T16:51:45.000Z" - } - } - } - ], - "pageKey": null, - "totalCount": 1309, - "blockHash": "0x95b6f23d38f7912ad394f89c3ebef013d30a0877b868d86e206f186568b0afe2" -} diff --git a/tests/fixtures/alchemy/nfts_array_collection_array_traits.json b/tests/fixtures/alchemy/nfts_array_collection_array_traits.json deleted file mode 100644 index 1af765611..000000000 --- a/tests/fixtures/alchemy/nfts_array_collection_array_traits.json +++ /dev/null @@ -1,817 +0,0 @@ -{ - "ownedNfts": [ - { - "contract": { - "address": "0xfa9937555dc20a020a161232de4d2b109c62aa9c" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000003bf", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/bafybeiavhuuwieyqervfv3d6qo2mvyphnyvdmtxihk3z76ktni3ijbzila/959.json", - "raw": "ipfs://bafybeiavhuuwieyqervfv3d6qo2mvyphnyvdmtxihk3z76ktni3ijbzila/959.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/4c04cc8ca145ee9f48a137b437c899c4", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/4c04cc8ca145ee9f48a137b437c899c4", - "raw": "ipfs://bafybeicqei7siw3fa4zqd7mpv5dmhkpiafpcyxh7wupunhvgi47ba6td7q/959.png", - "format": "png", - "bytes": 2567 - } - ], - "metadata": { - "image": "ipfs://bafybeicqei7siw3fa4zqd7mpv5dmhkpiafpcyxh7wupunhvgi47ba6td7q/959.png", - "attributes": [ - { - "value": { - "color": "Yellow" - }, - "trait_type": "Color" - }, - { - "value": "Rocket Tail", - "trait_type": "Tails" - }, - { - "value": "Sphere", - "trait_type": "Bodies" - }, - { - "value": "Squid Legs", - "trait_type": "Legs" - }, - { - "value": "Cyclops Eye", - "trait_type": "Eyes" - }, - { - "value": "Srsly Face", - "trait_type": "Mouths" - }, - { - "value": 48, - "trait_type": "Intelligence" - }, - { - "value": 19, - "trait_type": "Strength" - }, - { - "value": 4, - "trait_type": "Luck" - } - ], - "id": 959 - }, - "timeLastUpdated": "2023-09-19T18:22:40.335Z", - "contractMetadata": { - "name": "Sudolets", - "symbol": "LETS", - "totalSupply": "1000", - "tokenType": "ERC721", - "contractDeployer": "0xa5dd8ee48f61c8018a5aebdf07baa7e6f24d4e6e", - "deployedBlockNumber": 15325467, - "openSea": { - "floorPrice": 0, - "collectionName": "Sudolets", - "collectionSlug": "sudolets", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/a1e9b73a0e24640bf2e9bf145ebba3cd.png?w=500&auto=format", - "description": "On-chain gaming experiment powered by the $XMON token and Chainlink. 0% royalties and all art is CC0.", - "twitterUsername": "sudolets", - "bannerImageUrl": "https://i.seadn.io/gcs/files/536aea8ce4bf39cc98d2815b0e0d2249.png?w=500&auto=format", - "lastIngestedAt": "2023-10-10T10:07:59.000Z" - } - } - }, - { - "contract": { - "address": "0xfa9937555dc20a020a161232de4d2b109c62aa9c" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000003c0", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/bafybeiavhuuwieyqervfv3d6qo2mvyphnyvdmtxihk3z76ktni3ijbzila/960.json", - "raw": "ipfs://bafybeiavhuuwieyqervfv3d6qo2mvyphnyvdmtxihk3z76ktni3ijbzila/960.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/72c5618d25a0d29930ea2d6c4bb02e99", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/72c5618d25a0d29930ea2d6c4bb02e99", - "raw": "ipfs://bafybeicqei7siw3fa4zqd7mpv5dmhkpiafpcyxh7wupunhvgi47ba6td7q/960.png", - "format": "png", - "bytes": 2893 - } - ], - "metadata": { - "image": "ipfs://bafybeicqei7siw3fa4zqd7mpv5dmhkpiafpcyxh7wupunhvgi47ba6td7q/960.png", - "attributes": [ - { - "value": { - "color": "Stone" - }, - "trait_type": "Color" - }, - { - "value": "Dino Tail", - "trait_type": "Tails" - }, - { - "value": "Cube", - "trait_type": "Bodies" - }, - { - "value": "Raptor Legs", - "trait_type": "Legs" - }, - { - "value": "Bug Eyes", - "trait_type": "Eyes" - }, - { - "value": "Srsly Face", - "trait_type": "Mouths" - }, - { - "value": 24, - "trait_type": "Intelligence" - }, - { - "value": 58, - "trait_type": "Strength" - }, - { - "value": 52, - "trait_type": "Luck" - } - ], - "id": 960 - }, - "timeLastUpdated": "2023-10-12T18:22:15.026Z", - "contractMetadata": { - "name": "Sudolets", - "symbol": "LETS", - "totalSupply": "1000", - "tokenType": "ERC721", - "contractDeployer": "0xa5dd8ee48f61c8018a5aebdf07baa7e6f24d4e6e", - "deployedBlockNumber": 15325467, - "openSea": { - "floorPrice": 0, - "collectionName": "Sudolets", - "collectionSlug": "sudolets", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/a1e9b73a0e24640bf2e9bf145ebba3cd.png?w=500&auto=format", - "description": "On-chain gaming experiment powered by the $XMON token and Chainlink. 0% royalties and all art is CC0.", - "twitterUsername": "sudolets", - "bannerImageUrl": "https://i.seadn.io/gcs/files/536aea8ce4bf39cc98d2815b0e0d2249.png?w=500&auto=format", - "lastIngestedAt": "2023-10-10T10:07:59.000Z" - } - } - }, - { - "contract": { - "address": "0xfa9937555dc20a020a161232de4d2b109c62aa9c" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000003c1", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/bafybeiavhuuwieyqervfv3d6qo2mvyphnyvdmtxihk3z76ktni3ijbzila/961.json", - "raw": "ipfs://bafybeiavhuuwieyqervfv3d6qo2mvyphnyvdmtxihk3z76ktni3ijbzila/961.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/583b8b9fef4894736120a8e431d29be3", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/583b8b9fef4894736120a8e431d29be3", - "raw": "ipfs://bafybeicqei7siw3fa4zqd7mpv5dmhkpiafpcyxh7wupunhvgi47ba6td7q/961.png", - "format": "png", - "bytes": 3804 - } - ], - "metadata": { - "image": "ipfs://bafybeicqei7siw3fa4zqd7mpv5dmhkpiafpcyxh7wupunhvgi47ba6td7q/961.png", - "attributes": [ - { - "value": { - "color": "Eggshell" - }, - "trait_type": "Color" - }, - { - "value": "Turkey Tail", - "trait_type": "Tails" - }, - { - "value": "Cube", - "trait_type": "Bodies" - }, - { - "value": "Abduction Beam", - "trait_type": "Legs" - }, - { - "value": "Kawaii Eyes", - "trait_type": "Eyes" - }, - { - "value": "Oh Face", - "trait_type": "Mouths" - }, - { - "value": 87, - "trait_type": "Intelligence" - }, - { - "value": 62, - "trait_type": "Strength" - }, - { - "value": 90, - "trait_type": "Luck" - } - ], - "id": 961 - }, - "timeLastUpdated": "2023-09-19T12:02:40.643Z", - "contractMetadata": { - "name": "Sudolets", - "symbol": "LETS", - "totalSupply": "1000", - "tokenType": "ERC721", - "contractDeployer": "0xa5dd8ee48f61c8018a5aebdf07baa7e6f24d4e6e", - "deployedBlockNumber": 15325467, - "openSea": { - "floorPrice": 0, - "collectionName": "Sudolets", - "collectionSlug": "sudolets", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/a1e9b73a0e24640bf2e9bf145ebba3cd.png?w=500&auto=format", - "description": "On-chain gaming experiment powered by the $XMON token and Chainlink. 0% royalties and all art is CC0.", - "twitterUsername": "sudolets", - "bannerImageUrl": "https://i.seadn.io/gcs/files/536aea8ce4bf39cc98d2815b0e0d2249.png?w=500&auto=format", - "lastIngestedAt": "2023-10-10T10:07:59.000Z" - } - } - }, - { - "contract": { - "address": "0xfa9937555dc20a020a161232de4d2b109c62aa9c" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000003c2", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/bafybeiavhuuwieyqervfv3d6qo2mvyphnyvdmtxihk3z76ktni3ijbzila/962.json", - "raw": "ipfs://bafybeiavhuuwieyqervfv3d6qo2mvyphnyvdmtxihk3z76ktni3ijbzila/962.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/967d2a09ad72ac2fdaeeeb5e0d7527b7", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/967d2a09ad72ac2fdaeeeb5e0d7527b7", - "raw": "ipfs://bafybeicqei7siw3fa4zqd7mpv5dmhkpiafpcyxh7wupunhvgi47ba6td7q/962.png", - "format": "png", - "bytes": 2510 - } - ], - "metadata": { - "image": "ipfs://bafybeicqei7siw3fa4zqd7mpv5dmhkpiafpcyxh7wupunhvgi47ba6td7q/962.png", - "attributes": [ - { - "value": { - "color": "Cherry" - }, - "trait_type": "Color" - }, - { - "value": "Fae Tail", - "trait_type": "Tails" - }, - { - "value": "Sphere", - "trait_type": "Bodies" - }, - { - "value": "Fish Fins", - "trait_type": "Legs" - }, - { - "value": "X-", - "trait_type": "Eyes" - }, - { - "value": "Baby Face", - "trait_type": "Mouths" - }, - { - "value": 49, - "trait_type": "Intelligence" - }, - { - "value": 72, - "trait_type": "Strength" - }, - { - "value": 8, - "trait_type": "Luck" - } - ], - "id": 962 - }, - "timeLastUpdated": "2023-09-29T05:32:39.991Z", - "contractMetadata": { - "name": "Sudolets", - "symbol": "LETS", - "totalSupply": "1000", - "tokenType": "ERC721", - "contractDeployer": "0xa5dd8ee48f61c8018a5aebdf07baa7e6f24d4e6e", - "deployedBlockNumber": 15325467, - "openSea": { - "floorPrice": 0, - "collectionName": "Sudolets", - "collectionSlug": "sudolets", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/a1e9b73a0e24640bf2e9bf145ebba3cd.png?w=500&auto=format", - "description": "On-chain gaming experiment powered by the $XMON token and Chainlink. 0% royalties and all art is CC0.", - "twitterUsername": "sudolets", - "bannerImageUrl": "https://i.seadn.io/gcs/files/536aea8ce4bf39cc98d2815b0e0d2249.png?w=500&auto=format", - "lastIngestedAt": "2023-10-10T10:07:59.000Z" - } - } - }, - { - "contract": { - "address": "0xfa9937555dc20a020a161232de4d2b109c62aa9c" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000003c3", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/bafybeiavhuuwieyqervfv3d6qo2mvyphnyvdmtxihk3z76ktni3ijbzila/963.json", - "raw": "ipfs://bafybeiavhuuwieyqervfv3d6qo2mvyphnyvdmtxihk3z76ktni3ijbzila/963.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/71e2a68e9e3187d1f00d56ec28c21f3d", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/71e2a68e9e3187d1f00d56ec28c21f3d", - "raw": "ipfs://bafybeicqei7siw3fa4zqd7mpv5dmhkpiafpcyxh7wupunhvgi47ba6td7q/963.png", - "format": "png", - "bytes": 2332 - } - ], - "metadata": { - "image": "ipfs://bafybeicqei7siw3fa4zqd7mpv5dmhkpiafpcyxh7wupunhvgi47ba6td7q/963.png", - "attributes": [ - { - "value": { - "color": "Marshmallow" - }, - "trait_type": "Color" - }, - { - "value": "Fae Tail", - "trait_type": "Tails" - }, - { - "value": "Pyramid", - "trait_type": "Bodies" - }, - { - "value": "Space Man_Legs", - "trait_type": "Legs" - }, - { - "value": "Dino Head", - "trait_type": "Mouths" - }, - { - "value": 25, - "trait_type": "Intelligence" - }, - { - "value": 59, - "trait_type": "Strength" - }, - { - "value": 44, - "trait_type": "Luck" - } - ], - "id": 963 - }, - "timeLastUpdated": "2023-09-18T22:46:40.856Z", - "contractMetadata": { - "name": "Sudolets", - "symbol": "LETS", - "totalSupply": "1000", - "tokenType": "ERC721", - "contractDeployer": "0xa5dd8ee48f61c8018a5aebdf07baa7e6f24d4e6e", - "deployedBlockNumber": 15325467, - "openSea": { - "floorPrice": 0, - "collectionName": "Sudolets", - "collectionSlug": "sudolets", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/a1e9b73a0e24640bf2e9bf145ebba3cd.png?w=500&auto=format", - "description": "On-chain gaming experiment powered by the $XMON token and Chainlink. 0% royalties and all art is CC0.", - "twitterUsername": "sudolets", - "bannerImageUrl": "https://i.seadn.io/gcs/files/536aea8ce4bf39cc98d2815b0e0d2249.png?w=500&auto=format", - "lastIngestedAt": "2023-10-10T10:07:59.000Z" - } - } - }, - { - "contract": { - "address": "0xfa9937555dc20a020a161232de4d2b109c62aa9c" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000003c4", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/bafybeiavhuuwieyqervfv3d6qo2mvyphnyvdmtxihk3z76ktni3ijbzila/964.json", - "raw": "ipfs://bafybeiavhuuwieyqervfv3d6qo2mvyphnyvdmtxihk3z76ktni3ijbzila/964.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/d366f91416977e83772afcb259a9568b", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/d366f91416977e83772afcb259a9568b", - "raw": "ipfs://bafybeicqei7siw3fa4zqd7mpv5dmhkpiafpcyxh7wupunhvgi47ba6td7q/964.png", - "format": "png", - "bytes": 2542 - } - ], - "metadata": { - "image": "ipfs://bafybeicqei7siw3fa4zqd7mpv5dmhkpiafpcyxh7wupunhvgi47ba6td7q/964.png", - "attributes": [ - { - "value": { - "color": "Lemon" - }, - "trait_type": "Color" - }, - { - "value": "Fox Tail", - "trait_type": "Tails" - }, - { - "value": "Mega Cube", - "trait_type": "Bodies" - }, - { - "value": "Dino Feet", - "trait_type": "Legs" - }, - { - "value": "X-", - "trait_type": "Eyes" - }, - { - "value": "Antena", - "trait_type": "Mouths" - }, - { - "value": 31, - "trait_type": "Intelligence" - }, - { - "value": 21, - "trait_type": "Strength" - }, - { - "value": 20, - "trait_type": "Luck" - } - ], - "id": 964 - }, - "timeLastUpdated": "2023-09-21T23:36:39.617Z", - "contractMetadata": { - "name": "Sudolets", - "symbol": "LETS", - "totalSupply": "1000", - "tokenType": "ERC721", - "contractDeployer": "0xa5dd8ee48f61c8018a5aebdf07baa7e6f24d4e6e", - "deployedBlockNumber": 15325467, - "openSea": { - "floorPrice": 0, - "collectionName": "Sudolets", - "collectionSlug": "sudolets", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/a1e9b73a0e24640bf2e9bf145ebba3cd.png?w=500&auto=format", - "description": "On-chain gaming experiment powered by the $XMON token and Chainlink. 0% royalties and all art is CC0.", - "twitterUsername": "sudolets", - "bannerImageUrl": "https://i.seadn.io/gcs/files/536aea8ce4bf39cc98d2815b0e0d2249.png?w=500&auto=format", - "lastIngestedAt": "2023-10-10T10:07:59.000Z" - } - } - }, - { - "contract": { - "address": "0xfa9937555dc20a020a161232de4d2b109c62aa9c" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000003c5", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/bafybeiavhuuwieyqervfv3d6qo2mvyphnyvdmtxihk3z76ktni3ijbzila/965.json", - "raw": "ipfs://bafybeiavhuuwieyqervfv3d6qo2mvyphnyvdmtxihk3z76ktni3ijbzila/965.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/30cd8e45247f425929a24da3bae1f5e5", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/30cd8e45247f425929a24da3bae1f5e5", - "raw": "ipfs://bafybeicqei7siw3fa4zqd7mpv5dmhkpiafpcyxh7wupunhvgi47ba6td7q/965.png", - "format": "png", - "bytes": 3652 - } - ], - "metadata": { - "image": "ipfs://bafybeicqei7siw3fa4zqd7mpv5dmhkpiafpcyxh7wupunhvgi47ba6td7q/965.png", - "attributes": [ - { - "value": { - "color": "Blueberry" - }, - "trait_type": "Color" - }, - { - "value": "Dino Tail", - "trait_type": "Tails" - }, - { - "value": "Sphere", - "trait_type": "Bodies" - }, - { - "value": "Abduction Beam", - "trait_type": "Legs" - }, - { - "value": "Phantom Eyes", - "trait_type": "Eyes" - }, - { - "value": "Antena", - "trait_type": "Mouths" - }, - { - "value": 43, - "trait_type": "Intelligence" - }, - { - "value": 51, - "trait_type": "Strength" - }, - { - "value": 51, - "trait_type": "Luck" - } - ], - "id": 965 - }, - "timeLastUpdated": "2023-08-30T13:39:11.383Z", - "contractMetadata": { - "name": "Sudolets", - "symbol": "LETS", - "totalSupply": "1000", - "tokenType": "ERC721", - "contractDeployer": "0xa5dd8ee48f61c8018a5aebdf07baa7e6f24d4e6e", - "deployedBlockNumber": 15325467, - "openSea": { - "floorPrice": 0, - "collectionName": "Sudolets", - "collectionSlug": "sudolets", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/a1e9b73a0e24640bf2e9bf145ebba3cd.png?w=500&auto=format", - "description": "On-chain gaming experiment powered by the $XMON token and Chainlink. 0% royalties and all art is CC0.", - "twitterUsername": "sudolets", - "bannerImageUrl": "https://i.seadn.io/gcs/files/536aea8ce4bf39cc98d2815b0e0d2249.png?w=500&auto=format", - "lastIngestedAt": "2023-10-10T10:07:59.000Z" - } - } - }, - { - "contract": { - "address": "0xfa9937555dc20a020a161232de4d2b109c62aa9c" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000003c7", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/bafybeiavhuuwieyqervfv3d6qo2mvyphnyvdmtxihk3z76ktni3ijbzila/967.json", - "raw": "ipfs://bafybeiavhuuwieyqervfv3d6qo2mvyphnyvdmtxihk3z76ktni3ijbzila/967.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/86c58e5f7c484aac5de038026261861e", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/86c58e5f7c484aac5de038026261861e", - "raw": "ipfs://bafybeicqei7siw3fa4zqd7mpv5dmhkpiafpcyxh7wupunhvgi47ba6td7q/967.png", - "format": "png", - "bytes": 1838 - } - ], - "metadata": { - "image": "ipfs://bafybeicqei7siw3fa4zqd7mpv5dmhkpiafpcyxh7wupunhvgi47ba6td7q/967.png", - "attributes": [ - { - "value": { - "color": "Lemon" - }, - "trait_type": "Color" - }, - { - "value": "Cube", - "trait_type": "Bodies" - }, - { - "value": "Raptor Legs", - "trait_type": "Legs" - }, - { - "value": "Stoner Eyes", - "trait_type": "Eyes" - }, - { - "value": "Oh Face", - "trait_type": "Mouths" - }, - { - "value": 41, - "trait_type": "Intelligence" - }, - { - "value": 66, - "trait_type": "Strength" - }, - { - "value": 77, - "trait_type": "Luck" - } - ], - "id": 967 - }, - "timeLastUpdated": "2023-09-19T06:40:40.184Z", - "contractMetadata": { - "name": "Sudolets", - "symbol": "LETS", - "totalSupply": "1000", - "tokenType": "ERC721", - "contractDeployer": "0xa5dd8ee48f61c8018a5aebdf07baa7e6f24d4e6e", - "deployedBlockNumber": 15325467, - "openSea": { - "floorPrice": 0, - "collectionName": "Sudolets", - "collectionSlug": "sudolets", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/a1e9b73a0e24640bf2e9bf145ebba3cd.png?w=500&auto=format", - "description": "On-chain gaming experiment powered by the $XMON token and Chainlink. 0% royalties and all art is CC0.", - "twitterUsername": "sudolets", - "bannerImageUrl": "https://i.seadn.io/gcs/files/536aea8ce4bf39cc98d2815b0e0d2249.png?w=500&auto=format", - "lastIngestedAt": "2023-10-10T10:07:59.000Z" - } - } - }, - { - "contract": { - "address": "0xfa9937555dc20a020a161232de4d2b109c62aa9c" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000003c8", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/bafybeiavhuuwieyqervfv3d6qo2mvyphnyvdmtxihk3z76ktni3ijbzila/968.json", - "raw": "ipfs://bafybeiavhuuwieyqervfv3d6qo2mvyphnyvdmtxihk3z76ktni3ijbzila/968.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/b65341bc3f717206b47e37ca7ea85bbb", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/b65341bc3f717206b47e37ca7ea85bbb", - "raw": "ipfs://bafybeicqei7siw3fa4zqd7mpv5dmhkpiafpcyxh7wupunhvgi47ba6td7q/968.png", - "format": "png", - "bytes": 2100 - } - ], - "metadata": { - "image": "ipfs://bafybeicqei7siw3fa4zqd7mpv5dmhkpiafpcyxh7wupunhvgi47ba6td7q/968.png", - "attributes": [ - { - "value": { - "color": "Yellow" - }, - "trait_type": "Color" - }, - { - "value": "Fish Tail", - "trait_type": "Tails" - }, - { - "value": "Mega Cube", - "trait_type": "Bodies" - }, - { - "value": "Space Man_Legs", - "trait_type": "Legs" - }, - { - "value": "X-", - "trait_type": "Eyes" - }, - { - "value": "Srsly Face", - "trait_type": "Mouths" - }, - { - "value": 35, - "trait_type": "Intelligence" - }, - { - "value": 54, - "trait_type": "Strength" - }, - { - "value": 55, - "trait_type": "Luck" - } - ], - "id": 968 - }, - "timeLastUpdated": "2023-09-14T00:38:40.864Z", - "contractMetadata": { - "name": "Sudolets", - "symbol": "LETS", - "totalSupply": "1000", - "tokenType": "ERC721", - "contractDeployer": "0xa5dd8ee48f61c8018a5aebdf07baa7e6f24d4e6e", - "deployedBlockNumber": 15325467, - "openSea": { - "floorPrice": 0, - "collectionName": "Sudolets", - "collectionSlug": "sudolets", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/a1e9b73a0e24640bf2e9bf145ebba3cd.png?w=500&auto=format", - "description": "On-chain gaming experiment powered by the $XMON token and Chainlink. 0% royalties and all art is CC0.", - "twitterUsername": "sudolets", - "bannerImageUrl": "https://i.seadn.io/gcs/files/536aea8ce4bf39cc98d2815b0e0d2249.png?w=500&auto=format", - "lastIngestedAt": "2023-10-10T10:07:59.000Z" - } - } - } - ], - "totalCount": 9, - "blockHash": "0x067d95bf438abb5261b795bf0f1ccef433a49bd90f5a3940cf1bc1bd5b4aa209" -} diff --git a/tests/fixtures/alchemy/nfts_array_description.json b/tests/fixtures/alchemy/nfts_array_description.json deleted file mode 100644 index afc0aeb04..000000000 --- a/tests/fixtures/alchemy/nfts_array_description.json +++ /dev/null @@ -1,100 +0,0 @@ -{ - "ownedNfts": [ - { - "contract": { - "address": "0xe3589ae55bbd7697c76c510a5335eb31d972a17e" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000c84", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "BROADSIDE #3204 - Analiza", - "description": [ - "A decentralized tale of 7,290 anonymous heroes\nA multi-part journey that unfolds from launch\nCC0 or Full Commercial Rights\n11 Episode NFTs telling the story of your specific character dropped to Broadsiders in the months following mint\nOnce final chapter drops, merge and burn Episode NFTs into a 1/1 Book NFT, featuring your character on the 1/1 cover art, with the ability to print and sell copies\nCollection features rare traits (both cc0 and licensed from other projects) contributed by guest artists and from projects including XCOPY, Cryptopunk #5046, OSF / Rektguy, Moonbirds, Eclectic Method, Goblintown, Nouns, Blitmaps, Kristy Glas, Grillz Gang, Cryptoadz, Robness and more." - ], - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmQ1mfrt8pMCZ8jMmm3SaBZQ6aM4kSeA5BsZWbotfnts8w/3204", - "raw": "ipfs://QmQ1mfrt8pMCZ8jMmm3SaBZQ6aM4kSeA5BsZWbotfnts8w/3204" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/3c7fb8caad2ca82b848ad200a35f2a24", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/3c7fb8caad2ca82b848ad200a35f2a24", - "raw": "https://nervous.mypinata.cloud/ipfs/QmeM7izZckUWmCPRAiMgxwFdjtoeBifx8T3c1Rkf9kVW9P/3204.png", - "format": "png", - "bytes": 6727951 - } - ], - "metadata": { - "name": "BROADSIDE #3204 - Analiza", - "description": [ - "A decentralized tale of 7,290 anonymous heroes\nA multi-part journey that unfolds from launch\nCC0 or Full Commercial Rights\n11 Episode NFTs telling the story of your specific character dropped to Broadsiders in the months following mint\nOnce final chapter drops, merge and burn Episode NFTs into a 1/1 Book NFT, featuring your character on the 1/1 cover art, with the ability to print and sell copies\nCollection features rare traits (both cc0 and licensed from other projects) contributed by guest artists and from projects including XCOPY, Cryptopunk #5046, OSF / Rektguy, Moonbirds, Eclectic Method, Goblintown, Nouns, Blitmaps, Kristy Glas, Grillz Gang, Cryptoadz, Robness and more." - ], - "image": "https://nervous.mypinata.cloud/ipfs/QmeM7izZckUWmCPRAiMgxwFdjtoeBifx8T3c1Rkf9kVW9P/3204.png", - "attributes": [ - { - "value": "Analiza", - "trait_type": "Name" - }, - { - "value": "Broadside 1 Snipes Bay Blue", - "trait_type": "Background" - }, - { - "value": "Embattled", - "trait_type": "Body" - }, - { - "value": "Neeky", - "trait_type": "Eyes" - }, - { - "value": "White", - "trait_type": "Teeth" - }, - { - "value": "Exposure Camo T-Shirt", - "trait_type": "Top Clothing" - }, - { - "value": "Energy 2 Cap", - "trait_type": "Head" - }, - { - "value": "Hench Jaw Mask Aqua", - "trait_type": "Jaw" - }, - { - "value": "FCR", - "trait_type": "Rights" - } - ], - "external_url": "https://br0ads1de.com", - "tokenId": "3204" - }, - "timeLastUpdated": "2023-01-11T12:27:03.548Z", - "contractMetadata": { - "name": "Broadside", - "symbol": "BSIDE", - "totalSupply": "7290", - "tokenType": "ERC721", - "contractDeployer": "0xb5dee69feaa5fc089cdef6cbe6c4a8fb2dae4dc4", - "deployedBlockNumber": 15936824, - "openSea": { - "floorPrice": 0.0476, - "collectionName": "Broadside", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/f7f51b6b8f500e57e96f6f402c77670e.png?w=500&auto=format", - "description": "Each Broadside hero has a story to mint - https://mint.broadside.wtf/\n\nBroadside is a new culture, community and storyworld, purpose-built for web3. It begins with a decentralized tale of 7,290 anonymous heroes, coming with either cc0 or full commercial rights, each the star of their own story.\n\nBones Up Fam. \u2620\ufe0f", - "externalUrl": "https://www.br0ads1de.com/", - "twitterUsername": "BroadsideNFT", - "discordUrl": "https://discord.gg/broadside", - "lastIngestedAt": "2023-03-21T20:10:35.000Z" - } - } - } - ] -} diff --git a/tests/fixtures/alchemy/nfts_array_description_with_banner.json b/tests/fixtures/alchemy/nfts_array_description_with_banner.json deleted file mode 100644 index 169232539..000000000 --- a/tests/fixtures/alchemy/nfts_array_description_with_banner.json +++ /dev/null @@ -1,101 +0,0 @@ -{ - "ownedNfts": [ - { - "contract": { - "address": "0xe3589ae55bbd7697c76c510a5335eb31d972a17e" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000c84", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "BROADSIDE #3204 - Analiza", - "description": [ - "A decentralized tale of 7,290 anonymous heroes\nA multi-part journey that unfolds from launch\nCC0 or Full Commercial Rights\n11 Episode NFTs telling the story of your specific character dropped to Broadsiders in the months following mint\nOnce final chapter drops, merge and burn Episode NFTs into a 1/1 Book NFT, featuring your character on the 1/1 cover art, with the ability to print and sell copies\nCollection features rare traits (both cc0 and licensed from other projects) contributed by guest artists and from projects including XCOPY, Cryptopunk #5046, OSF / Rektguy, Moonbirds, Eclectic Method, Goblintown, Nouns, Blitmaps, Kristy Glas, Grillz Gang, Cryptoadz, Robness and more." - ], - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmQ1mfrt8pMCZ8jMmm3SaBZQ6aM4kSeA5BsZWbotfnts8w/3204", - "raw": "ipfs://QmQ1mfrt8pMCZ8jMmm3SaBZQ6aM4kSeA5BsZWbotfnts8w/3204" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/3c7fb8caad2ca82b848ad200a35f2a24", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/3c7fb8caad2ca82b848ad200a35f2a24", - "raw": "https://nervous.mypinata.cloud/ipfs/QmeM7izZckUWmCPRAiMgxwFdjtoeBifx8T3c1Rkf9kVW9P/3204.png", - "format": "png", - "bytes": 6727951 - } - ], - "metadata": { - "name": "BROADSIDE #3204 - Analiza", - "description": [ - "A decentralized tale of 7,290 anonymous heroes\nA multi-part journey that unfolds from launch\nCC0 or Full Commercial Rights\n11 Episode NFTs telling the story of your specific character dropped to Broadsiders in the months following mint\nOnce final chapter drops, merge and burn Episode NFTs into a 1/1 Book NFT, featuring your character on the 1/1 cover art, with the ability to print and sell copies\nCollection features rare traits (both cc0 and licensed from other projects) contributed by guest artists and from projects including XCOPY, Cryptopunk #5046, OSF / Rektguy, Moonbirds, Eclectic Method, Goblintown, Nouns, Blitmaps, Kristy Glas, Grillz Gang, Cryptoadz, Robness and more." - ], - "image": "https://nervous.mypinata.cloud/ipfs/QmeM7izZckUWmCPRAiMgxwFdjtoeBifx8T3c1Rkf9kVW9P/3204.png", - "attributes": [ - { - "value": "Analiza", - "trait_type": "Name" - }, - { - "value": "Broadside 1 Snipes Bay Blue", - "trait_type": "Background" - }, - { - "value": "Embattled", - "trait_type": "Body" - }, - { - "value": "Neeky", - "trait_type": "Eyes" - }, - { - "value": "White", - "trait_type": "Teeth" - }, - { - "value": "Exposure Camo T-Shirt", - "trait_type": "Top Clothing" - }, - { - "value": "Energy 2 Cap", - "trait_type": "Head" - }, - { - "value": "Hench Jaw Mask Aqua", - "trait_type": "Jaw" - }, - { - "value": "FCR", - "trait_type": "Rights" - } - ], - "external_url": "https://br0ads1de.com", - "tokenId": "3204" - }, - "timeLastUpdated": "2023-01-11T12:27:03.548Z", - "contractMetadata": { - "name": "Broadside", - "symbol": "BSIDE", - "totalSupply": "7290", - "tokenType": "ERC721", - "contractDeployer": "0xb5dee69feaa5fc089cdef6cbe6c4a8fb2dae4dc4", - "deployedBlockNumber": 15936824, - "openSea": { - "floorPrice": 0.0476, - "collectionName": "Broadside", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/f7f51b6b8f500e57e96f6f402c77670e.png?w=500&auto=format", - "description": "Each Broadside hero has a story to mint - https://mint.broadside.wtf/\n\nBroadside is a new culture, community and storyworld, purpose-built for web3. It begins with a decentralized tale of 7,290 anonymous heroes, coming with either cc0 or full commercial rights, each the star of their own story.\n\nBones Up Fam. \u2620\ufe0f", - "externalUrl": "https://www.br0ads1de.com/", - "twitterUsername": "BroadsideNFT", - "discordUrl": "https://discord.gg/broadside", - "lastIngestedAt": "2023-03-21T20:10:35.000Z", - "bannerImageUrl": "https://i.seadn.io/gcs/files/8f5b0b0b0f5f0e57e96f6f402c77670e.png?w=500&auto=format" - } - } - } - ] -} diff --git a/tests/fixtures/alchemy/nfts_array_unexpected_traits.json b/tests/fixtures/alchemy/nfts_array_unexpected_traits.json deleted file mode 100644 index 36c76415f..000000000 --- a/tests/fixtures/alchemy/nfts_array_unexpected_traits.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "ownedNfts": [ - { - "contract": { - "address": "0xfa9937555dc20a020a161232de4d2b109c62aa9c" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000003bf", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/bafybeiavhuuwieyqervfv3d6qo2mvyphnyvdmtxihk3z76ktni3ijbzila/959.json", - "raw": "ipfs://bafybeiavhuuwieyqervfv3d6qo2mvyphnyvdmtxihk3z76ktni3ijbzila/959.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/4c04cc8ca145ee9f48a137b437c899c4", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/4c04cc8ca145ee9f48a137b437c899c4", - "raw": "ipfs://bafybeicqei7siw3fa4zqd7mpv5dmhkpiafpcyxh7wupunhvgi47ba6td7q/959.png", - "format": "png", - "bytes": 2567 - } - ], - "metadata": { - "image": "ipfs://bafybeicqei7siw3fa4zqd7mpv5dmhkpiafpcyxh7wupunhvgi47ba6td7q/959.png", - "attributes": [ - {}, - { - "value": { - "color": "Yellow" - }, - "trait_type": "Color" - }, - { - "value": "Rocket Tail", - "trait_type": "Tails" - }, - { - "value": null - }, - { - "value": [], - "trait_type": "Tails" - } - ], - "id": 959 - }, - "timeLastUpdated": "2023-09-19T18:22:40.335Z", - "contractMetadata": { - "name": "Sudolets", - "symbol": "LETS", - "totalSupply": "1000", - "tokenType": "ERC721", - "contractDeployer": "0xa5dd8ee48f61c8018a5aebdf07baa7e6f24d4e6e", - "deployedBlockNumber": 15325467, - "openSea": { - "floorPrice": 0, - "collectionName": "Sudolets", - "collectionSlug": "sudolets", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/a1e9b73a0e24640bf2e9bf145ebba3cd.png?w=500&auto=format", - "description": "On-chain gaming experiment powered by the $XMON token and Chainlink. 0% royalties and all art is CC0.", - "twitterUsername": "sudolets", - "bannerImageUrl": "https://i.seadn.io/gcs/files/536aea8ce4bf39cc98d2815b0e0d2249.png?w=500&auto=format", - "lastIngestedAt": "2023-10-10T10:07:59.000Z" - } - } - } - ], - "totalCount": 1, - "blockHash": "0x067d95bf438abb5261b795bf0f1ccef433a49bd90f5a3940cf1bc1bd5b4aa209" -} diff --git a/tests/fixtures/alchemy/nfts_array_valid.json b/tests/fixtures/alchemy/nfts_array_valid.json deleted file mode 100644 index c234761ed..000000000 --- a/tests/fixtures/alchemy/nfts_array_valid.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "ownedNfts": [ - { - "contract": { - "address": "0x54e10253619e8790e162b5517aec518ad0676ef1" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000051", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://metadataapi.codename883.repl.co/apiA4C/81", - "raw": "https://metadataapi.codename883.repl.co/apiA4C/81" - }, - "media": [ - { - "gateway": "", - "raw": "" - } - ], - "metadata": {}, - "timeLastUpdated": "2023-10-10T10:07:01.300Z", - "contractMetadata": { - "name": "Apes For Change", - "symbol": "A4C", - "totalSupply": "3480", - "tokenType": "ERC721", - "contractDeployer": "0xb817b0137bb1a838aebcc63a231d152c6cb03b41", - "deployedBlockNumber": 15319472, - "openSea": { - "floorPrice": 0.001, - "collectionName": "Apes For Change: A CODENAMEhamm Joint", - "collectionSlug": "apesforchange", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/e64de844a9f282b896da7507f8ad31f8.png?w=500&auto=format", - "description": "Apes For Change was created to pay tribute to one of the greatest communities in the NFT space. The artwork was reimagined, the traits were reshuffled, and the collection was minted exclusively with $APE. A CODENAME:hamm Joint.", - "externalUrl": "https://apes-for-change.webflow.io/", - "bannerImageUrl": "https://i.seadn.io/gcs/files/686d50de759a7acb244655596962b457.png?w=500&auto=format", - "lastIngestedAt": "2023-10-07T04:53:52.000Z" - } - } - } - ] -} diff --git a/tests/fixtures/alchemy/nfts_array_with_error.json b/tests/fixtures/alchemy/nfts_array_with_error.json deleted file mode 100644 index 4c6d68715..000000000 --- a/tests/fixtures/alchemy/nfts_array_with_error.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "ownedNfts": [ - { - "contract": { - "address": "0x54e10253619e8790e162b5517aec518ad0676ef1" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000051", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://metadataapi.codename883.repl.co/apiA4C/81", - "raw": "https://metadataapi.codename883.repl.co/apiA4C/81" - }, - "media": [ - { - "gateway": "", - "raw": "" - } - ], - "metadata": { - "metadata": [], - "attributes": [] - }, - "timeLastUpdated": "2023-10-10T10:18:02.421Z", - "error": "Contract returned a broken token uri", - "contractMetadata": { - "name": "Apes For Change", - "symbol": "A4C", - "totalSupply": "3480", - "tokenType": "ERC721", - "contractDeployer": "0xb817b0137bb1a838aebcc63a231d152c6cb03b41", - "deployedBlockNumber": 15319472, - "openSea": { - "floorPrice": 0.001, - "collectionName": "Apes For Change: A CODENAMEhamm Joint", - "collectionSlug": "apesforchange", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/e64de844a9f282b896da7507f8ad31f8.png?w=500&auto=format", - "description": "Apes For Change was created to pay tribute to one of the greatest communities in the NFT space. The artwork was reimagined, the traits were reshuffled, and the collection was minted exclusively with $APE. A CODENAME:hamm Joint.", - "externalUrl": "https://apes-for-change.webflow.io/", - "bannerImageUrl": "https://i.seadn.io/gcs/files/686d50de759a7acb244655596962b457.png?w=500&auto=format", - "lastIngestedAt": "2023-10-07T04:53:52.000Z" - } - } - } - ] -} diff --git a/tests/fixtures/alchemy/nfts_array_with_error_and_empty_metadata_metadata_object.json b/tests/fixtures/alchemy/nfts_array_with_error_and_empty_metadata_metadata_object.json deleted file mode 100644 index 160107f48..000000000 --- a/tests/fixtures/alchemy/nfts_array_with_error_and_empty_metadata_metadata_object.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "ownedNfts": [ - { - "contract": { - "address": "0x54e10253619e8790e162b5517aec518ad0676ef1" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000051", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://metadataapi.codename883.repl.co/apiA4C/81", - "raw": "https://metadataapi.codename883.repl.co/apiA4C/81" - }, - "media": [ - { - "gateway": "", - "raw": "" - } - ], - "metadata": { - "metadata": {}, - "attributes": [] - }, - "timeLastUpdated": "2023-10-10T10:18:02.421Z", - "error": "Contract returned a broken token uri", - "contractMetadata": { - "name": "Apes For Change", - "symbol": "A4C", - "totalSupply": "3480", - "tokenType": "ERC721", - "contractDeployer": "0xb817b0137bb1a838aebcc63a231d152c6cb03b41", - "deployedBlockNumber": 15319472, - "openSea": { - "floorPrice": 0.001, - "collectionName": "Apes For Change: A CODENAMEhamm Joint", - "collectionSlug": "apesforchange", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/e64de844a9f282b896da7507f8ad31f8.png?w=500&auto=format", - "description": "Apes For Change was created to pay tribute to one of the greatest communities in the NFT space. The artwork was reimagined, the traits were reshuffled, and the collection was minted exclusively with $APE. A CODENAME:hamm Joint.", - "externalUrl": "https://apes-for-change.webflow.io/", - "bannerImageUrl": "https://i.seadn.io/gcs/files/686d50de759a7acb244655596962b457.png?w=500&auto=format", - "lastIngestedAt": "2023-10-07T04:53:52.000Z" - } - } - } - ] -} diff --git a/tests/fixtures/alchemy/nfts_array_with_error_and_empty_metadata_object.json b/tests/fixtures/alchemy/nfts_array_with_error_and_empty_metadata_object.json deleted file mode 100644 index 4c0474678..000000000 --- a/tests/fixtures/alchemy/nfts_array_with_error_and_empty_metadata_object.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "ownedNfts": [ - { - "contract": { - "address": "0x54e10253619e8790e162b5517aec518ad0676ef1" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000051", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://metadataapi.codename883.repl.co/apiA4C/81", - "raw": "https://metadataapi.codename883.repl.co/apiA4C/81" - }, - "media": [ - { - "gateway": "", - "raw": "" - } - ], - "metadata": {}, - "timeLastUpdated": "2023-10-10T10:18:02.421Z", - "error": "Contract returned a broken token uri", - "contractMetadata": { - "name": "Apes For Change", - "symbol": "A4C", - "totalSupply": "3480", - "tokenType": "ERC721", - "contractDeployer": "0xb817b0137bb1a838aebcc63a231d152c6cb03b41", - "deployedBlockNumber": 15319472, - "openSea": { - "floorPrice": 0.001, - "collectionName": "Apes For Change: A CODENAMEhamm Joint", - "collectionSlug": "apesforchange", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/e64de844a9f282b896da7507f8ad31f8.png?w=500&auto=format", - "description": "Apes For Change was created to pay tribute to one of the greatest communities in the NFT space. The artwork was reimagined, the traits were reshuffled, and the collection was minted exclusively with $APE. A CODENAME:hamm Joint.", - "externalUrl": "https://apes-for-change.webflow.io/", - "bannerImageUrl": "https://i.seadn.io/gcs/files/686d50de759a7acb244655596962b457.png?w=500&auto=format", - "lastIngestedAt": "2023-10-07T04:53:52.000Z" - } - } - } - ] -} diff --git a/tests/fixtures/alchemy/nfts_for_owner.json b/tests/fixtures/alchemy/nfts_for_owner.json new file mode 100644 index 000000000..033a0407f --- /dev/null +++ b/tests/fixtures/alchemy/nfts_for_owner.json @@ -0,0 +1,315 @@ +{ + "ownedNfts": [ + { + "contract": { + "address": "0xe0176bA60efddb29Cac5b15338C9962dAee9de0c", + "name": "PREMINT Collector", + "symbol": "PREMINTCOLL", + "totalSupply": "10000", + "tokenType": "ERC721", + "contractDeployer": "0xB52a42919fA2C6e65fC95484dd907B817f19F627", + "deployedBlockNumber": 14498490, + "openSeaMetadata": { + "floorPrice": 0.05, + "collectionName": "PREMINT Collector Pass - OFFICIAL", + "collectionSlug": "premint-collector", + "safelistRequestStatus": "verified", + "imageUrl": "https://i.seadn.io/gae/aMMR2KXGtRL_jqpS6l1pLoLwUArlwKH9oEnZw-ezBoSANzRGKdManYxuzlB_kztn5bcEQA2Bgx9JWhdEQKLbgj0aFbhC7yFmMS7txw?w=500&auto=format", + "description": "As a PREMINT Collector Pass holder, you will get access to an evolving collector dashboard and features to keep you on top of the hottest mints. For more info see https://collectors.premint.xyz/", + "externalUrl": "https://collectors.premint.xyz/", + "twitterUsername": "premint", + "discordUrl": null, + "bannerImageUrl": "https://i.seadn.io/gae/ZqJbyUOvVtX5ZR-hP0ELSX4N5LHNoXtNscEAzMbwM_QrEKTsAAFqy7bzKnfHPjZcBIDRkFbFTUjtnrtulg3_1uCSLtbbODlCQJh9rQ?w=500&auto=format", + "lastIngestedAt": "2023-08-22T06:40:47.000Z" + }, + "isSpam": null, + "spamClassifications": [] + }, + "tokenId": "8386", + "tokenType": "ERC721", + "name": "PREMINT Collector Pass", + "description": [ + "A decentralized tale of 7,290 anonymous heroes\nA multi-part journey that unfolds from launch\nCC0 or Full Commercial Rights\n11 Episode NFTs telling the story of your specific character dropped to Broadsiders in the months following mint\nOnce final chapter drops, merge and burn Episode NFTs into a 1/1 Book NFT, featuring your character on the 1/1 cover art, with the ability to print and sell copies\nCollection features rare traits (both cc0 and licensed from other projects) contributed by guest artists and from projects including XCOPY, Cryptopunk #5046, OSF / Rektguy, Moonbirds, Eclectic Method, Goblintown, Nouns, Blitmaps, Kristy Glas, Grillz Gang, Cryptoadz, Robness and more." + ], + "tokenUri": "https://collectors.premint.xyz/metadata/8386", + "image": { + "cachedUrl": "https://nft-cdn.alchemy.com/eth-mainnet/c63b7e2c87024ebf4968e5e5e3eab994", + "thumbnailUrl": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/c63b7e2c87024ebf4968e5e5e3eab994", + "pngUrl": "https://res.cloudinary.com/alchemyapi/image/upload/convert-png/eth-mainnet/c63b7e2c87024ebf4968e5e5e3eab994", + "contentType": "image/png", + "size": 230409, + "originalUrl": "https://collectors.premint.xyz/collector-pass.png" + }, + "raw": { + "tokenUri": "https://collectors.premint.xyz/metadata/8386", + "metadata": { + "name": "PREMINT Collector Pass", + "image": "https://collectors.premint.xyz/collector-pass.png" + }, + "error": "Contract returned a broken token uri" + }, + "collection": { + "name": "PREMINT Collector Pass - OFFICIAL", + "openSeaSlug": "premint-collector", + "externalUrl": "https://collectors.premint.xyz/", + "bannerImageUrl": "https://i.seadn.io/gae/ZqJbyUOvVtX5ZR-hP0ELSX4N5LHNoXtNscEAzMbwM_QrEKTsAAFqy7bzKnfHPjZcBIDRkFbFTUjtnrtulg3_1uCSLtbbODlCQJh9rQ?w=500&auto=format" + }, + "timeLastUpdated": "2023-08-08T04:51:22.613Z", + "balance": "1", + "acquiredAt": { + "blockTimestamp": null, + "blockNumber": null + } + }, + { + "contract": { + "address": "0xB8Da418FFC2Cb675B8B3d73dca0E3f10811FBbdD", + "name": "WE_ARE_KLOUD", + "symbol": "KLOUD", + "totalSupply": "5000", + "tokenType": "ERC721", + "contractDeployer": "0xcf9144523F1A047612318A4867839CD69fbb2eaa", + "deployedBlockNumber": 13973502, + "openSeaMetadata": { + "floorPrice": 0.0099, + "collectionName": "WE ARE KLOUD", + "collectionSlug": "we-are-kloud", + "safelistRequestStatus": "verified", + "imageUrl": "https://i.seadn.io/gae/ICJQZ_ahWfDPdtF-wz9gx79qTjU5A08L9fGkdB_HEyLT0EzYpE6zIdjZGPq4mwEDd4cT3PufBeMDohfppoX2RXdbfDxSxEYio7gh?w=500&auto=format", + "description": "WE ARE KLOUD is a 5,000 Music NFT collection by KLOUD & Alex Hooker, curated by SoundMint.\n\nSoundMint curated NFTs are generative music collectibles that combine generative visuals with generative music by pairing stems to visual layers; allowing the collector to own a unique 1/1 musical art piece. Collect SoundMint curated NFTs by your favorite artist, trade them with other SoundMint owners, and become a part of the SoundMint generative music ecosystem.\n\nOwning a WE ARE KLOUD NFT grants the owner:\n\n-Full-Commercial IP Licensing Rights to the Audio \n \n-Unique Avatar Integration into 'World Wide Webb' Metaverse\n", + "externalUrl": "http://soundmint.xyz", + "twitterUsername": "soundmintxyz", + "discordUrl": "https://discord.gg/soundmint", + "bannerImageUrl": "https://i.seadn.io/gae/UCilfcDvkWO8HF-PJ1SB7PpRUj3BsIYPhXuOcvrJOJJCqI2dU8n82DYY3Ab5En0CB_Rp8Rn5Vdroz9pW7o-DewZBX5UKxPeUq6NHi9U?w=500&auto=format", + "lastIngestedAt": "2023-08-27T00:28:34.000Z" + }, + "isSpam": null, + "spamClassifications": [] + }, + "tokenId": "1895", + "tokenType": "ERC721", + "name": "#1895", + "description": "KLOUD is the artistical embodiment of limitless creativity in anonymity. With this NFT drop, the collector enters the KLOUD, owning a unique visual & musical art piece derived from the generative algorithm that is KLOUD x HOOKER x COMPUTER. Holding one of these NFTs grants future access to KLOUD metaverse events.", + "tokenUri": "https://soundmint-public.s3.amazonaws.com/KLOUD_REVEALED/meta/1895", + "image": { + "cachedUrl": "https://nft-cdn.alchemy.com/eth-mainnet/80d6e397bcef8e3d59933d8510d9456c", + "thumbnailUrl": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/80d6e397bcef8e3d59933d8510d9456c", + "pngUrl": "https://res.cloudinary.com/alchemyapi/image/upload/convert-png/eth-mainnet/80d6e397bcef8e3d59933d8510d9456c", + "contentType": "image/png", + "size": 3302206, + "originalUrl": "https://soundmint-public.s3.amazonaws.com/KLOUD_REVEALED/images/4890.png" + }, + "raw": { + "tokenUri": "https://soundmint-public.s3.amazonaws.com/KLOUD_REVEALED/meta/1895", + "metadata": { + "name": "#1895", + "description": "KLOUD is the artistical embodiment of limitless creativity in anonymity. With this NFT drop, the collector enters the KLOUD, owning a unique visual & musical art piece derived from the generative algorithm that is KLOUD x HOOKER x COMPUTER. Holding one of these NFTs grants future access to KLOUD metaverse events.", + "image": "https://soundmint-public.s3.amazonaws.com/KLOUD_REVEALED/images/4890.png", + "attributes": [ + { + "value": { + "color": "Yellow" + }, + "trait_type": "Bass" + }, + { + "value": "Kick Kick Snare", + "trait_type": "Drums" + }, + { + "value": "Claps and Snares", + "trait_type": "Percussion" + }, + { + "value": "Atmosphere 1 ", + "trait_type": "Lead" + }, + { + "value": "Alive", + "trait_type": "Vocal" + }, + { + "value": "Contrast", + "trait_type": "Body Type" + }, + { + "value": "Blue", + "trait_type": "Background Color" + }, + { + "value": "English", + "trait_type": "Background" + }, + { + "value": "Code", + "trait_type": "Border" + } + ], + "animation_url": "https://soundarts-nft.s3.amazonaws.com/KLOUD_2022_5000_20000/4890.mp4" + }, + "error": null + }, + "collection": { + "name": "WE ARE KLOUD", + "openSeaSlug": "we-are-kloud", + "externalUrl": "http://soundmint.xyz", + "bannerImageUrl": "https://i.seadn.io/gae/UCilfcDvkWO8HF-PJ1SB7PpRUj3BsIYPhXuOcvrJOJJCqI2dU8n82DYY3Ab5En0CB_Rp8Rn5Vdroz9pW7o-DewZBX5UKxPeUq6NHi9U?w=500&auto=format" + }, + "timeLastUpdated": "2023-08-27T02:34:39.329Z", + "balance": "1", + "acquiredAt": { + "blockTimestamp": null, + "blockNumber": null + } + }, + { + "contract": { + "address": "0xe0176bA60efddb29Cac5b15338C9962dAee9de0c", + "name": "PREMINT Collector", + "symbol": "PREMINTCOLL", + "totalSupply": "10000", + "tokenType": "ERC721", + "contractDeployer": "0xB52a42919fA2C6e65fC95484dd907B817f19F627", + "deployedBlockNumber": 14498490, + "openSeaMetadata": { + "floorPrice": 0.05, + "collectionName": "PREMINT Collector Pass - OFFICIAL", + "collectionSlug": "premint-collector", + "safelistRequestStatus": "verified", + "imageUrl": "https://i.seadn.io/gae/aMMR2KXGtRL_jqpS6l1pLoLwUArlwKH9oEnZw-ezBoSANzRGKdManYxuzlB_kztn5bcEQA2Bgx9JWhdEQKLbgj0aFbhC7yFmMS7txw?w=500&auto=format", + "description": "As a PREMINT Collector Pass holder, you will get access to an evolving collector dashboard and features to keep you on top of the hottest mints. For more info see https://collectors.premint.xyz/", + "externalUrl": "https://collectors.premint.xyz/", + "twitterUsername": "premint", + "discordUrl": null, + "bannerImageUrl": "https://i.seadn.io/gae/ZqJbyUOvVtX5ZR-hP0ELSX4N5LHNoXtNscEAzMbwM_QrEKTsAAFqy7bzKnfHPjZcBIDRkFbFTUjtnrtulg3_1uCSLtbbODlCQJh9rQ?w=500&auto=format", + "lastIngestedAt": "2023-08-22T06:40:47.000Z" + }, + "isSpam": null, + "spamClassifications": [] + }, + "tokenId": "8387", + "tokenType": "ERC721", + "name": "PREMINT Collector Pass", + "description": "A decentralized tale of 7,290 anonymous heroes\nA multi-part journey that unfolds from launch\nCC0 or Full Commercial Rights\n11 Episode NFTs telling the story of your specific character dropped to Broadsiders in the months following mint\nOnce final chapter drops, merge and burn Episode NFTs into a 1/1 Book NFT, featuring your character on the 1/1 cover art, with the ability to print and sell copies\nCollection features rare traits (both cc0 and licensed from other projects) contributed by guest artists and from projects including XCOPY, Cryptopunk #5046, OSF / Rektguy, Moonbirds, Eclectic Method, Goblintown, Nouns, Blitmaps, Kristy Glas, Grillz Gang, Cryptoadz, Robness and more.", + "tokenUri": "https://collectors.premint.xyz/metadata/8386", + "image": { + "cachedUrl": "https://nft-cdn.alchemy.com/eth-mainnet/c63b7e2c87024ebf4968e5e5e3eab994", + "thumbnailUrl": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/c63b7e2c87024ebf4968e5e5e3eab994", + "pngUrl": "https://res.cloudinary.com/alchemyapi/image/upload/convert-png/eth-mainnet/c63b7e2c87024ebf4968e5e5e3eab994", + "contentType": "image/png", + "size": 230409, + "originalUrl": "https://collectors.premint.xyz/collector-pass.png" + }, + "raw": { + "tokenUri": "https://collectors.premint.xyz/metadata/8386", + "metadata": { + "name": "PREMINT Collector Pass", + "image": "https://collectors.premint.xyz/collector-pass.png", + "metadata": {}, + "attributes": [] + }, + "error": "Contract returned a broken token uri" + }, + "collection": { + "name": "PREMINT Collector Pass - OFFICIAL", + "openSeaSlug": "premint-collector", + "externalUrl": "https://collectors.premint.xyz/", + "bannerImageUrl": "https://i.seadn.io/gae/ZqJbyUOvVtX5ZR-hP0ELSX4N5LHNoXtNscEAzMbwM_QrEKTsAAFqy7bzKnfHPjZcBIDRkFbFTUjtnrtulg3_1uCSLtbbODlCQJh9rQ?w=500&auto=format" + }, + "timeLastUpdated": "2023-08-08T04:51:22.613Z", + "balance": "1", + "acquiredAt": { + "blockTimestamp": null, + "blockNumber": null + } + }, + { + "contract": { + "address": "0xB8Da418FFC2Cb675B8B3d73dca0E3f10811FBbdD", + "name": "WE_ARE_KLOUD", + "symbol": "KLOUD", + "totalSupply": "5000", + "tokenType": "ERC721", + "contractDeployer": "0xcf9144523F1A047612318A4867839CD69fbb2eaa", + "deployedBlockNumber": 13973502, + "openSeaMetadata": { + "floorPrice": 0.0099, + "collectionName": "WE ARE KLOUD", + "collectionSlug": "we-are-kloud", + "safelistRequestStatus": "verified", + "imageUrl": "https://i.seadn.io/gae/ICJQZ_ahWfDPdtF-wz9gx79qTjU5A08L9fGkdB_HEyLT0EzYpE6zIdjZGPq4mwEDd4cT3PufBeMDohfppoX2RXdbfDxSxEYio7gh?w=500&auto=format", + "description": "WE ARE KLOUD is a 5,000 Music NFT collection by KLOUD & Alex Hooker, curated by SoundMint.\n\nSoundMint curated NFTs are generative music collectibles that combine generative visuals with generative music by pairing stems to visual layers; allowing the collector to own a unique 1/1 musical art piece. Collect SoundMint curated NFTs by your favorite artist, trade them with other SoundMint owners, and become a part of the SoundMint generative music ecosystem.\n\nOwning a WE ARE KLOUD NFT grants the owner:\n\n-Full-Commercial IP Licensing Rights to the Audio \n \n-Unique Avatar Integration into 'World Wide Webb' Metaverse\n", + "externalUrl": "http://soundmint.xyz", + "twitterUsername": "soundmintxyz", + "discordUrl": "https://discord.gg/soundmint", + "bannerImageUrl": "https://i.seadn.io/gae/UCilfcDvkWO8HF-PJ1SB7PpRUj3BsIYPhXuOcvrJOJJCqI2dU8n82DYY3Ab5En0CB_Rp8Rn5Vdroz9pW7o-DewZBX5UKxPeUq6NHi9U?w=500&auto=format", + "lastIngestedAt": "2023-08-27T00:28:34.000Z" + }, + "isSpam": null, + "spamClassifications": [] + }, + "tokenId": "1897", + "tokenType": "ERC721", + "name": "#1895", + "description": "KLOUD is the artistical embodiment of limitless creativity in anonymity. With this NFT drop, the collector enters the KLOUD, owning a unique visual & musical art piece derived from the generative algorithm that is KLOUD x HOOKER x COMPUTER. Holding one of these NFTs grants future access to KLOUD metaverse events.", + "tokenUri": "https://soundmint-public.s3.amazonaws.com/KLOUD_REVEALED/meta/1895", + "image": { + "cachedUrl": "https://nft-cdn.alchemy.com/eth-mainnet/80d6e397bcef8e3d59933d8510d9456c", + "thumbnailUrl": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/80d6e397bcef8e3d59933d8510d9456c", + "pngUrl": "https://res.cloudinary.com/alchemyapi/image/upload/convert-png/eth-mainnet/80d6e397bcef8e3d59933d8510d9456c", + "contentType": "image/png", + "size": 3302206, + "originalUrl": "https://soundmint-public.s3.amazonaws.com/KLOUD_REVEALED/images/4890.png" + }, + "raw": { + "tokenUri": "https://soundmint-public.s3.amazonaws.com/KLOUD_REVEALED/meta/1895", + "metadata": { + "name": "#1897", + "description": "KLOUD is the artistical embodiment of limitless creativity in anonymity. With this NFT drop, the collector enters the KLOUD, owning a unique visual & musical art piece derived from the generative algorithm that is KLOUD x HOOKER x COMPUTER. Holding one of these NFTs grants future access to KLOUD metaverse events.", + "image": "https://soundmint-public.s3.amazonaws.com/KLOUD_REVEALED/images/4890.png", + "attributes": [ + {}, + { + "value": { + "color": "Yellow" + }, + "trait_type": "Color" + }, + { + "value": "Rocket Tail", + "trait_type": "Tails" + }, + { + "value": null + }, + { + "value": [], + "trait_type": "Tails" + } + ], + "animation_url": "https://soundarts-nft.s3.amazonaws.com/KLOUD_2022_5000_20000/4890.mp4" + }, + "error": null + }, + "collection": { + "name": "WE ARE KLOUD", + "openSeaSlug": "we-are-kloud", + "externalUrl": "http://soundmint.xyz", + "bannerImageUrl": "https://i.seadn.io/gae/UCilfcDvkWO8HF-PJ1SB7PpRUj3BsIYPhXuOcvrJOJJCqI2dU8n82DYY3Ab5En0CB_Rp8Rn5Vdroz9pW7o-DewZBX5UKxPeUq6NHi9U?w=500&auto=format" + }, + "timeLastUpdated": "2023-08-27T02:34:39.329Z", + "balance": "1", + "acquiredAt": { + "blockTimestamp": null, + "blockNumber": null + } + } + ], + "totalCount": 2, + "validAt": { + "blockNumber": 18008521, + "blockHash": "0xf545430a07177631f2cfec2cf1d0d5758e1ed7a76d6d54b26b18009a417eda9a", + "blockTimestamp": "2023-08-27T20:56:47Z" + }, + "pageKey": null +} diff --git a/tests/fixtures/alchemy/nfts_for_owner_2.json b/tests/fixtures/alchemy/nfts_for_owner_2.json new file mode 100644 index 000000000..3f3aad017 --- /dev/null +++ b/tests/fixtures/alchemy/nfts_for_owner_2.json @@ -0,0 +1,353 @@ +{ + "ownedNfts": [ + { + "contract": { + "address": "0x684E4ED51D350b4d76A3a07864dF572D24e6dC4c", + "name": "Isekai Meta", + "symbol": "ISEKAI", + "totalSupply": "7777", + "tokenType": "ERC721", + "contractDeployer": "0xBA380d92E4FbCAcf21EfB50d0A7ba03401BD92b3", + "deployedBlockNumber": 15180035, + "openSeaMetadata": { + "floorPrice": 0.0177, + "collectionName": "Isekai Meta", + "collectionSlug": "projectisekaimeta", + "safelistRequestStatus": "verified", + "imageUrl": "https://i.seadn.io/gcs/files/5b2189963c2cec9bb3949f2cc98fb8b9.jpg?w=500&auto=format", + "description": "Isekai Meta is a story and community-driven, hand-drawn NFT collection + metaverse brand that taps into the foundational human need to connect with others through story. Heavily influenced by pop culture, lo-fi aesthetics, and Japanese anime. The project and the community behind it intends to spark a new age of storytelling through web3 and NFTs.", + "externalUrl": "http://isekaimeta.com", + "twitterUsername": "IsekaiMeta", + "discordUrl": "https://discord.gg/isekaimeta", + "bannerImageUrl": "https://i.seadn.io/gcs/files/1db4e44dd52dcc1db78d2b43dd33e751.png?w=500&auto=format", + "lastIngestedAt": "2023-11-17T14:24:25.000Z" + }, + "isSpam": null, + "spamClassifications": [] + }, + "tokenId": "2736", + "tokenType": "ERC721", + "name": "Isekai #2736", + "description": "Isekai Meta is a story and community-driven, hand-drawn NFT collection + metaverse brand that taps into the foundational human need to connect with others through story. Heavily influenced by pop culture, lo-fi aesthetics, and Japanese anime. The project and the community behind it intends to spark a new age of storytelling through web3 and NFTs.", + "tokenUri": "https://ipfs.io/ipfs/QmRd7L8iP7fdM1K1o7wYj2UPkEg7kaFvpVy8GeUSrvLk9k/2736", + "image": { + "cachedUrl": "https://nft-cdn.alchemy.com/eth-mainnet/9966ed12a93781ce210c01ee42d8a409", + "thumbnailUrl": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/9966ed12a93781ce210c01ee42d8a409", + "pngUrl": "https://res.cloudinary.com/alchemyapi/image/upload/convert-png/eth-mainnet/9966ed12a93781ce210c01ee42d8a409", + "contentType": "image/png", + "size": 700392, + "originalUrl": "https://ipfs.io/ipfs/QmZXDaL6zs5eAZ38qNNKW3EhsHFH9TFb8Tk2zoMEUzP3oe/2736.png" + }, + "raw": { + "tokenUri": "ipfs://QmRd7L8iP7fdM1K1o7wYj2UPkEg7kaFvpVy8GeUSrvLk9k/2736", + "metadata": { + "name": "Isekai #2736", + "description": "Isekai Meta is a story and community-driven, hand-drawn NFT collection + metaverse brand that taps into the foundational human need to connect with others through story. Heavily influenced by pop culture, lo-fi aesthetics, and Japanese anime. The project and the community behind it intends to spark a new age of storytelling through web3 and NFTs.", + "image": "ipfs://QmZXDaL6zs5eAZ38qNNKW3EhsHFH9TFb8Tk2zoMEUzP3oe/2736.png", + "external_url": "https://isekaimeta.com/", + "attributes": [ + { + "value": "Human", + "trait_type": "Faction" + }, + { + "value": "Flamingo Pink", + "trait_type": "Background" + } + ] + }, + "error": null + }, + "collection": { + "name": "Isekai Meta", + "slug": "projectisekaimeta", + "externalUrl": "http://isekaimeta.com", + "bannerImageUrl": "https://i.seadn.io/gcs/files/1db4e44dd52dcc1db78d2b43dd33e751.png?w=500&auto=format" + }, + "mint": { + "mintAddress": "0xf3f1d9620416c5e7674f490b0117bda52615fca8", + "blockNumber": 15186325, + "timestamp": "2022-07-21T14:03:41Z", + "transactionHash": "0x5576f15f7dca5d421d877a07c221004dd5dce235aea242292633543764544d60" + }, + "owners": null, + "timeLastUpdated": "2023-09-10T11:41:24.827Z", + "balance": "1", + "acquiredAt": { + "blockTimestamp": null, + "blockNumber": null + } + }, + { + "contract": { + "address": "0x684E4ED51D350b4d76A3a07864dF572D24e6dC4c", + "name": "Isekai Meta", + "symbol": "ISEKAI", + "totalSupply": "7777", + "tokenType": "ERC721", + "contractDeployer": "0xBA380d92E4FbCAcf21EfB50d0A7ba03401BD92b3", + "deployedBlockNumber": 15180035, + "openSeaMetadata": { + "floorPrice": 0.0177, + "collectionName": "Isekai Meta", + "collectionSlug": "projectisekaimeta", + "safelistRequestStatus": "verified", + "imageUrl": "https://i.seadn.io/gcs/files/5b2189963c2cec9bb3949f2cc98fb8b9.jpg?w=500&auto=format", + "description": "Isekai Meta is a story and community-driven, hand-drawn NFT collection + metaverse brand that taps into the foundational human need to connect with others through story. Heavily influenced by pop culture, lo-fi aesthetics, and Japanese anime. The project and the community behind it intends to spark a new age of storytelling through web3 and NFTs.", + "externalUrl": "http://isekaimeta.com", + "twitterUsername": "IsekaiMeta", + "discordUrl": "https://discord.gg/isekaimeta", + "bannerImageUrl": "https://i.seadn.io/gcs/files/1db4e44dd52dcc1db78d2b43dd33e751.png?w=500&auto=format", + "lastIngestedAt": "2023-11-17T14:24:25.000Z" + }, + "isSpam": null, + "spamClassifications": [] + }, + "tokenId": "2997", + "tokenType": "ERC721", + "name": "Isekai #2997", + "description": "Isekai Meta is a story and community-driven, hand-drawn NFT collection + metaverse brand that taps into the foundational human need to connect with others through story. Heavily influenced by pop culture, lo-fi aesthetics, and Japanese anime. The project and the community behind it intends to spark a new age of storytelling through web3 and NFTs.", + "tokenUri": "https://alchemy.mypinata.cloud/ipfs/QmRd7L8iP7fdM1K1o7wYj2UPkEg7kaFvpVy8GeUSrvLk9k/2997", + "image": { + "cachedUrl": "https://nft-cdn.alchemy.com/eth-mainnet/37829018337d4226c289aecb65121a20", + "thumbnailUrl": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/37829018337d4226c289aecb65121a20", + "pngUrl": "https://res.cloudinary.com/alchemyapi/image/upload/convert-png/eth-mainnet/37829018337d4226c289aecb65121a20", + "contentType": "image/png", + "size": 654910, + "originalUrl": "https://ipfs.io/ipfs/QmZXDaL6zs5eAZ38qNNKW3EhsHFH9TFb8Tk2zoMEUzP3oe/2997.png" + }, + "raw": { + "tokenUri": "ipfs://QmRd7L8iP7fdM1K1o7wYj2UPkEg7kaFvpVy8GeUSrvLk9k/2997", + "metadata": { + "name": "Isekai #2997", + "description": "Isekai Meta is a story and community-driven, hand-drawn NFT collection + metaverse brand that taps into the foundational human need to connect with others through story. Heavily influenced by pop culture, lo-fi aesthetics, and Japanese anime. The project and the community behind it intends to spark a new age of storytelling through web3 and NFTs.", + "image": "ipfs://QmZXDaL6zs5eAZ38qNNKW3EhsHFH9TFb8Tk2zoMEUzP3oe/2997.png", + "external_url": "https://isekaimeta.com/", + "attributes": [ + { + "value": "Puppet", + "trait_type": "Faction" + }, + { + "value": "Smoke Off white", + "trait_type": "Background" + }, + { + "value": "Trouble", + "trait_type": "Eyes" + }, + { + "value": "Kimono", + "trait_type": "Outfit" + }, + { + "value": "Samurai", + "trait_type": "Hair" + } + ] + }, + "error": null + }, + "collection": { + "name": "Isekai Meta", + "slug": "projectisekaimeta", + "externalUrl": "http://isekaimeta.com", + "bannerImageUrl": "https://i.seadn.io/gcs/files/1db4e44dd52dcc1db78d2b43dd33e751.png?w=500&auto=format" + }, + "mint": { + "mintAddress": null, + "blockNumber": null, + "timestamp": null, + "transactionHash": null + }, + "owners": null, + "timeLastUpdated": "2023-11-07T10:54:27.037Z", + "balance": "1", + "acquiredAt": { + "blockTimestamp": null, + "blockNumber": null + } + }, + { + "contract": { + "address": "0x18c7766A10df15Df8c971f6e8c1D2bbA7c7A410b", + "name": "Vogu", + "symbol": "VGT", + "totalSupply": "7777", + "tokenType": "ERC721", + "contractDeployer": "0x36C0583590cbb739750aa6f6d975A2D229266982", + "deployedBlockNumber": 12903458, + "openSeaMetadata": { + "floorPrice": 0.003, + "collectionName": "The Vogu Collective", + "collectionSlug": "vogu", + "safelistRequestStatus": "verified", + "imageUrl": "https://i.seadn.io/gae/4kPtQ8iep2Sw8MEV8TLfGuDsX0ql5pfniHZZGpwx3jp9D2ZRCE0coFxagGrhFH0sfVUezN1O-aRy9SZDong-N0RNsHgCg2rvX7LSJw?w=500&auto=format", + "description": "The Vogu NFT collection marks the beginning of an immersive, multimedia art and storytelling initiative. Our randomized NFT collection contains 7,777 unique robot avatars—these designs have narrative significance within our project’s lore. This lore introduces an expansive fictional universe which will serve as the basis for future stories, characters, and art, all woven across different forms of media. Your robot avatar is your ticket into the greater Vogu Metaverse—giving you exclusive access to stories, assets, and collabs.\r\n\r\nCheck out our other collections:\r\nGenesis collection : https://opensea.io/collection/vogu-collection\r\nMutts companion collection: https://opensea.io/collection/the-vogu-mutts", + "externalUrl": "http://thevogu.io", + "twitterUsername": "the_vogu", + "discordUrl": "https://discord.gg/thevogu", + "bannerImageUrl": "https://i.seadn.io/gae/BllELqFLOmAIr0E_eXZJbB9hTWE6Z1gwC7Yu51dhZkQKtdc4m5_IQcM4sCPBSnbzBCdtHiUkjzsKD4dshLbzb37aCmW-x_Ba4uSMEw?w=500&auto=format", + "lastIngestedAt": "2023-11-17T11:48:45.000Z" + }, + "isSpam": null, + "spamClassifications": [ + ] + }, + "tokenId": "6000", + "tokenType": "ERC721", + "name": null, + "description": null, + "tokenUri": "https://alchemy.mypinata.cloud/ipfs/QmTUgyhZDsdxchLuMNC26XvHhWVUDp4dnfJtQnJvkLBtxw/7652", + "image": { + "cachedUrl": "https://nft-cdn.alchemy.com/eth-mainnet/266355c956a0e6c65d017c700f2a9df3", + "thumbnailUrl": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/266355c956a0e6c65d017c700f2a9df3", + "pngUrl": "https://res.cloudinary.com/alchemyapi/image/upload/convert-png/eth-mainnet/266355c956a0e6c65d017c700f2a9df3", + "contentType": "image/png", + "size": 1336256, + "originalUrl": "https://ipfs.io/ipfs/QmYTxaqnPYg1WXF63hxaNvqWPsm6tgtsq41E4LvgbfoWM8" + }, + "raw": { + "tokenUri": "ipfs://QmTUgyhZDsdxchLuMNC26XvHhWVUDp4dnfJtQnJvkLBtxw/7652", + "metadata": { + "image": "ipfs://QmYTxaqnPYg1WXF63hxaNvqWPsm6tgtsq41E4LvgbfoWM8", + "attributes": [ + { + "value": "Navy", + "trait_type": "Color" + }, + { + "value": "Core", + "trait_type": "Face" + }, + { + "value": "Patrician", + "trait_type": "AUX" + }, + { + "value": "Kimono", + "trait_type": "Torso" + } + ] + }, + "error": null + }, + "collection": { + "name": "The Vogu Collective", + "slug": "vogu", + "externalUrl": "http://thevogu.io", + "bannerImageUrl": "https://i.seadn.io/gae/BllELqFLOmAIr0E_eXZJbB9hTWE6Z1gwC7Yu51dhZkQKtdc4m5_IQcM4sCPBSnbzBCdtHiUkjzsKD4dshLbzb37aCmW-x_Ba4uSMEw?w=500&auto=format" + }, + "mint": { + "mintAddress": "0xf8a3db410668e79e1179fd54dfec9e78269694c0", + "blockNumber": 12911165, + "timestamp": "2021-07-28T00:08:58Z", + "transactionHash": "0x46404d50fa54dfdc7928e14581d362c61f31f35e49c9110344ccd01a9e434753" + }, + "owners": null, + "timeLastUpdated": "2023-08-25T12:30:13.101Z", + "balance": "1", + "acquiredAt": { + "blockTimestamp": null, + "blockNumber": null + } + }, + { + "contract": { + "address": "0x1A92f7381B9F03921564a437210bB9396471050C", + "name": "Cool Cats", + "symbol": "COOL", + "totalSupply": "9965", + "tokenType": "ERC721", + "contractDeployer": "0x4265de963cdd60629d03FEE2cd3285e6d5ff6015", + "deployedBlockNumber": 12715198, + "openSeaMetadata": { + "floorPrice": 0.4968, + "collectionName": "Cool Cats NFT", + "collectionSlug": "cool-cats-nft", + "safelistRequestStatus": "verified", + "imageUrl": "https://i.seadn.io/gae/LIov33kogXOK4XZd2ESj29sqm_Hww5JSdO7AFn5wjt8xgnJJ0UpNV9yITqxra3s_LMEW1AnnrgOVB_hDpjJRA1uF4skI5Sdi_9rULi8?w=500&auto=format", + "description": "Cool Cats is a collection of 9,999 randomly generated and stylistically curated NFTs that exist on the Ethereum Blockchain. Cool Cat holders can participate in exclusive events such as NFT claims, raffles, community giveaways, and more. Remember, all cats are cool, but some are cooler than others.\r\n\r\n- [Cool Cats Collabs](https://opensea.io/collection/cool-cats-collabs)\r\n- [Cool Cats Events](https://opensea.io/collection/cool-cats-events)\r\n- [Cool Cats Achievements](https://opensea.io/collection/cool-cats-achievements)\r\n- [Cool Cats Originals](https://opensea.io/collection/cool-cats-originals)", + "externalUrl": "http://coolcatsnft.com", + "twitterUsername": "coolcats", + "discordUrl": "https://discord.gg/coolcatsnft", + "bannerImageUrl": "https://i.seadn.io/gcs/files/9db3e1197b7655b791b125dd86db4bc7.png?w=500&auto=format", + "lastIngestedAt": "2023-11-16T08:50:45.000Z" + }, + "isSpam": null, + "spamClassifications": [ + ] + }, + "tokenId": "5920", + "tokenType": "ERC721", + "name": "Cool Cat #5920", + "description": "Cool Cats is a collection of 9,999 randomly generated and stylistically curated NFTs that exist on the Ethereum Blockchain. Cool Cat holders can participate in exclusive events such as NFT claims, raffles, community giveaways, and more. Remember, all cats are cool, but some are cooler than others. Visit [www.coolcatsnft.com](https://www.coolcatsnft.com/) to learn more.", + "tokenUri": "https://api.coolcatsnft.com/cat/5920", + "image": { + "cachedUrl": "https://nft-cdn.alchemy.com/eth-mainnet/32bad22fb6f1212f69f88b706ac66cf4", + "thumbnailUrl": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/32bad22fb6f1212f69f88b706ac66cf4", + "pngUrl": "https://res.cloudinary.com/alchemyapi/image/upload/convert-png/eth-mainnet/32bad22fb6f1212f69f88b706ac66cf4", + "contentType": "image/png", + "size": 86591, + "originalUrl": "https://ipfs.io/ipfs/QmNjvo6FyrPcHaaiMGzqMNm7GW9tgNeEAfxikhJZ2qcLw9" + }, + "raw": { + "tokenUri": "https://api.coolcatsnft.com/cat/5920", + "metadata": { + "image": "https://ipfs.io/ipfs/QmNjvo6FyrPcHaaiMGzqMNm7GW9tgNeEAfxikhJZ2qcLw9", + "name": "Cool Cat #5920", + "description": "Cool Cats is a collection of 9,999 randomly generated and stylistically curated NFTs that exist on the Ethereum Blockchain. Cool Cat holders can participate in exclusive events such as NFT claims, raffles, community giveaways, and more. Remember, all cats are cool, but some are cooler than others. Visit [www.coolcatsnft.com](https://www.coolcatsnft.com/) to learn more.", + "attributes": [ + { + "value": "hoodie purple", + "trait_type": "shirt" + }, + { + "value": "ninja red", + "trait_type": "face" + }, + { + "value": "cool_1", + "trait_type": "tier" + } + ], + "google_image": "https://drive.google.com/uc?id=1_fkjMf1z_GhIdguio39u8G2MubXMrW6d", + "ipfs_image": "https://ipfs.io/ipfs/QmNjvo6FyrPcHaaiMGzqMNm7GW9tgNeEAfxikhJZ2qcLw9", + "points": { + "Hats": 1, + "Shirt": 1, + "Face": 1, + "Body": 0 + } + }, + "error": null + }, + "collection": { + "name": "Cool Cats NFT", + "slug": "cool-cats-nft", + "externalUrl": "http://coolcatsnft.com", + "bannerImageUrl": "https://i.seadn.io/gcs/files/9db3e1197b7655b791b125dd86db4bc7.png?w=500&auto=format" + }, + "mint": { + "mintAddress": null, + "blockNumber": null, + "timestamp": null, + "transactionHash": null + }, + "owners": null, + "timeLastUpdated": "2023-11-18T17:44:38.367Z", + "balance": "1", + "acquiredAt": { + "blockTimestamp": null, + "blockNumber": null + } + } + ], + "totalCount": 110, + "validAt": { + "blockNumber": 18620143, + "blockHash": "0xeec93aeae42bb771c82d9c592c9e385393320f11abe7dc7ebb6db2be667fa70c", + "blockTimestamp": "2023-11-21T12:30:11Z" + }, + "pageKey": null +} diff --git a/tests/fixtures/alchemy/nfts_media.json b/tests/fixtures/alchemy/nfts_media.json deleted file mode 100644 index b81f1c739..000000000 --- a/tests/fixtures/alchemy/nfts_media.json +++ /dev/null @@ -1,214 +0,0 @@ -{ - "ownedNfts": [ - { - "contract": { - "address": "0x02645165ab29280a9cea0ba9952497c7df856da5" - }, - "id": { - "tokenId": "0x21", - "tokenMetadata": { - "tokenType": "ERC1155" - } - }, - "balance": "1", - "title": "", - "description": "", - "tokenUri": { - "gateway": "https://rocketleaguenft.xyz/ipfs/33", - "raw": "https://rocketleaguenft.xyz/ipfs/33" - }, - "media": [ - { - "gateway": "", - "raw": "" - } - ], - "metadata": {}, - "timeLastUpdated": "2023-03-23T02:32:24.169Z", - "contractMetadata": { - "name": "Meta Rocket League 2022 Original", - "symbol": "Meta Rocket League 2022 Original", - "tokenType": "ERC1155", - "contractDeployer": "0x53042aa8c24a47b18112004e565304a63625611e", - "deployedBlockNumber": 15752497, - "openSea": { - "collectionName": "Meta Rocket League 2022 Original", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gcs/files/5ff2b7fa5c94616f34a27e37eadfbfd1.png?w=500&auto=format", - "description": "[Rocket League](https://rocketleaguenft.xyz/?source=cd) advances to the Metaverse.\n\nJoin the League and enjoy the combination of metaverse, cars and football.\n\nRegister for [Rocket League](https://rocketleaguenft.xyz/?source=cd) and get the limited items for FREE.", - "externalUrl": "https://rocketleaguenft.xyz/?source=cel", - "lastIngestedAt": "2023-03-14T02:32:57.000Z" - } - } - }, - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000711", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #1809", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/1809.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/1809.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/946c8acf6b060017b9fa83c35da74d37", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/946c8acf6b060017b9fa83c35da74d37", - "raw": "ipfs://QmTJAshrHorYaUJduzGmnrUYnQ7hXkw8uim4Y2pNppCrss", - "format": "png", - "bytes": 3609404 - } - ], - "metadata": { - "name": "Randy H. #1809", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmTJAshrHorYaUJduzGmnrUYnQ7hXkw8uim4Y2pNppCrss", - "external_url": "https://psychonautznft.com/detail/1809", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "OG Blue", - "trait_type": "Skin" - }, - { - "value": "Paranoid", - "trait_type": "Consciousness" - }, - { - "value": "HAAK", - "trait_type": "Eyes" - }, - { - "value": "Full Teeth White", - "trait_type": "Mouth" - }, - { - "value": "Piquín Pink", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-15T15:03:16.509Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x51bd5948cf84a1041d2720f56ded5e173396fc95" - }, - "id": { - "tokenId": "0x8fce695720888b22f2b839ffc84bb902136d285d994407d885f7ac71634ab480", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Moto #1634", - "description": "Designed for the racer in all of us looking for the ultimate source of speed and agility. The Sport design offers powerful torque and precise handling to give riders the edge coming out of every corner.", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/QmTkYtCdrYqQWxEQ3q8nDqzsDG7LFrEwR4xxzwYP9fqPW5/1633", - "raw": "ipfs://QmTkYtCdrYqQWxEQ3q8nDqzsDG7LFrEwR4xxzwYP9fqPW5/1633" - }, - "media": [], - "metadata": { - "name": "Moto #1634", - "image": "ipfs://QmcL7RQeiK4FT7PmkyXyxazXuLjTE2ViDcXGvebgGJTNLf", - "description": "Designed for the racer in all of us looking for the ultimate source of speed and agility. The Sport design offers powerful torque and precise handling to give riders the edge coming out of every corner.", - "animation_url": "ipfs://QmRawzDWNP5LMuADE83CCUy7bE7vBDsUCa83CmikcY79qD", - "attributes": [ - { - "value": "Sport", - "trait_type": "Top Chassis" - }, - { - "value": "Super Sport", - "trait_type": "Wheel" - }, - { - "value": "Type 4", - "trait_type": "Wheel Fairing" - }, - { - "value": "Type 1", - "trait_type": "Windshield" - }, - { - "value": "Mechanical", - "trait_type": "Speedometer" - }, - { - "value": "Type 4", - "trait_type": "Bottom Fairing" - }, - { - "value": "Type 1", - "trait_type": "Chain Cap" - }, - { - "value": "Solo", - "trait_type": "Exhaust Pipe" - }, - { - "value": "Base", - "trait_type": "Headlight" - }, - { - "value": "Type 2", - "trait_type": "Side Fairing" - }, - { - "value": "Level Up", - "trait_type": "Pattern" - }, - { - "value": "Hypnosis", - "trait_type": "Color" - }, - { - "value": "VR-193", - "trait_type": "Number Plate" - } - ] - }, - "timeLastUpdated": "2023-03-21T21:33:28.770Z", - "contractMetadata": { - "name": "Zer0 Name Service", - "symbol": "ZNS", - "totalSupply": "6396", - "tokenType": "ERC721", - "contractDeployer": "0xf5a37a4c139d639d04875f1945b59b1fa6cf939b", - "deployedBlockNumber": 15124734 - } - } - ], - "totalCount": 29, - "blockHash": "0xbe745643dc3a88ccc2ff1ca93d8411f7691f2241e1857ac1ea2de815d553f8ae" -} diff --git a/tests/fixtures/alchemy/nfts_traits.json b/tests/fixtures/alchemy/nfts_traits.json deleted file mode 100644 index 0988085bf..000000000 --- a/tests/fixtures/alchemy/nfts_traits.json +++ /dev/null @@ -1,197 +0,0 @@ -{ - "ownedNfts": [ - { - "contract": { - "address": "0x0b7600ca77fc257fe7eb432f87825cccc4590037" - }, - "id": { - "tokenId": "0x0000000000000000000000000000000000000000000000000000000000000711", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Randy H. #1809", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/1809.json", - "raw": "ipfs://Qmc87YnUGieqDQiDuVnYcynzzGziNWPkDCqQEVkoMTkbni/1809.json" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/946c8acf6b060017b9fa83c35da74d37", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/946c8acf6b060017b9fa83c35da74d37", - "raw": "ipfs://QmTJAshrHorYaUJduzGmnrUYnQ7hXkw8uim4Y2pNppCrss", - "format": "png", - "bytes": 3609404 - } - ], - "metadata": { - "name": "Randy H. #1809", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face's mouth and eye sockets.\n\nThe faces are gruesome, playful, and trippy. They're vaguely reminiscent of Lewis Carroll's Cheshire Cat-which is appropriate considering that this is a generative collection influenced by psychedelics called Psychonautz NFT.\n\nPsychonautz NFT consists of 9,999 unique works hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos. The collection features four different characters that were named by the GBLSTS team and Psychonautz community.\n\nhttps://www.psychonautznft.com", - "image": "ipfs://QmTJAshrHorYaUJduzGmnrUYnQ7hXkw8uim4Y2pNppCrss", - "external_url": "https://psychonautznft.com/detail/1809", - "attributes": [ - { - "value": "Randy H.", - "trait_type": "Character" - }, - { - "value": "OG Blue", - "trait_type": "Skin" - }, - { - "value": "Piquín Pink", - "trait_type": "Mouth Creature" - } - ] - }, - "timeLastUpdated": "2023-03-15T15:03:16.509Z", - "contractMetadata": { - "name": "PsychonautzNFT", - "symbol": "PSYCHO", - "totalSupply": "9999", - "tokenType": "ERC721", - "contractDeployer": "0x7c497dc3b0ed44d469ddad23d4200a31ea540c83", - "deployedBlockNumber": 14641345, - "openSea": { - "floorPrice": 0.003, - "collectionName": "PsychonautzNFT", - "safelistRequestStatus": "verified", - "imageUrl": "https://i.seadn.io/gcs/files/64210c963542191ba508a8e048481245.png?w=500&auto=format", - "description": "The first thing you see is a face. Two eyes, a nose, a mouth stretched in an impossibly wide smile, showing off rows of cracked, crumbling teeth. Next you notice the skin: an acid-colored swirling pattern that looks like it would have the consistency of liquid latex, if you could only reach through the screen and touch it. In some of these pieces, whimsically demonic creatures perch in the face’s mouth and eye sockets.\n\nPsychonautz NFT consists of 9,999 unique works created by GBLSTS Labs hand drawn by the artist Sander Jansen and is personally curated by Gabriel Santos.", - "externalUrl": "https://psychonautznft.com/", - "twitterUsername": "PsychonautzNFT", - "discordUrl": "https://discord.gg/psychonautz", - "lastIngestedAt": "2023-03-22T21:05:24.000Z" - } - } - }, - { - "contract": { - "address": "0x51bd5948cf84a1041d2720f56ded5e173396fc95" - }, - "id": { - "tokenId": "0x8fce695720888b22f2b839ffc84bb902136d285d994407d885f7ac71634ab480", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Moto #1634", - "description": "Designed for the racer in all of us looking for the ultimate source of speed and agility. The Sport design offers powerful torque and precise handling to give riders the edge coming out of every corner.", - "tokenUri": { - "gateway": "https://ipfs.io/ipfs/QmTkYtCdrYqQWxEQ3q8nDqzsDG7LFrEwR4xxzwYP9fqPW5/1633", - "raw": "ipfs://QmTkYtCdrYqQWxEQ3q8nDqzsDG7LFrEwR4xxzwYP9fqPW5/1633" - }, - "media": [], - "metadata": { - "name": "Moto #1634", - "image": "ipfs://QmcL7RQeiK4FT7PmkyXyxazXuLjTE2ViDcXGvebgGJTNLf", - "description": "Designed for the racer in all of us looking for the ultimate source of speed and agility. The Sport design offers powerful torque and precise handling to give riders the edge coming out of every corner.", - "animation_url": "ipfs://QmRawzDWNP5LMuADE83CCUy7bE7vBDsUCa83CmikcY79qD", - "attributes": [ - { - "value": "Type 4", - "trait_type": "Wheel Fairing" - }, - { - "value": "Type 1", - "trait_type": "Windshield" - }, - { - "value": "Mechanical", - "trait_type": "Speedometer" - }, - { - "display_type": "boost_percentage", - "value": 26, - "trait_type": "Speed" - }, - { - "value": "Type 4", - "trait_type": "Bottom Fairing" - }, - { - "display_type": "number", - "value": 8, - "trait_type": "Score" - } - ] - }, - "timeLastUpdated": "2023-03-21T21:33:28.770Z", - "contractMetadata": { - "name": "Zer0 Name Service", - "symbol": "ZNS", - "totalSupply": "6396", - "tokenType": "ERC721", - "contractDeployer": "0xf5a37a4c139d639d04875f1945b59b1fa6cf939b", - "deployedBlockNumber": 15124734 - } - }, - { - "contract": { - "address": "0x0f5835de26edc0898d6fd58233dfb07182e9a160" - }, - "id": { - "tokenId": "0x00000000000000000000000000000000000000000000000000000000000005e9", - "tokenMetadata": { - "tokenType": "ERC721" - } - }, - "balance": "1", - "title": "Soylads #1514", - "description": "A proud product of Yona and Cum Box Collective, the Soylads collection is a cartoon styled take on absurdity and obsession with complex NFT art. Every piece is carelessly drawn by mouse with no drawing pad involved whatsoever ((not because being an artist sucks and I wish I was more responsible about my career yet here I am drawing soyjaks anyway)) to ensure fluid dynamics between community and art.", - "tokenUri": { - "gateway": "https://alchemy.mypinata.cloud/ipfs/QmeRas5wH2WQPZh2cLxh89ojzQxvwQ7fGWRZrKTYGnSkaM/1513", - "raw": "ipfs://QmeRas5wH2WQPZh2cLxh89ojzQxvwQ7fGWRZrKTYGnSkaM/1513" - }, - "media": [ - { - "gateway": "https://nft-cdn.alchemy.com/eth-mainnet/94258dda109ff2830062498ee53c76b7", - "thumbnail": "https://res.cloudinary.com/alchemyapi/image/upload/thumbnailv2/eth-mainnet/94258dda109ff2830062498ee53c76b7", - "raw": "ipfs://QmUjkwVVJ2LaCzs6GzfJwqKMnj7YviXUiNCx3anYZGG81U/1513.jpeg", - "format": "jpeg", - "bytes": 57008 - } - ], - "metadata": { - "name": "Soylads #1514", - "description": "A proud product of Yona and Cum Box Collective, the Soylads collection is a cartoon styled take on absurdity and obsession with complex NFT art. Every piece is carelessly drawn by mouse with no drawing pad involved whatsoever ((not because being an artist sucks and I wish I was more responsible about my career yet here I am drawing soyjaks anyway)) to ensure fluid dynamics between community and art.", - "image": "ipfs://QmUjkwVVJ2LaCzs6GzfJwqKMnj7YviXUiNCx3anYZGG81U/1513.jpeg", - "properties": [ - { - "value": "Slang", - "trait_type": "Background" - }, - { - "value": 35, - "trait_type": "Soy %" - } - ] - }, - "timeLastUpdated": "2023-03-11T14:25:41.512Z", - "contractMetadata": { - "name": "Soylads", - "symbol": "SLS", - "totalSupply": "1883", - "tokenType": "ERC721", - "contractDeployer": "0x480acf1d1468f46e01228fdfab6954b232b8e95e", - "deployedBlockNumber": 14503719, - "openSea": { - "floorPrice": 0.0175, - "collectionName": "Soylads", - "safelistRequestStatus": "not_requested", - "imageUrl": "https://i.seadn.io/gae/nUk6RxUkFPKYaqHSPWw6pR4kRyIItYTcsVmHkCukOigsHG0npwrLS8BFGVDAnGHL1pfbkLtBogtge716bBXL4keDPpHm8MW9LHJZ9A?w=500&auto=format", - "description": "A proud product of Yona and Cum Box Collective, soylad maker collection is a cartoon styled take on absurdity and obsession with complex NFT art.\n\nEvery piece is carelessly drawn by mouse with no drawing pad involved whatsoever ((not because being an artist sucks and I wish I was more responsible about my career yet here I am drawing soylads anyway)) to ensure fluid dynamics between community and art.", - "externalUrl": "https://soylads.xyz/", - "twitterUsername": "Soylads", - "discordUrl": "https://discord.gg/soylads", - "lastIngestedAt": "2023-03-19T00:22:43.000Z" - } - } - } - ], - "totalCount": 29, - "blockHash": "0xbe745643dc3a88ccc2ff1ca93d8411f7691f2241e1857ac1ea2de815d553f8ae" -}